| 注解 | 使用位置 | 作用说明 |
| --- | --- | --- |
| @EnableAutoConfiguration | 入口类/类名上 | 用来提供自动配置 |
| @SpringBootApplication | 入口类/类名上 | 用来启动入口类 Application |
| @EnableScheduling | 入口类/类名上 | 用来开启计划任务。Spring 通过 @Scheduled 支持多种类型的计划任务,包含 cron、fixDelay、fixRate 等 |
| @EnableAsync | 入口类/类名上 | 用来开启异步注解功能 |
| @ComponentScan | 入口类/类名上 | 用来扫描组件,可自动发现和装配一下 Bean |
| @Aspec | 入口类/类名上 | 标注切面、可以用来配置事务、日志、权限验证,在用户请求时做一些处理等 |
| @ControllerAdvice | 类名上 | 包含@Component,可以被扫描到。统一处理异常 |
| @ExceptionHandler | 方法上 | 用在方法上,表示遇到这个异常就执行该方法 |
| @Value | 属性上 | 用于获取配置文件中的值 |
- 环境配置
- window怎么配置java环境变量?
- Java基础语法
- Java中的数据类型
- Java中的JSONObject
- Java高级特性
- Maven
- jib-maven-plugin
- 什么是Spring Boot 的 parent pom?
- maven中各个生命周期的含义
- Spring Boot
- maven与spring boot 的关系
- 配置文件
- application-properties配置文件
- Spring Boot 的启动
- spring boot项目如何启动?
- 列举一下Spring Boot的启动过程
- SpringApplication.run方法
- Spring Boot 启动时有哪些接口?
- CommandLineRunner
- Spring Boot 的常用注解
- 系统注解
- 表格:系统注解
- @Override
- @Deprecated
- @SuppressWarnnings
- 使用在类名上的注解
- 表格:使用在类名上的注解
- @RestController
- @Controller
- @Service
- @Repository
- @Component
- @Configuration
- @Resource
- @Autowired
- @RequestMapping
- @PostMapping
- @GetMapping
- @Transactional
- @Qualifier
- 使用在方法上的注解
- 表格:使用在方法上的注解
- @RequestBody
- @PathVariable
- @Bean
- @ResponseBody
- @PreAuthorize
- 其他常用注解
- 表格:其他常用注解
- @EnableAutoConfiguration
- @SpringBootApplication
- @EnableScheduling
- @EnableAsync
- @ComponentScan
- @Aspec
- @ControllerAdvice
- @ExceptionHandler
- @Value
- @ConfigurationProperties
- @EnableConfigurationProperties
- @MapperScan
- Validator验证的常用注解
- spring IoC容器
- Spring IoC容器依赖注入实现方式
- MyBatis
- paginationInterceptor
- @TableName
- @TableId
- @Param
- UrlBasedCorsConfigurationSource
- Lombok
- @Data
- @Slf4j
- @EqualsAndHashCode
- @Accessors
- 支付系统
- 1. 初始化mysql数据库流程
- 2. 初始化redis数据库的流程
- 3. 初始化rabbitmq服务