SpringBoot Interview Questions
SpringBoot Interview Questions
>>>>>What is springboot?
it is a framework for rapid application development built on top of the
spring framework
we can also say, springboot is the combination of spring framework and
embeded severs.
>>>>>can we disable the default web server in the spring boot application?
the major strong point in spring is to provide flexibility to build the
application
spring provides features to disable the web server in a quick
configuration
so,yes we can use the "application.properties" to configure web
application i.e.
"spring.main.web-application-
type=none"
>>>>>is this possible to change the port of embeded tomcat server in springboot ?
yes, u can the application.properties file to change the port.
but need to mention "server.port"