02 springBoot常用注解?

vvEcho 2024-01-20 14:08:36
Categories: Tags:

@SpringBootApplication spring启动类上的注解(实际是由三个注解组成:@SpringBootConfiguration @EnableAutoConfiguration @ComponentScan)

@EnableAutoConfiguration 自动配置类
@SpringBootConfiguration spring配置类
@CompentScan 扫描注解

@Bean bean注解
@ConfigurationProperties 配置文件
@EnableConfigurationProperties 配置文件
@Controller 控制器注解
@Service 服务注解
@Repository 持久化注解
@ImportResource 将资源导入容器