I am creating a Spring Boot application, using Spring Initializr, But the folder structure is bit different, there is no WEB-INF
folder, so where I will put the JSP files, shall I create the WEB-INF
folder manually?
We need to create the WEB-INF folder manually in spring boot application. Follow these steps:
Select main folder as highlighted below.
Right click and create a folder with name webapp.
Now right click on webapp folder and create WEB-INF folder.
Now similarly create a view folder (or any other name you like) inside WEB-INF folder to keep all the JSPs.
Below should be the folder structure after doing above steps.