What are the conventional locations for for JSPs, JavaScript, CSS, Images in Maven web projects?
问题 I need to convert a traditional J2EE web application into a new Maven web project. In traditional project JSPs are under WebApp/jsps folder, JavaScript & CSS files under WebApp/scripts folder, image under WebApp/images folder, .properties files under WebApp/resources folder. In the Maven project where would each of those file types go? Should I create folders under src/main/webapp such as: src/main/webapp/jsps , src/main/webapp/images , src/main/webapp/resources … etc and copy the files from