spring boot中注解总结

2019-08-09  本文已影响0人  光小月
  1. 配置类
    @Configuration
    @Value
    @ConfigurationProperties(prefix="")
    @Profile("name")
  1. 启动类
    @SpringBootApplication
    @SpringBootConfiguration
    @ComponentScan
    @EnableAutoConfiguration
    @Import
    @AutoConfigurationPackage
  1. 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

  1. 注入
    @Autowired
    @Resource

  2. 其他
    @Async
    @Order
    @EnableAsync
    @Aspect
    @Before
    @Pointcut

上一篇 下一篇

猜你喜欢

热点阅读