Spring 注释(一) @Controller @Component @Repository @Service

@Service 用于标注业务层组件
@Controler 用于标注控制层组件 如struts中的action
@Repository 用于标注数据访问组件, 即Dao层组件
@Component 泛指组件, 当组件不好归类的时候, 可以用这个注释进行标注
在项目中, 组件采用xml的bean定义来配置, Spring引入了组件自动扫描机制, 他在类路径下通过寻找标注了上述注解的类, 并把这些类纳入进Spring容器中管理,

你可能感兴趣的:(spring,xml,bean,struts,注释)