To set up Struts 1.1 for use in JBuilder, follow these steps:
 
   1. Download Struts 1.1 into a folder in the <jbuilder>/extras folder.
 
   2. Use the Configure Libraries dialog box (Tools|Configure Libraries) to create a new library called Struts 1.1. For information on creating new libraries and frameworks, see "Working with JSP tag libraries and frameworks in JBuilder." Add all the Struts 1.1 libraries in the Struts 1.1 lib folder to your new library.
 
   3. Create your web application, as you normally would, with the Web Application wizard. However, select the Struts 1.1 framework instead of the Struts 1.0 framework.
 
   4. Open the struts-config.xml file in the source editor. Change the DTD definition to point to Struts 1.1 instead of Struts 1.0. Change the following line in the file from:
 
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration
    1.0//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd">
 
      to
 
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration
    1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
 
   5. Save the file.