Spring Boot 常用注解汇总
Spring Boot 常用注解汇总
一、启动注解 @SpringBootApplication
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(excludeFilters = { @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
@Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
public @interface SpringBootApplication {
// ... 此处省略源码
}
查看源码可发现,@SpringBootApplication 是一个复合注解,包含了 @SpringBootConfiguration,@EnableAutoConfiguration,@ComponentScan 这三个注解
@SpringBootConfiguration 注解,继承 @Configuration 注解,主要用于加载配置文件
@SpringBootConfiguration 继承自 @Configuration,二者功能也一致,标注当前类是配置类, 并会将当前类内声明的一个或多个以 @Bean 注解标记的方法的实例纳入到 spring 容器中,并且实例名就是方法名。
@EnableAutoConfiguration 注解,开启自动配置功能
@EnableAutoConfiguration 可以帮助 SpringBoot 应用将所有符合条件的 @Configuration 配置都加载到当前 SpringBoot 创建并使用的 IoC 容器。借助于 Spring 框架原有的一个工具类:SpringFactoriesLoader 的支持,@EnableAutoConfiguration 可以智能的自动配置功效才得以大功告成
@ComponentScan 注解,主要用于组件扫描和自动装配
@ComponentScan 的功能其实就是自动扫描并加载符合条件的组件或 bean 定义,最终将这些 bean 定义加载到容器中。我们可以通过 basePackages 等属性指定 @ComponentScan 自动扫描的范围,如果不指定,则默认 Spring 框架实现从声明 @ComponentScan 所在类的 package 进行扫描,默认情况下是不指定的,所以 SpringBoot 的启动类最好放在 root package 下。
二、Controller 相关注解
@Controller
控制器,处理 http 请求。
@RestController 复合注解
查看 @RestController 源码
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Controller
@ResponseBody
public @interface RestController {
<span class="hljs-comment">/**
* The value may indicate a suggestion for a logical component name,
* to be turned into a Spring bean in case of an autodetected component.
* <span class="hljs-doctag">@return</span> the suggested component name, if any (or empty String otherwise)
* <span class="hljs-doctag">@since</span> 4.0.1
*/</span>
<span class="hljs-meta">@AliasFor(annotation = Controller.class)</span>
String <span class="hljs-title function_">value</span><span class="hljs-params">()</span> <span class="hljs-keyword">default</span> <span class="hljs-string">""</span>;
}
从源码我们知道,@RestController 注解相当于 @ResponseBody+@Controller 合在一起的作用,RestController 使用的效果是将方法返回的对象直接在浏览器上展示成 json 格式.
@RequestBody
通过 HttpMessageConverter 读取 Request Body 并反序列化为 Object(泛指)对象
@RequestMapping
@RequestMapping 是 Spring Web 应用程序中最常被用到的注解之一。这个注解会将 HTTP 请求映射到 MVC 和 REST 控制器的处理方法上
@GetMapping 用于将 HTTP get 请求映射到特定处理程序的方法注解
注解简写:@RequestMapping(value = "/say",method = RequestMethod.GET) 等价于:@GetMapping(value = "/say")
GetMapping 源码
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@RequestMapping(method = RequestMethod.GET)
public @interface GetMapping {
//...
}
是 @RequestMapping(method = RequestMethod.GET) 的缩写
@PostMapping 用于将 HTTP post 请求映射到特定处理程序的方法注解
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@RequestMapping(method = RequestMethod.POST)
public @interface PostMapping {
//...
}
是 @RequestMapping(method = RequestMethod.POST) 的缩写
三、取请求参数值
@PathVariable: 获取 url 中的数据
@Controller
@RequestMapping("/User")
public class HelloWorldController {
<span class="hljs-meta">@RequestMapping("/getUser/{uid}")</span>
<span class="hljs-keyword">public</span> String <span class="hljs-title function_">getUser</span><span class="hljs-params">(<span class="hljs-meta">@PathVariable("uid")</span>Integer id, Model model)</span> {
System.out.println(<span class="hljs-string">"id:"</span>+id);
<span class="hljs-keyword">return</span> <span class="hljs-string">"user"</span>;
}
}
请求示例:http://localhost:8080/User/getUser/123
@RequestParam: 获取请求参数的值
@Controller
@RequestMapping("/User")
public class HelloWorldController {
@RequestMapping("/getUser")
public String getUser(@RequestParam("uid")Integer id, Model model) {
System.out.println("id:"+id);
return "user";
}
}
请求示例:http://localhost:8080/User/getUser?uid=123
@RequestHeader 把 Request 请求 header 部分的值绑定到方法的参数上
@CookieValue 把 Request header 中关于 cookie 的值绑定到方法的参数上
四、注入 bean 相关
@Repository
DAO 层注解,DAO 层中接口继承 JpaRepository<T,ID extends Serializable>, 需要在 build.gradle 中引入相关 jpa 的一个 jar 自动加载。
Repository 注解源码
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Repository {
<span class="hljs-comment">/**
* The value may indicate a suggestion for a logical component name,
* to be turned into a Spring bean in case of an autodetected component.
* <span class="hljs-doctag">@return</span> the suggested component name, if any (or empty String otherwise)
*/</span>
<span class="hljs-meta">@AliasFor(annotation = Component.class)</span>
String <span class="hljs-title function_">value</span><span class="hljs-params">()</span> <span class="hljs-keyword">default</span> <span class="hljs-string">""</span>;
}
@Service
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Service {
<span class="hljs-comment">/**
* The value may indicate a suggestion for a logical component name,
* to be turned into a Spring bean in case of an autodetected component.
* <span class="hljs-doctag">@return</span> the suggested component name, if any (or empty String otherwise)
*/</span>
<span class="hljs-meta">@AliasFor(annotation = Component.class)</span>
String <span class="hljs-title function_">value</span><span class="hljs-params">()</span> <span class="hljs-keyword">default</span> <span class="hljs-string">""</span>;
}
- @Service 是 @Component 注解的一个特例,作用在类上
- @Service 注解作用域默认为单例
- 使用注解配置和类路径扫描时,被 @Service 注解标注的类会被 Spring 扫描并注册为 Bean
- @Service 用于标注服务层组件, 表示定义一个 bean
- @Service 使用时没有传参数,Bean 名称默认为当前类的类名,首字母小写
- @Service(“serviceBeanId”) 或 @Service(value=”serviceBeanId”) 使用时传参数,使用 value 作为 Bean 名字
@Scope 作用域注解
@Scope 作用在类上和方法上,用来配置 spring bean 的作用域,它标识 bean 的作用域
@Scope 源码
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Scope {
<span class="hljs-comment">/**
* Alias for {<span class="hljs-doctag">@link</span> #scopeName}.
* <span class="hljs-doctag">@see</span> #scopeName
*/</span>
<span class="hljs-meta">@AliasFor("scopeName")</span>
String <span class="hljs-title function_">value</span><span class="hljs-params">()</span> <span class="hljs-keyword">default</span> <span class="hljs-string">""</span>;
<span class="hljs-meta">@AliasFor("value")</span>
String <span class="hljs-title function_">scopeName</span><span class="hljs-params">()</span> <span class="hljs-keyword">default</span> <span class="hljs-string">""</span>;
ScopedProxyMode <span class="hljs-title function_">proxyMode</span><span class="hljs-params">()</span> <span class="hljs-keyword">default</span> ScopedProxyMode.DEFAULT;
}
属性介绍
value singleton 表示该bean是单例的。(默认) prototype 表示该bean是多例的,即每次使用该bean时都会新建一个对象。 request 在一次http请求中,一个bean对应一个实例。 session 在一个httpSession中,一个bean对应一个实例。
proxyMode
DEFAULT 不使用代理。(默认)
NO 不使用代理,等价于DEFAULT。
INTERFACES 使用基于接口的代理(jdk dynamic proxy)。
TARGET_CLASS 使用基于类的代理(cglib)。
@Entity 实体类注解
@Table(name ="数据库表名"),这个注解也注释在实体类上,对应数据库中相应的表。
@Id、@Column 注解用于标注实体类中的字段,pk 字段标注为 @Id,其余 @Column。
@Bean 产生一个 bean 的方法
@Bean 明确地指示了一种方法,产生一个 bean 的方法,并且交给 Spring 容器管理。支持别名 @Bean("xx-name")
@Autowired 自动导入
- @Autowired 注解作用在构造函数、方法、方法参数、类字段以及注解上
- @Autowired 注解可以实现 Bean 的自动注入
@Component
把普通 pojo 实例化到 spring 容器中,相当于配置文件中的
虽然有了 @Autowired, 但是我们还是要写一堆 bean 的配置文件, 相当麻烦, 而 @Component 就是告诉 spring, 我是 pojo 类, 把我注册到容器中吧,spring 会自动提取相关信息。那么我们就不用写麻烦的 xml 配置文件了
五、导入配置文件
@PropertySource 注解
引入单个 properties 文件:
@PropertySource(value = {"classpath : xxxx/xxx.properties"})
引入多个 properties 文件:
@PropertySource(value = {"classpath : xxxx/xxx.properties","classpath : xxxx.properties"})
@ImportResource 导入 xml 配置文件
可以额外分为两种模式 相对路径 classpath,绝对路径(真实路径)file
注意:单文件可以不写 value 或 locations,value 和 locations 都可用
相对路径(classpath)
-
引入单个 xml 配置文件:@ImportSource("classpath : xxx/xxxx.xml")
-
引入多个 xml 配置文件:@ImportSource(locations={"classpath : xxxx.xml" , "classpath : yyyy.xml"})
绝对路径(file)
-
引入单个 xml 配置文件:@ImportSource(locations= {"file : d:/hellxz/dubbo.xml"})
-
引入多个 xml 配置文件:@ImportSource(locations= {"file : d:/hellxz/application.xml" , "file : d:/hellxz/dubbo.xml"})
取值:使用 @Value 注解取配置文件中的值
@Value("${properties 中的键}")
private String xxx;
@Import 导入额外的配置信息
功能类似 XML 配置的,用来导入配置类,可以导入带有 @Configuration 注解的配置类或实现了 ImportSelector/ImportBeanDefinitionRegistrar。
使用示例
@SpringBootApplication
@Import({SmsConfig.class})
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
六、事务注解 @Transactional
在 Spring 中,事务有两种实现方式,分别是编程式事务管理和声明式事务管理两种方式
- 编程式事务管理: 编程式事务管理使用 TransactionTemplate 或者直接使用底层的 PlatformTransactionManager。对于编程式事务管理,spring 推荐使用 TransactionTemplate。
- 声明式事务管理: 建立在 AOP 之上的。其本质是对方法前后进行拦截,然后在目标方法开始之前创建或者加入一个事务,在执行完目标方法之后根据执行情况提交或者回滚事务,通过 @Transactional 就可以进行事务操作,更快捷而且简单。推荐使用
七、全局异常处理
@ControllerAdvice 统一处理异常
@ControllerAdvice 注解定义全局异常处理类
@ControllerAdvice
public class GlobalExceptionHandler {
}
@ExceptionHandler 注解声明异常处理方法
@ControllerAdvice
public class GlobalExceptionHandler {
<span class="hljs-meta">@ExceptionHandler(Exception.class)</span>
<span class="hljs-meta">@ResponseBody</span>
String <span class="hljs-title function_">handleException</span><span class="hljs-params">()</span>{
<span class="hljs-keyword">return</span> <span class="hljs-string">"Exception Deal!"</span>;
}
}