InterviewSolution
Saved Bookmarks
| 1. |
What are the features of Spring boot providing to develop the microservices application? |
|
Answer» Spring boot is predominately used to develop the micros services-based application, most of the key features leverage to ease the configuration development and deployment of the microservices architecture.
@Value("${cassandra.password}") private String password;
@EnableAutoConfiguration @ComponentScan |
|