Login
Register
How do you override a Spring Boot Project’s Default Properties?
+1
vote
How do you override a Spring Boot Project’s Default Properties?
#spring-boot-project
asked
Dec 20, 2019
in
Service Discovery
by
Please
log in
or
register
to answer this question.
1
Answer
0
votes
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/
answered
Dec 20, 2019
by
...