码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMvc学习

时间:2018-05-30 16:08:44      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:app   classpath   oid   eve   问题:   size   springmvc   配置文件   font   

遇见的问题:

1.Resource leak: ‘context‘ is never closed

spring实例化时

public void test2() {
  ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
  //配置文件中的id属性
  HelloService service = (HelloService) ctx.getBean("helloService");
  service.sayHello();
}

可以将前面用子类来写,并关闭

public void test2() {
  ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
  //配置文件中的id属性
  HelloService service = (HelloService) ctx.getBean("helloService");
  service.sayHello();
  ctx.close();
}

SpringMvc学习

标签:app   classpath   oid   eve   问题:   size   springmvc   配置文件   font   

原文地址:https://www.cnblogs.com/zkaiw/p/9111324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!