I need to change the default Eclipse WTP "Web Resources" dynamic folder. Currently it points to WebContent, and I need to point to src\main\webapp.
19
votes
6 Answers
21
votes
5
votes
I prefer the following solution, as the configuration is then saved in the .project
file and also all files are kept visible in the Eclipse Project Explorer.
Create a Linked Folder called WebContent
pointing to /src/main/webapp
:
Right click project > New > Folder. Folder name: WebContent
. Advanced > Link to alternate location (Linked Folder): PROJECT_LOC/src/main/webapp
.
2
votes
0
votes
0
votes
In my case the problem was that the jsp located in resources/templates were not found
The solution has been to change
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
by the following
<wb-resource deploy-path="/" source-path="/src/main/resources"/>
That is, modifying the file
.settings\org.eclipse.wst.common.component