applicationContext.xml 是spring的全局配置文件,用来控制srping的特性1 手动加载自定义的beans.xml文件@Testpublic void testAutoWire() throws Exception {ApplicationContext ctx = new...
分类:
编程语言 时间:
2015-01-15 21:38:59
阅读次数:
431
最近打算做一个时间助手,一个service监听课表信息。课表信息可以通过另外的activity来设置,所以这里就涉及到了数据的同步问题。我设置后的信息必须同步到监听的信息去。 在java中我们用全局变量来完成这样子的任务,android提供了另外的方法,叫ApplicationContext。...
分类:
移动开发 时间:
2015-01-15 17:33:21
阅读次数:
138
1.创建ApplicationContext对象: ApplicationContext context = new FileSystemXmlApplicationContext("D:/workspace/test/resources/applicationContext-resource.x....
分类:
编程语言 时间:
2015-01-13 17:39:47
阅读次数:
177
spring通过在web.xml 中配置ContextLoaderListener 来加载context配置文件,在DispatcherServlet中也可以来加载spring context配置文件,那么这两个有什么区别呢。ContextLoaderListener中加载的context成功后,s...
分类:
移动开发 时间:
2015-01-12 17:30:56
阅读次数:
193
web.xml文件是用来初始化配置信息:比如welcome页面、servlet、servlet-mapping、filter、listener、启动加载级别等。当你的web工程没用到这些时,你可以不用web.xml文件来配置你的Application。
每个xml文件都有定义它书写规则的Schema文件,也就是说javaEE的定义web.xml所对应的xml Schema文件中定义了多少种标...
分类:
移动开发 时间:
2015-01-12 16:36:52
阅读次数:
131
一.Spring配置 1.加入jar包 2.加入xml文件;默认为applicationContext.xmlbean标签属性: depends-on="另一个bean标签的id":依赖关系;创建此bean实例之前先会创建depends-on中所写id指定的bean对象。 scope=:pr...
分类:
编程语言 时间:
2015-01-12 16:11:23
阅读次数:
147
如题:spring获取bean的时候严格区分大小写配置文件helloservice.xml中配置:代码中:ApplicationContext ctx=new ClassPathXmlApplicationContext("helloservice.xml");IInsuranceSearchSer...
分类:
编程语言 时间:
2015-01-08 19:35:47
阅读次数:
247
接上一个博文,没有数据库连接池,纯粹用jpa的官方链接。 所以这次要加上连接池本文用Druid连接池来实现多数据源的配置。 persistence.xml 这个文件可以省略了,全部配置在applicationContext.xml 里面: <?xml ...
分类:
编程语言 时间:
2015-01-08 11:37:44
阅读次数:
258
接上一个博文(http://www.loveweir.com/html/18.html),没有数据库连接池,纯粹用jpa的官方链接。所以这次要加上连接池本文用Druid连接池来实现多数据源的配置。persistence.xml 这个文件可以省略了,全部配置在applicationContext.xm...
分类:
编程语言 时间:
2015-01-08 11:02:06
阅读次数:
281
一般使用Spring完成了注入,在Service或SpringMVC 中可以通过注解的形式来获取 Spring的已经注入的Spring的bean如下所示: @Resource(name = "userInfoMapper") private UserInfoMapper userInfoMapper...
分类:
移动开发 时间:
2015-01-07 14:35:24
阅读次数:
432