- 配置类
@Configuration
@Value
@ConfigurationProperties(prefix="")
@Profile("name")
- 启动类
@SpringBootApplication
@SpringBootConfiguration
@ComponentScan
@EnableAutoConfiguration
@Import
@AutoConfigurationPackage
- mvc 注解
@RestController
@RequestMapping
@GetMapping
@PostMapping
@PutMapping
@DeleteMapping
@PatchMapping
RequestMethod.(GET, HEAD, POST, PUT, PATCH, DELETE, OPTIONS, TRACE)
@PathVariable
@RequestParam
@RequestBody
@Controller
@Service
@Repository
@Component
@Bean
@RestControllerAdvice
@ControllerAdvice
@ExceptionHandler
-
注入
@Autowired
@Resource -
其他
@Async
@Order
@EnableAsync
@Aspect
@Before
@Pointcut
网友评论