[email protected] 控制器(注入服务)
[email protected] 服务(注入dao)
[email protected] dao(实现dao访问)
[email protected] (把普通pojo实例化到spring容器中,相当于配置文件中的<bean id="" class=""/>)
@Component:
定义Spring管理Bean
@Repository:
@Component扩展,[email protected],从而见到该注解就想到DAO层实现,[email protected];
@Service:
@Component扩展,[email protected],从而见到该注解就想到Service层实现,[email protected];
@Controller:
@Component扩展,[email protected],从而见到该注解就想到Web层实现,[email protected];
@Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。
下面写这个是引入component的扫描组件
<context:component-scan base-package=”com.mmnc”>
其中base-package为需要扫描的包(含所有子包)
[email protected]
[email protected](如struts中的action)
[email protected],即DAO组件.
[email protected],当组件不好归类的时候,我们可以使用这个注解进行标注。
@Service
public class UserServiceImpl implements UserService { }
@Repository
public class UserDaoImpl implements UserDao { } getBean的默认名称是类名(头字母小写),如果想自定义,[email protected](“***”) 这样来指定,这种bean默认是单例的,如果想改变,[email protected](“beanName”)
@Scope(“prototype”)来改变。可以使用以下方式指定初始化方法和销毁方法(方法名任意): @PostConstruct public void init() { }
详细:http://blog.csdn.net/zhang854429783/article/details/6785574
引用原文:https://blog.csdn.net/thinkingcao/article/details/71171222
写博客是为了记住自己容易忘记的东西,另外也是对自己工作的总结,文章可以转载,无需版权。希望尽自己的努力,做到更好,大家一起努力进步!
如果有什么问题,欢迎大家一起探讨,代码如有问题,欢迎各位大神指正!
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/15432.html