Spring 注解配置bean
复习注解相关的知识
啥是注解?
直接是一种特殊的标识符。可在源码或运行阶段起作用。
注解类型
-
元注解 如
**@Target**
-
自定义注解
Spring 中注解配置bean
先介绍在Spring 中几个常见的注解
@Component @Repository @Service @Controller
@Component
标记该类为一个组件@Repository
标记该类为一个 Dao (Dao,数据持久化层)@Service
标记该类为一个 Service 类@Controller
标记该类为一个 控制类,类似 Servlet
注解配置bean 的机制
注解配置bean VS xml 配置bean
本质上是一样。两者都要指定 要称为bean 的类的包路径,都要 有beanID
只不过,注解用起来会方便一些
调试与结果
强烈推荐采用debug 的方式分析 Spring 配置bean 的机制
标签:Service,Spring,配置,bean,该类,注解 From: https://www.cnblogs.com/PigBrotherLove/p/16726407.html