A.在application.properties中设置spring.autoconfigure.exclude属性B.在@SpringBootApplication注解中设置exclude属性C.A和B都可以D.以上都不可以
单项选择题在Spring Boot中,@SpringBootTest注解的主要用途是什么?()
A.用于配置Spring Boot的测试环境B.用于创建RESTful的ControllerC.用于定义数据源D.用于配置Spring MVC的视图解析器
单项选择题在Spring Boot中,哪个依赖包含了Spring MVC和嵌入式Tomcat?()
A.spring-boot-starter-webB.spring-boot-starter-data-jpaC.spring-boot-starter-testD.spring-boot-starter-aop
单项选择题在Spring Boot应用中,以下哪个注解用于表示一个RESTful的Controller?()
A.@ControllerB.@RestControllerC.@ServiceD.@Repository
单项选择题在Spring Boot应用中,如何配置应用名称?()
A.在application.properties中设置server.nameB.在application.properties中设置spring.application.nameC.在application.yml中设置nameD.在application.yml中设置spring.name
单项选择题在Spring Boot应用中,如果需要在启动时运行一些代码,应该使用哪种方式?()
A.使用@PostConstruct注解在Bean中B.实现CommandLineRunner接口C.实现ApplicationRunner接口D.A和B都可以