| eclipse-java-galileo-SR1-win32.zip | Windows |
| eclipse-java-galileo-SR1-linux-gtk.tar.gz | Linux (32-bit) |
| eclipse-java-galileo-SR1-macosx-cocoa-x86_64.tar.gz | Mac (64-bit) |
| Windows | Linux | Mac | ||||||
WindowsDecide on an installation folder, say:My Documents\Keep in mind that all the packages will add the initial eclipse directory at the top. First extract the basis into My Documents eclipse-java-galileo-SR1-win32.zipThen, one by one, extract the WTP zip folders, also into My Documents (NOT into My Documents\eclipse !!). Say YES to ALL for any file overrides these overrides are innocuous. emf-runtime-2.5.0.zip xsd-runtime-2.5.0.zip GEF-SDK-3.5.1.zip wtp-R-3.1.1-20090917225226.zipFinally, the executable you want is: My Documents\eclipse\eclipse.exeSimply make a shortcut to it in some convenient location. |
||||||||
Open Perspective
Other
Other.
Open the Server category,
select the Server entry within and click Next.
Tomcat v6.0 Server, click
Next.
Tomcat admin port 8005 HTTP/1.1 8080 AJP/1.3 8090For example, make the number these:
Tomcat admin port 8105 HTTP/1.1 8180 AJP/1.3 8190Save the configuration and close this configurator.
Project
Web
Dynamic Web Project;
click Next.
Set HelloWorld as the Project Name; click Finish.
JSP.
Give it the name index.jsp
(the .jsp extension is optional, and typing it
will not confuse the file name like in NetBeans).
Click Finish.
Run on Server.
Servlet.
Give it the info and then click Finish:
Java package: servlet Class name: Hello
java.io.PrintWriter out = response.getWriter();
try {
out.println("Hello Servlet");
} finally {
out.close();
}
Run on Server.
processRequestfunction which both doGet and doPost are set up to call; you have to create one yourself. Also NetBeans automatically defines the PrintWriter out object wherease Eclipse does not.