标签:实例化 class person component spring容器 spring框架 配置 span 文件
1、@Component:把普通pojo实例化到spring容器中,相当于配置文件中的<bean id="" class=""/>
2、@Autowired:Spring框架中进行对象注入
@Component public class Person { private String id; private String name; private String sex; //getter/setter省略 } @Service public class personService{ @Autowired Person person; //方法省略 }
标签:实例化 class person component spring容器 spring框架 配置 span 文件
原文地址:http://www.cnblogs.com/chenweichu/p/7092279.html