标签:instance 内容 actor 命名 属性 odi int 根据 图片
applicationContext.xml
并且放在src
目录下。<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd">
<!-- 将对象交给容器管理 -->
<bean name="user" class="com.fei.bean.User"></bean>
</beans>
public void fun1() {
// 1创建容器对象
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
// 2向容器要存储的对象
User user = (User) ac.getBean("user");
// 3打印user
System.out.println(user);
}
<!-- bean元素:使用该元素来描述需要spring容器管理的对象
class属性:被管理对象的完整类名
name属性:给被管理的对象起个名字,获得对象时根据该名称获得对象,可以重复,可以使用特殊字符
id属性:与name属性一样。名称不可重复,不能使用特殊字符(强烈不推荐使用)
结论:强烈推荐尽量使用name属性
-->
标签:instance 内容 actor 命名 属性 odi int 根据 图片
原文地址:https://www.cnblogs.com/zxfei/p/11108290.html