Package org.springframework.issues

Source Code of org.springframework.issues.ReproTests

package org.springframework.issues;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class ReproTests {

  public static void main(String[] args) {
    while(true) {
      AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MyConfigClass.class);
      ctx.destroy();
    }
  }

}
TOP

Related Classes of org.springframework.issues.ReproTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.