eclipse configuration for application server

Reply

Join Date: Oct 2007
Posts: 19
Reputation: mrityunjay22 is an unknown quantity at this point 
Solved Threads: 0
mrityunjay22 mrityunjay22 is offline Offline
Newbie Poster

eclipse configuration for application server

 
0
  #1
Nov 29th, 2007
my jsp and servlet are in Z: drive and i want to configure eclipse for application server plz tell me how to do it
Reply With Quote Quick reply to this message  
Join Date: Feb 2006
Posts: 2,357
Reputation: masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of 
Solved Threads: 252
Moderator
masijade's Avatar
masijade masijade is offline Offline
Nearly a Posting Maven

Re: eclipse configuration for application server

 
0
  #2
Nov 29th, 2007
Uuuhhmmm, by reading the documentation and doing what it says there, maybe?
Java Programmer and Sun Systems Administrator

----------------------------------------------

Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.
--Brian Kernighan
Reply With Quote Quick reply to this message  
Join Date: Aug 2007
Posts: 80
Reputation: lookof2day is an unknown quantity at this point 
Solved Threads: 10
lookof2day lookof2day is offline Offline
Junior Poster in Training

Re: eclipse configuration for application server

 
0
  #3
Nov 29th, 2007
Are you using WTP plugins with eclipse or simply eclipse. If in case you are using simply eclipse, then there is no way to configure your App Server with it. However, you can still compile your servlets in Eclipse and get it running on App server. This can be done parallely. All you need to do is following:

1) Create a new Java Project
The structure should be:
MyAppServerProj
|
WEB-INF
|
classes
2) Make sure that you have changed the default classes folder from <proj>/bin to <proj>/WEB-INF/classes when creating the Java Project.
3) In order to compile Servlets, you will require the servlet.jar file. You can find it in the lib directory of your server.
4) So in order to use it, Right click on Project and Click Properties in Eclipse. Then select java Build Path from the available window.
5) Click on Add External Jars button and browse through the Appserver lib directory to locate it. Click Ok.
6) Now your App Server requires information about your project. its pretty easy. I'm using Tomcat here and advice the beginners to use it. Go to the the conf directory of Tomcat. Here you will have to create an xml file MyAppServerProj.xml
7) The contents of file would be <Context path="/myproj" docBase="D:\MyAppServerProj" reloadable="true"/>
8) By making reloadable="true"., you can perform hot deployment.
10) Once you have compiled your code in eclipse, start your tomcat. And you are ready.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Other Threads in the Java Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC