+1 vote
How do you override a Spring Boot Project’s Default Properties?
in Service Discovery by

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/
by
...