The first thing you need to worry about is to make sure you have all bundles installed from the Java Enterprise Update Site. Notice that this is different that the standard Eclipse distribution. If you successfully installed it, you should have the ability to create a new "Dynamic Web Project" from the new Project menu. Once that is in place and you created a new "Dynamic Web Project" take a look at the .classpath file. It has some entries of type "classpathentry". It should look something like:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> | |
<attributes> | |
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/> | |
<attributes> | |
</classpathentry> | |
The kind of classpathentry "con" means "classpath container". It's the way WTP will resolve classpath entries as you deploy your Dynamic Web Project via Eclipse. Now, take a look at your .project file. It should look something like:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<projectDescription> | |
<name>myproject</name> | |
<buildSpec> | |
<buildCommand> | |
<name>org.eclipse.jdt.core.javabuilder</name> | |
<arguments></arguments> | |
</buildCommand> | |
<buildCommand> | |
<name>org.eclipse.jdt.core.javabuilder</name> | |
<arguments></arguments> | |
</buildCommand> | |
</buildSpec> | |
<natures> | |
... | |
<nature>org.eclipse.wst.common.project.facet.core.nature</nature> | |
... | |
</natures> | |
</projectDescription> |
There could be other buildcommand entries or other nature entries, however these are very important to have in order to enable all tooling support for a "Dynamic Web Project". Now, the one file that has some more information is found within the .settings folder. This file is named org.eclipse.wst.common.component. This file is very interesting. It shows how Eclipse (or STS) will deploy the project to the Server of your choice (e.g. Tomcat). It should look something like:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project-modules id="moduleCoreId" project-version="1.5.0"> | |
<wb-module deploy-name="myWebApp"> | |
<wb-resource deploy-path="/" source-path="/src/main/webapp"/> | |
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/> | |
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/> | |
<property name="context-root" value="myCoolWebapp"/> | |
<property name="java-output-path"/> | |
</wb-module> | |
</project-modules> |
Hopefully, this file speaks for itself (as far as to understand how WTP deploys this project as an "exploded" war). Notice that I'm using a traditional maven directory structure for defining a webapp. As these files are in place, you should be able to execute the "Run In Server" command (from the "Run" menu) and, assuming you have a server configured, you should be able to see your web application running via Eclipse. Of course, this means you could not only "Run" but also "Debug" whereby all your breakpoints and other debugging tools would work seemlessly.
No comments:
Post a Comment