Choose a topic to test your knowledge and improve your Spring Boot skills
Choose name of annotations @SpringBootApplication annotation is equivalent to using with their default attribute
Springboot enables the developers to us ?
Springboot provides?
Can we exclude any package without using then basePackages filter ?
Spring Boot provides a trickier option for achieving this without touching the component scan?
@SpringBootApplication can used to exclude any package without using basePackage filter?
Choose correct Code Snippet used to exclude
Can we disable a specific auto-configuration class?
How we can disable a specific auto- configuration class?
Syntax for specific auto-configuration classes that we do not want are being applied?
Syntax for Spring Boot provides the facility to control the list of auto-configuration classes to exclude by using the spring.autoconfigure.exclude property<br> application.properties<br> //By using property file<br><br> spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration
Can we disable the default web server in the Spring Boot application?
spring.main.web-application-type=none is use to disable the default web server in the Spring Boot application
Can we override or replace the Embedded Tomcat server in Spring Boot?
Is this possible to change the port of Embedded Tomcat server in Spring boot?