Java Enterprise

Estimado amigo,
Me he descargado Java 2 Platform, Enterprise Edition SDK version 1.3 y quisiera preguntarle en que directorios puedo copiar mis servlets, el html y por la configuración del servicio Web Server.
Muchísimas gracias por su ayuda.
José Javier

1 respuesta

Respuesta
Para hacer funcionar SERVLETS y JSP debes tener un servidor de aplicación compatible... No puedes usar cualquiera...
Te recomiendo que bajes el TOMCAT...
Entonces,
si me bajo Tomcat, que configuración he de seguir para que funcione y dónde colocar los Servlets y JSP?
Saludos
Tomcat tiene documentación, porque las versiones nuevas yo no las he usado nunca. Hay directorios especiales para eso, por eso tienes que echarle bien un vistazo... Ç:-(
En todo caso estoy preparando la instalación de Tomcat también, así que te puedo ayudar si lo hago... te aviso... :-)
Por si te sirve, la parte importante de la documentación nos dice que:
---
To facilitate creation of a Web Application Archive file in the required format, it is convenient to arrange the "executable" files of your web application (that is, the files that Tomcat actually uses when executing your app) in the same organization as required by the WAR format itself. To do this, you will end up with the following contents in your application's "document root" directory:
*.html, *.jsp, etc. - The HTML and JSP pages, along with other files that must be visible to the client browser (such as JavaScript, stylesheet files, and images) for your application. In larger applications you may choose to divide these files into a subdirectory hierarchy, but for smaller apps, it is generally much simpler to maintain only a single directory for these files.
/WEB-INF/web.xml - The Web Application Deployment Descriptor for your application. This is an XML file describing the servlets and other components that make up your application, along with any initialization parameters and container-managed security constraints that you want the server to enforce for you. This file is discussed in more detail in the following subsection.
/WEB-INF/classes/ - This directory contains any Java class files (and associated resources) required for your application, including both servlet and non-servlet classes, that are not combined into JAR files. If your classes are organized into Java packages, you must reflect this in the directory hierarchy under /WEB-INF/classes/. For example, a Java class named com.mycompany.mypackage.MyServlet would need to be stored in a file named /WEB-INF/classes/com/mycompany/mypackage/MyServlet.class.
/WEB-INF/lib/ - This directory contains JAR files that contain Java class files (and associated resources) required for your application, such as third party class libraries or JDBC drivers.
When you install an application into Tomcat (or any other 2.2/2.3-compatible server), the classes in the WEB-INF/classes/ directory, as well as all classes in JAR files found in the WEB-INF/lib/ directory, are made visible to other classes within your particular web application. Thus, if you include all of the required library classes in one of these places (be sure to check licenses for redistribution rights for any third party libraries you utilize), you will simplify the installation of your web application -- no adjustment to the system class path (or installation of global library files in your server) will be necessary.
Much of this information was extracted from Chapter 9 of the Servlet API Specification, version 2.3, which you should consult for more details.
---
También puedes meterte a tu PC en la dirección http://localhost:8080/ y verás ejemplos y la documentación completa de Tomcat.
Eso te puedo ayudar por ahora... ;-)
Al parecer los Servlets se ponen en las Clases... pero revisa los ejemplos que trae y busca las clases ejemplo... :-)

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas