Spring 注解Note
Posted -beyond
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 注解Note相关的知识,希望对你有一定的参考价值。
Java和Spring中,有很多的注解,基本注解都是名称自解释的,下面将见过的注解以及使用的方式记一下。
注解名称 | 功能 | 使用场景 | 示例 |
@Component | 最基本的创建bean的注解 | 一般用于创建普通类型的bean | 直接写在类名上 |
@Service | 和@Component相似,都是bean | 一般用在 *.service.impl包下的类上面 | 直接写在类名上 |
@Repository | 和@Component相似,创建bean | 一般用在 *.dao.impl包下的类上面 | 直接写在类名上 |
@Controller | 和@Component相似,创建bean | 使用Spring MVC时,在控制器上面使用 | 直接写在类名上 |
@ | |||
以上是关于Spring 注解Note的主要内容,如果未能解决你的问题,请参考以下文章