写点什么

Spring Boot 开发离不开这些注解,快来学习啦!

作者:Java你猿哥
  • 2023-06-03
    湖南
  • 本文字数:6566 字

    阅读完需:约 22 分钟

Spring Boot 开发离不开这些注解,快来学习啦!

Spring Boot 是一款非常流行的 Java 框架,其注解用法复杂而丰富。 在介绍 Spring Boot 的注解之前,我们需要先了解 Spring 框架中的 AOP(面向切面编程)概念。 Spring 的 AOP 可以帮助开发者实现一些非业务功能的代码,如日志记录、性能监控等。这些功能可以通过定义一个 Aspect(切面) 类来实现。

在 Spring Boot 中,除了常规的 AOP 注解外,还有以下几类注解,这也是我看到一个脑图后的一点点收获,想要自己也能够总结总结所用到的注解,常记定能有所感悟。

  1. 核心注解

  2. 原型注解

  3. SpringBoot 注解

  4. SpringCloud 注解

  5. 缓存注解

  6. 测试注解

  7. 数据库访问注解

  8. JPA 注解

  9. SpringMVC 跟 REST 注解

  10. 全局异常处理注解


接下来我们将分别介绍这几类注解及其使用方法。

一、核心注解

@Configuration

@Configuration 注解可以被用来标记一个类,表示这个类是一个 Bean 配置类。在配置类中,我们可以使用其他 Bean 的定义和依赖,甚至可以使用 @Autowired 和 @Value 注解将其他 Bean 注入到当前的 Bean 中。下面是一个简单的例子:

@Configurationpublic class AppConfig {    @Bean    public MyService myService() {        return new MyServiceImpl();    }}
复制代码

@Autowired

@Autowired 注解可以将一个 Bean 自动注入到当前类中。默认情况下,@Autowired 的匹配规则是根据类型进行匹配。如果有多个类型相同的 Bean,可以使用 @Qualifier 进行限定。

@Componentpublic class MyController {    private final MyService myService;
@Autowired public MyController(MyService myService) { this.myService = myService; }}
复制代码

@Value

@Value 注解用于从配置文件或环境变量中获取值,可以注入 String、int、long、double、boolean 等类型。使用 ${} 可以引用配置文件中的属性,使用 $() 可以引用系统环境变量。

例如:

@Componentpublic class MyComponent {    @Value("${my.config.property}")    private String configProperty;
@Value("$MY_ENV_VAR") private String envVar;}
复制代码

@Bean

@Bean 注解用于定义一个 Bean,将其加入到 Spring 容器中。通常在 @Configuration 类中使用。可以指定该 Bean 的名称、作用域、相关依赖等。

@Configurationpublic class AppConfig {    @Bean(name = "myService", scope = ConfigurableBeanFactory.SCOPE_PROTOTYPE)    public MyService myService() {        return new MyServiceImpl();    }}
复制代码

@ComponentScan

@ComponentScan 注解用于扫描包中的组件(包括 Bean、Controller 等),将这些组件加入到 Spring 容器中。

@Configuration@ComponentScan(basePackages = { "com.example" })public class AppConfig {}
复制代码

@EnableAutoConfiguration

@EnableAutoConfiguration 注解可以自动配置 Spring Boot 应用程序。在启用该注解时,Spring Boot 将根据类路径和配置文件中的信息来尝试猜测并配置应用程序。

@SpringBootApplicationpublic class MyApp {    public static void main(String[] args) {        SpringApplication.run(MyApp.class, args);    }}
复制代码

二、原型注解

@Scope

@Scope 注解用于设置 Bean 的作用域,包括 Singleton、Prototype、Request、Session 等。默认情况下,Bean 是 Singleton 的。

@Configurationpublic class AppConfig {    @Bean(name = "myService")    @Scope( ConfigurableBeanFactory.SCOPE_PROTOTYPE )    public MyService myService() {        return new MyServiceImpl();    }}
复制代码

@Lazy

@Lazy 注解用于标记一个 Bean 延迟初始化。当容器从 XML 文件、Java 配置类或其他方式加载时,不会创建这个 Bean。

@Configurationpublic class AppConfig {    @Bean(name = "myService")    @Lazy    public MyService myService() {        return new MyServiceImpl();    }}
复制代码

@DependsOn

@DependsOn 注解用于标识 Bean 之间的依赖关系。在容器启动时,先创建 @DependsOn 注解中指定的 Bean,再创建当前 Bean。

@Configurationpublic class AppConfig {    @Bean(name = "myService")    public MyService myService() {        return new MyServiceImpl();    }
@Bean(name = "myController") @DependsOn("myService") public MyController myController() { return new MyController(myService()); }}
复制代码

三、SpringBoot 注解

@SpringBootApplication

@SpringBootApplication 注解是一个组合注解,等价于同时使用 @Configuration、@EnableAutoConfiguration 和 @ComponentScan 注解。它用于标记主类,并告诉 Spring Boot 启动该应用程序。

@SpringBootApplicationpublic class MyApp {    public static void main(String[] args) {        SpringApplication.run(MyApp.class, args);    }}
复制代码

@RestController

@RestController 注解表示控制器中所有方法都返回 JSON 格式数据。它是 Spring MVC 中 @Controller 注解的扩展。下面是一个简单的例子:

@RestControllerpublic class MyController {    @GetMapping("/greeting")    public String greeting() {        return "Hello, world!";    }}
复制代码

@RequestMapping

@RequestMapping 注解用于映射 HTTP 请求。可以使用 value 属性指定 URL 映射,使用 method 属性指定请求方法。

@RestController@RequestMapping("/api")public class MyController {    @GetMapping("/greeting")    public String greeting() {        return "Hello, world!";    }}
复制代码

@GetMapping

@GetMapping 注解等同于 @RequestMapping(method = RequestMethod.GET),用于映射 HTTP GET 请求。

@RestController@RequestMapping("/api")public class MyController {    @GetMapping("/greeting")    public String greeting() {        return "Hello, world!";    }}
复制代码

@PostMapping

@PostMapping 注解等同于 @RequestMapping(method = RequestMethod.POST),用于映射 HTTP POST 请求。

@RestController@RequestMapping("/api")public class MyController {    @PostMapping("/greeting")    public String greeting() {        return "Hello, world!";    }}
复制代码

@PutMapping

@PutMapping 注解等同于 @RequestMapping(method = RequestMethod.PUT),用于映射 HTTP PUT 请求。

@RestController@RequestMapping("/api")public class MyController {    @PutMapping("/greeting")    public String greeting() {        return "Hello, world!";    }}
复制代码

@DeleteMapping

@DeleteMapping 注解等同于 @RequestMapping(method = RequestMethod.DELETE),用于映射 HTTP DELETE 请求。

@RestController@RequestMapping("/api")public class MyController {    @DeleteMapping("/greeting")    public String greeting() {        return "Hello, world!";    }}
复制代码

@RequestParam

@RequestParam 注解用于将请求参数映射到方法的参数中。可以使用 value 属性指定参数名,使用 required 属性指定是否必填,使用 defaultValue 属性指定默认值。

@RestController@RequestMapping("/api")public class MyController {    @GetMapping("/greeting")    public String greeting(@RequestParam("name") String name) {        return "Hello, " + name + "!";    }}
复制代码

@PathVariable

@PathVariable 注解用于将 URL 中的占位符映射到方法的参数中。可以使用 value 属性指定占位符名称。

@RestController@RequestMapping("/api")public class MyController {    @GetMapping("/{name}")    public String greeting(@PathVariable("name") String name) {        return "Hello, " + name + "!";    }}
复制代码

@RequestBody

@RequestBody 注解用于从请求体中获取数据。通常用于处理 POST、PUT 请求。

@RestController@RequestMapping("/api")public class MyController {    @PostMapping("/greeting")    public String greeting(@RequestBody GreetingRequest request) {        return "Hello, " + request.getName() + "!";    }}
public class GreetingRequest { private String name;
// getters and setters}
复制代码

@ResponseBody

@ResponseBody 注解表示该方法返回的结果直接输出到响应体中。

@RestController@RequestMapping("/api")public class MyController {    @GetMapping("/greeting")    @ResponseBody    public String greeting() {        return "Hello, world!";    }}
复制代码

@ResponseStatus

@ResponseStatus 注解用于指定请求处理完成后的状态码。

@RestController@RequestMapping("/api")public class MyController {    @GetMapping("/greeting")    @ResponseStatus(HttpStatus.OK)    public String greeting() {        return "Hello, world!";    }}
复制代码

@ExceptionHandler

@ExceptionHandler 注解用于处理请求抛出的异常。

@RestControllerAdvicepublic class GlobalExceptionHandler {    @ExceptionHandler(IllegalArgumentException.class)    @ResponseStatus(HttpStatus.BAD_REQUEST)    public ErrorResult handleIllegalArgumentException(IllegalArgumentException ex) {        return new ErrorResult(ex.getMessage());    }}
public class ErrorResult { private String message;
public ErrorResult(String message) { this.message = message; }
// getters and setters}
复制代码

四、SpringCloud 注解

@EnableDiscoveryClient

@EnableDiscoveryClient 注解用于启用服务发现功能。使用该注解后,应用程序能够将自己注册到 Eureka 服务器,并从中获取其他实例的信息。

@SpringBootApplication@EnableDiscoveryClientpublic class MyApp {    public static void main(String[] args) {        SpringApplication.run(MyApp.class, args);    }}
复制代码

@LoadBalanced

@LoadBalanced 注解用于标记 RestTemplate Bean,以启用负载均衡功能。在使用 REST 请求时,RestTemplate 将根据服务名自动选择一个可用的实例。

@Configurationpublic class AppConfig {    @Bean    @LoadBalanced    public RestTemplate restTemplate() {        return new RestTemplate();    }}
复制代码

@FeignClient

@FeignClient 注解用于定义一个 Feign 客户端。Feign 是一款用于简化 HTTP API 客户端的工具,它支持声明式 REST 客户端。使用 @FeignClient 注解后,我们可以通过接口来调用具有相同功能的微服务。

@FeignClient(name = "my-service")public interface MyServiceClient {    @GetMapping("/greeting")    String greeting();}
复制代码

五、缓存注解

@Cacheable

@Cacheable 注解表示方法的结果应该被缓存起来,下次调用该方法时,如果参数和之前相同,则返回缓存结果。

@Servicepublic class MyService {    @Cacheable("greetingCache")    public String greeting(String name) {        return "Hello, " + name + "!";    }}
复制代码

@CachePut

@CachePut 注解表示方法的结果应该被缓存起来,下次调用该方法时,不会返回缓存结果,而是重新计算结果并缓存起来。

@Servicepublic class MyService {    @CachePut("greetingCache")    public String greeting(String name) {        return "Hello, " + name + "!";    }}
复制代码

@CacheEvict

@CacheEvict 注解表示方法执行后从缓存中删除指定项。

@Servicepublic class MyService {    @CacheEvict("greetingCache")    public void clearGreetingCache() {    }}
复制代码

六、测试注解

@SpringBootTest

@SpringBootTest 注解用于测试 Spring Boot 应用程序。它会创建一个完整的 Spring 应用程序上下文,并在测试期间使用它。

@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)public class MyControllerTest {    @Autowired    private TestRestTemplate restTemplate;
@Test public void testGreeting() { ResponseEntity<String> responseEntity = restTemplate.getForEntity("/api/greeting", String.class); assertThat(responseEntity.getStatusCode()).isEqualTo(HttpStatus.OK); assertThat(responseEntity.getBody()).isEqualTo("Hello, world!"); }}
复制代码

@MockBean

@MockBean 注解用于模拟一个 Bean 的实现。在测试过程中,可以使用 Mockito.when() 等方法来指定一些行为。

@SpringBootTestpublic class MyServiceTest {    @Autowired    private MyService myService;
@MockBean private MyRepository myRepository;
@Test public void testFindById() { Mockito.when(myRepository.findById(1L)).thenReturn(Optional.of(new MyEntity())); MyEntity entity = myService.findById(1L); assertThat(entity).isNotNull(); Mockito.verify(myRepository).findById(1L); }}
复制代码

七、数据库访问注解

@Transactional

@Transactional 注解用于指定一个方法需要在事务中执行。默认情况下,只有 RuntimeException 会触发事务回滚。

@Servicepublic class MyService {    @Autowired    private MyRepository myRepository;
@Transactional public void save(MyEntity entity) { myRepository.save(entity); }}
复制代码

@Repository

@Repository 注解用于标记数据访问层,表示这个类是一个数据仓库。

@Repositorypublic interface MyRepository extends JpaRepository<MyEntity, Long> {}
复制代码

@Entity

@Entity 注解用于标记实体类,表示这个类是一个 JPA 实体。它与数据库中的表相对应。

@Entity@Table(name = "my_entity")public class MyEntity {    @Id    @GeneratedValue(strategy = GenerationType.IDENTITY)    private Long id;
// getters and setters}
复制代码

@Id

@Id 注解用于标记主键字段。

@Entity@Table(name = "my_entity")public class MyEntity {    @Id    @GeneratedValue(strategy = GenerationType.IDENTITY)    private Long id;
// getters and setters}
复制代码

@GeneratedValue

@GeneratedValue 注解用于指定主键的生成策略。

@Entity@Table(name = "my_entity")public class MyEntity {    @Id    @GeneratedValue(strategy = GenerationType.IDENTITY)    private Long id;
// getters and setters}
复制代码

@Column

@Column 注解用于指定实体属性与数据库表列之间的映射关系。

@Entity@Table(name = "my_entity")public class MyEntity {    @Id    @GeneratedValue(strategy = GenerationType.IDENTITY)    private Long id;
@Column(name = "name") private String name;
// getters and setters}
复制代码

八、JPA 注解

@EnableJpaRepositories

@EnableJpaRepositories 注解用于启用 Spring Data JPA 功能。它会自动配置 Spring Data JPA 相关的 Bean。

@SpringBootApplication@EnableJpaRepositoriespublic class MyApp {    public static void main(String[] args) {        SpringApplication.run(MyApp.class, args);    }}
复制代码

@Query

@Query 注解用于自定义查询语句。

@Repositorypublic interface MyRepository extends JpaRepository<MyEntity, Long> {    @Query("select e from MyEntity e where e.name = :name")    List<MyEntity> findByName(@Param("name") String name);}
复制代码

九、全局异常处理注解

@ControllerAdvice

@ControllerAdvice 注解用于定义一个全局异常处理类,用于捕获所有控制器中抛出的异常,进行统一处理。

@ControllerAdvicepublic class GlobalExceptionHandler {    @ExceptionHandler(Exception.class)    public ModelAndView handleException(HttpServletRequest request, Exception ex) {        ModelAndView mav = new ModelAndView();        mav.addObject("exception", ex);        mav.addObject("url", request.getRequestURI());        mav.setViewName("error");        return mav;    }}
复制代码

以上是 Spring Boot 中常见的注解和使用方法,终于干完了,虽然相关注解还有很多,以后一点一点充实这篇文章吧。

用户头像

Java你猿哥

关注

一只在编程路上渐行渐远的程序猿 2023-03-09 加入

关注我,了解更多Java、架构、Spring等知识

评论

发布
暂无评论
Spring Boot 开发离不开这些注解,快来学习啦!_spring_Java你猿哥_InfoQ写作社区