I am trying my hands on Spring MVC Boot application and I am currently using springBootVersion = '2.1.6.RELEASE'.
I have hundreds of ".jsp" files placed in multiple sub-directories which are inside a "view" directory of my web application and i am trying to see how i can define the property in application.properties file to search for the jsp files in all sub directories rather than only view directory.
Currently the application is able to find the jsp pages only if they are located outside the sub folders i.e inside the "view" folder.
Below is the screenshot of my project directory structure and the application.properties file.
Each directory (e.g. be, ca, de, fr) has its own jsp pages, images, css, js etc.
I have tried with the following 3 property values but it did not work -
spring.mvc.view.prefix:/WEB-INF/
spring.mvc.view.prefix:/WEB-INF/*/
spring.mvc.view.prefix:/WEB-INF/view/*/
Please advise if there is a way to search for the jsp files in all sub directories.