Spring基础知识(3)

一、IoC容器装配Bean(注解方式)

1、使用注解方式进行Bean注册

      xml 方式: <bean id="" class=""> 
      spring2.5版本 提供一组注解,完成Bean注册 
      * @Component  描述Spring框架中Bean

      第一步:

      编写class,在类声明上添加@component

      @Component("helloService")
      // <bean id="helloService" class="...." />
      public class HelloService {
      }

      第二步:

      编写applicationContext.xml,--->通知Spring 注解类所在包

      * 需要引入 context 名称空间 
      <context:component-scan base-package="cn.itcast.spring.a_beandefinition"></context:component-scan>


      spring2.5 引入@Component 等效三个衍生注解

      * @Repository 用于对DAO实现类进行标注 (持久层)

      * @Service 用于对Service实现类进行标注 (业务层)

      * @Controller 用于对Controller实现类进行标注 (表现层)


2、属性依赖注入 

      

      

你可能感兴趣的:(Spring基础知识(3))