Spring配置防止内存泄露

在web.xml中加入:

 

 

    org.springframework.web.util.IntrospectorCleanupListener

 

 

 

 

//可以手动关闭Spring容器

//第一种方法

ClassPathXmlApplicationContext app = new ClassPathXmlApplicationContext("ApplicationContext.xml");

 app.start();

 app.close();

 

//第二种方法

ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");

AbstractApplicationContext sctx = (AbstractApplicationContext)ctx;

sctx.registerShutdownHook();

你可能感兴趣的:(java,spring)