| 注解 | 使用位置 | 说明 |
| --- | --- | --- |
| @RestController | 类名上 | `@Controller` 和 `@ResponseBody` 注解的组合 |
| @Controller | 类名上 | 标记一个类作为控制器,并将其扫描到 Spring 容器中 |
| @Service | 类名上 | 声明一个业务处理类(实现非接口类) |
| @Repository | 类名上 | 声明数据库访问类(实现非接口类) |
| @Component | 类名上 | 代表其是 Spring管理类,常用在无法用@Service、@Repository描述的 Spring 管理的类上,相当于通用的注释 |
| @Configuration | 类名上 | 表示该类是一个配置类,常与@Bean配合使用 |
| @Resource | 类名上、属性或构造函数参数上 | 默认按 byName自动注入 |
| @Autowired | 类名上、属性或构造函数参数上 | 默认按 byType自动注入 |
| @RequestMapping | 类名或方法上 | 如果在类上,则表示所有响应请求的方法都是以该地址作为父路径的 |
| @Transactional | 类名或方法上 | 用于处理事务 |
| @Qualifier | 类名或属性上 | 为 Bean 指定名称,随后再通过名字引用 Bean |
- 环境配置
- 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服务