用于指定Spring Boot扫描组件目标的注解是
A: @Configuration
B: @Autowired
C: @ComponentScan
D: @Service
A: @Configuration
B: @Autowired
C: @ComponentScan
D: @Service
举一反三
- 用于指定当前类是一个 Spring 配置类,当创建容器时会从该类上加载注解的是哪个注解? A: @Import B: @PropertySource C: @ComponentScan D: @Configuration
- 用于指定 Spring 在初始化容器时要扫描的包。 作用和在 Spring 的 xml 配置文件中的 <context:component-scan base-package="com.itheima"/>一样的注解是? A: @Configuration B: @Bean C: @PropertySource D: @ComponentScan
- 下列注解中,属于Spring Boot 核心注解的是( )。 A: @EnableAutoConfiguration B: @SpringBootApplication C: @ComponentScan D: @SpringBootConfiguration
- @ComponentScan:启用组件扫描的注解,它会主动扫码哪些注解声明的类? A: @Component B: @Controlle C: @Service D: @RequestMapping E: @Repository
- Spring中定义了一系列的注解,常用的注解有() A: @Autowired B: @Repository C: @Service D: @Controller