Microservice Interview FAQs
Microservice Interview FAQs
Spring/Spring Boot
/**
* Sets the reporting service url.
*
* @param reportUrl the new reporting service url
*/
@Value("${reporting-service.url}")
public void setReportingServiceUrl(String reportUrl) {
reportingServiceUrl = reportUrl;
}
JPA/Hibernate
1) What is Spring Data JPA and how will you create a Spring Boot application that
communicates with Data base . (We need to explain the step/ hierarchy of application)
2) How you’ll do relational mapping. Give and example for Many to One ( What
annotations we need to use and how we will map with example)
SQL
Project Related