sudo apt-get install tomcat7 tomcat7-docs tomcat7-examples tomcat7-admin -y
- select Windows -> Preferences -> Server -> Runtime Environments;
- press Add…;
- select “Apache Tomcat v7.0″;
- enter “/usr/share/tomcat7″ into the “Tomcat installation directory” field;
- press Ok;
- as Target Runtime select “Apache Tomcat v7.0″;
- press twice Next;
- select the “Generate the web.xml deployment descriptor” option at the final dialog;
- press Finish;
cd ~/workspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/ rm org.eclipse.jst.server.tomcat.core.prefs rm org.eclipse.wst.server.core.prefs
cd /usr/share/tomcat7 sudo ln -s /var/lib/tomcat7/conf conf sudo ln -s /etc/tomcat7/policy.d/03catalina.policy conf/catalina.policy sudo ln -s /var/log/tomcat7 log sudo chmod -R 777 /usr/share/tomcat7/conf
cp /etc/tomcat7/* workspace/Servers/Tomcat\ v7.0\ Server\ at\ localhost-config/
- go to Window->Show View->Other…;
- choose the Servers under the Server category;
- choose Apache / Tomcat v7.0 Server and press Next;
- enter “/usr/share/tomcat7″ into the “Tomcat installation directory” field;
- press Next;
- select your project on the left pane under “Available” and press Add> to move it to the right pane under “Configured”;
- press Finish”;
sudo service tomcat7 stop
and to disable Tomcat to automatically start at boot run:
sudo update-rc.d tomcat7 disable
Your web services will be automatically deployed in the following folder:
~/workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/
Your web service will be accessible through the following URI:
http://localhost:8080/EclipseProjectName/x/y/z
Where:
- x = the root of your service set inside the tag url-pattern in web.xml;
- y = the path set for your class
- z = the path set for your method
No comments:
Post a Comment