Sun Java System Web Server 6.1 SP6 Programmer's Guide to Web Applications

JSP by Extension

In Sun Java System Web Server 6.1, JSP by extension works as it did in previous releases. Any file in the document tree that is named as an extension of .jsp will be treated as a JSP as long as the Java is turned on for the virtual server.

Servlet by Extension of Servlet by Directory

This is not supported in Sun Java System Web Server 6.1. You can deploy a web application to respond to a directory, but all of the servlets must be in the WEB-INF/classes directory of the web application. You can no longer copy a servlet in the .class file into the document tree and have it run as a servlet or have all of the contents of a directory run as a servlet. The web application will treat only .class files as servlets.

Registered Servlets

In the legacy servlet system there was a two-step process of registering servlets (servlet.properties) and mapping them to a URL (rules.properties). In Sun Java System Web Server 6.1, the servlets must be moved into a web application, and these settings will be maintained in the web.xml file of that web application.

Example

A registered servlet contains entries in both the servlet.properties and rules.properties files.

The following example uses a servlet file called BuyNow1A.class, which respons to /buynow. It is assumed that the web application is deployed at '/'.

The servlet.properties file has:

servlet.BuyNowServlet.classpath=
D:/Netscape/server4/docs/servlet/buy;D:/Netscape/server4/docs/myclasses
servlet.BuyNowServlet.code=BuyNow1A
servlet.BuyNowServlet.initArgs=arg1=45,arg2=online,arg3="quick shopping"

The rules.properties file has:

/buynow=BuyNowServlet

Those must be translated to a web.xml setting.

The servlet.properties setting will translate into the <servlet> element.

The classpath is automated so there is no classpath setting. All classes to be used must be in the WEB-INF/classes directory or in a .jar file in the WEB-INF/lib directory of the web application.

The servlet-name element is the part between the dots in the servlets.properties file. The code translates to the servlet-class. IntArgs translate to init-params. This entry would translate to:

<servlet>
    <servlet-name> BuyNowServlet </servlet-name>
    <servlet-class> BuyNow1A </servlet-class>
       <init-param>
          <param-name> arg1 </param-name>
          <param-value> 45 </param-value>
       </init-param>
       <init-param>
          <param-name> arg2 </param-name>
          <param-value> online </param-value>
       </init-param>
       <init-param>
          <param-name> arg3 </param-name>
          <param-value> “quick shopping” </param-value>
       </init-param>
</servlet

The rules.properties entries translate to servlet-mapping elements. This entry would translate to.

<servlet-mapping>
    <servlet-name> BuyNowServlet </servlet-name>
    <url-pattern> /buynow </url-pattern>
</servlet-mapping>

Some other entries in the servlets.properties file map to the web.xml file. These include.