美文网首页
记录下一些常用注解

记录下一些常用注解

作者: 进击的小鹿 | 来源:发表于2022-03-15 13:57 被阅读0次

@RestController 和 @RequestMapping 注解是Spring MVC注解

@EnableAutoConfiguration

@SpringBootApplication 注解等价于以默认属性使用 @Configuration , @EnableAutoConfiguration 和 @ComponentScan 。

@Profile
Spring Profiles提供了一种隔离应用程序配置的方式,并让这些配置只能在特定的环境下生效。任何@Component或@Configuration都能被@Profile标记,从而限制加载它的时机。

@Profile("production")

@ResponseBody
@Component:
@AutoWired
@RequestParam:
@PathVariable: 路径变量。
@value注解来读取application.properties里面的配置

全局处理异常的: @ControllerAdvice: 包含@Component。可以被扫描到。
统一处理异常。

@ExceptionHandler(Exception.class): 用在方法上面表示遇到这个异常就执行以下方法。

在SpringBootApplication上使用@ServletComponentScan注解后,Servlet、Filter、Listener可以直接通过@WebServlet、@WebFilter、@WebListener注解自动注册,无需其他代码。

@ConfigurationProperties(prefix = "httpApi.crm")
@ConfigurationProperties

@JsonInclude @JsonInclude(value=Include.NON_NULL)这个注解的意思是说,在序列化的过程中,如果对象的某个属性的值为空null,则这个属性就不会出现在json中;可能是前端这么要求,也可能是减少数据传输流量的要求;

@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss")private Date birthday;

相关文章

  • spring mvc中一些注解

    1. 前言 本文主要记录一下spring mvc中常用的注解的使用 2. 注解 1. @ModelAttribut...

  • 常用注解记录

    SpringBoot常用注解记录 相关内容参参考博文(原作者JavaGuide):https://zhuanlan...

  • Spring系列常用注解

    附录史上最全Spring注解Spring常用注解Springboot常用45注解Springboot常用27个注解...

  • 记录下一些常用注解

    @RestController 和 @RequestMapping 注解是Spring MVC注解 @Enable...

  • Spring框架中最常见的注解浅谈

    Spring常用注解浅谈 我先列举一些Spring中的常见注解:@Autowired @Resource @Qua...

  • Arouter 注解

    Arouter 注解 Route @Route是Arouter中大家最常用的注解 再介绍下Warehouse,主要...

  • Spring Boot 注解—常用注解

    注:该部分内容包含一些常用注解,如果没有学习过java注解的同学可以先看一下上一小节的内容Spring Boot ...

  • Springboot 常用注解举例

    Http 常用注解: Json 格式返回常用注解: 引入配置文件:

  • BreakPoint & LLDB

    前言 记录一下比较常用的一些 LLDB 调试技巧.Note: 在这里是记录一下常用的方法, 并不是完全教程哟!No...

  • Springboot注解:@Documented

    Documented 注解表明这个注解应该被 javadoc工具记录. 默认情况下,javadoc是不包括注解的....

网友评论

      本文标题:记录下一些常用注解

      本文链接:https://www.haomeiwen.com/subject/anhydrtx.html