Spring boot use resources templates folder with JSP templates instead of webapp folder?
问题 I started a Spring Boot MVC project and realized that there are two folder within resources . One is called templates and the other static . I really like this folder setup. The problem is that I use JSP Templates for my views. I could not place a .jsp template inside the templates folder and got it to work. What I needed to do is to create a webapp folder on the same level as src and resources . Placing my JSP templates in there and then my views can be found. What do I need to reconfigure