1.beans.xml规范:
(由于以后用到其他标签会添加很多规范,这里只给出基础的规范)
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> <bean id="u" class="com.bjsxt.dao.impl.UserDAOImpl"> </bean> <bean id="userService" class="com.bjsxt.service.UserService"> <property name="userDAO" ref="u" /> </bean> </beans>
2.ClassPathXmlApplicationContext类介绍
ClassPathXmlApplicationContext这个类实现了BeanFactory、ApplicationContext等接口。
ApplicationContext的父接口是BeanFactory,所以,在下面的小例子中,BeanFactory可以改成ApplicationContext
@Test
public void testAdd() throws Exception{
BeanFactory ctx=new ClassPathXmlApplicationContext("beans.xml");
UserService userService=(UserService)ctx.getBean("userService");
User u=new User();
u.setUsername("u1");
u.setPassword("p1");
userService.add(u);
}
那么该用ApplicationContext还是BeanFactory呢?建议你用ApplicationContext,因为ApplicationContext是建立在BeanFactory之上的,ApplicationContext延伸出了更多的方法。BeanFactory只是完成了Bean工厂的一些功能,像Bean的一些生命周期它都处理不了。但是ApplicationContext除了能完成BeanFactory的所有功能之外,还可以完成一些其他的附加功能,比如说生命周期等待。
转载注明出处:http://blog.csdn.net/acmman