ApplicationContext.xml 582 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <!--
  6. bean:配置一个bean对象,将对象交给IOC容器管理
  7. 属性:
  8. id:bean的唯一标识,不能重复
  9. class:设置bean对象所对应的类型
  10. -->
  11. <bean id="helloworld" class="com.cdxw.spring.pojo.HelloWorld"></bean>
  12. </beans>