这里发现时由于代码里手动加载 ApplicationContext.xml文件造成的;
问题代码:
ApplicationContext context = new ClassPathXmlApplicationContext(
"applicationContext-*.xml");
IXXXService xxxservice = (IXXXService ) context
.getBean("xxxservice ");
使用连接为:
http://www.blogjava.net/nighthawk/archive/2009/04/16/266006.html
标注;
我的解决办法因为没有必要每次都声明,因此在类里生命了一个static 的context使用;
这样就避免了每次加载都会新建多个DAO对应的连接的问题;