0 votes
in Spring Framework Database Integration by

What does SpringApplication.run() do?

a) Performs class path scan (interprets all annotations in the Spring class)

b) All the options

c) Starts Spring Application Context

d) Default configuration

e) Starts Tomcat Server

1 Answer

0 votes
by
b) All the options

SpringApplication.run() Performs class path scan (interprets all annotations in the Spring class), Starts Spring Application Context, Default configuration and Starts Tomcat Server
...