Login
Remember
Register
Ask a Question
How do you override a Spring Boot Project’s Default Properties?
+1
vote
asked
Dec 20, 2019
in
Service Discovery
by
sharadyadav1986
How do you override a Spring Boot Project’s Default Properties?
#spring-boot-project
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 20, 2019
by
rajeshsharma
Specify the properties in application.properties.
Spring MVC applications need the suffix and the prefix to be specified. This can be done by:
For suffix – spring.mvc.view.suffix: .jsp
For prefix – spring.mvc.view.prefix: /WEB-INF/
...