I use an application.yml based spring-boot for a project. As example project I used https://github.com/ghillert/spring-boot-jsp-demo/blob/master/jsp-demo-tomcat/src/main/resources/application.properties works very good so far.
I was so brave to change the settings from application.properties
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
to
spring.mvc.view.prefix: /WEB-INF/jsp/
spring.mvc.view.suffix: .jsp
Unfortunaetly after changing the properties the example is not working anymore. Is it possible to configure the given properties in the way I do in application.yml? Or how do I configure the settings otherwise?