xxw1754352621 / java-dev

愿景:提升自我知识容量,扩展自我知识边界
Apache License 2.0
6 stars 2 forks source link

Spring Boot常用的25个注解的理解和运用 #5

Open xxw1754352621 opened 5 years ago

xxw1754352621 commented 5 years ago

Spring Boot常用的25个注解

https://juejin.im/post/5cc07fb7f265da039444ae0c

xxw1754352621 commented 5 years ago

使用@ComponentScan(value = "com.fpx")等同于使用一下注解 @SpringBootApplication(scanBasePackages = "com.fpx")

原因如下: @SpringBootApplication This is a convenience annotation that is equivalent to declaring {@code @Configuration}, {@code @EnableAutoConfiguration} and {@code @ComponentScan}