Spring中 applicationContext.xml文件标头

来源:互联网 发布:python ..日期时间 编辑:程序博客网 时间:2024/05/19 05:02

<?xml version="1.0" encoding="ISO-8859-1"?>
<beans
 xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:aop="http://www.springframework.org/schema/aop"
 xmlns:p="http://www.springframework.org/schema/p"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/aop
      http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">


<bean id="helloBean" class="com.test.HelloWorld">
   <property name="name">
     <value>Yu Qiang</value>
   </property>
</bean>

</beans>