摘要:
1.使用xml配置文件配置Spring容器: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.spr 阅读全文
摘要:
1.回顾以下我们用xml文件配置spring的方法,用标签定义了一个java类,或者说是java bean。用标签给java bean当中的属性赋值。 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springfram 阅读全文
摘要:
1.用逗号隔开,写上多个properties文件的名字 < context:property-placeholder location="jdbc.properties,jdbc2.properties" system-properties-mode="NEVER"/> 2.使用通配符:* <con 阅读全文
摘要:
1.以下是Spring配置连接Mysql的Druid数据源的xml配置。 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http 阅读全文
摘要:
1.BookDaoImpl.class 这个类的对象将会被自动装配注入到BookServiceImpl类里面。 BookServiceImpl类里面讲调用BookDaoImpl类的方法。 package com.oxygen.dao.impl; import com.oxygen.dao.BookD 阅读全文