码迷,mamicode.com
首页 > 编程语言 > 详细

Spring容器托管两种方法

时间:2018-10-08 22:18:40      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:控制反转   nbsp   mon   异常   aop   注入   xxx   bean   未定义   

Spring最核心的就是IOC(控制反转)和AOP(面向切面编程)。

IOC可以理解为把Spring当做一个容器,用来管理各种service、dao等。不用再去手动new。

将service、dao等注册到spring容器中,有两种办法:

1、在xml中定义bean,比如:

<bean class="com.xxx.trade.common.xxx.xxx"/>

2、通过注解。

   常用的注解有

@Controller  主要是controller层。

@Service  业务层。  

@Repository  dao层。

 

@Component  通用注解。

 

如果没有注入bean,在编译的时候不会报错,但是启动程序的时候,会报Bean未定义异常。

 

Spring容器托管两种方法

标签:控制反转   nbsp   mon   异常   aop   注入   xxx   bean   未定义   

原文地址:https://www.cnblogs.com/jylsgup/p/9757399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!