【spring框架】beans.xml规范与ClassPathXmlApplicationContext类介绍

前端之家收集整理的这篇文章主要介绍了【spring框架】beans.xml规范与ClassPathXmlApplicationContext类介绍前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

原文链接:https://www.f2er.com/xml/297200.html

猜你在找的XML相关文章