I also wanted to point out that I am not using any 1.5 syntax, just compiling 
with the following in the web.xml:

   
      <servlet-name>jsp</servlet-name>
      <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
      
      <init-param>
        <param-name>compiler</param-name>
        <param-value>modern</param-value>
      </init-param>
      
      <init-param>
         <param-name>fork</param-name>
         <param-value>true</param-value>
      </init-param>
      <init-param>
         <param-name>xpoweredBy</param-name>
         <param-value>false</param-value>
      </init-param>


      <!-- Uncomment to use jdk1.5 features in jsp pages -->
      <init-param>
         <param-name>compilerSourceVM</param-name>
         <param-value>1.5</param-value>
      </init-param>

      <init-param>
         <param-name>compilerTargetVM</param-name>
         <param-value>1.5</param-value>
      </init-param>


      <!-- Use a custom options class to allow the shared tag lib descriptors
       to be loaded from jars in the tomcat sar conf/tlds directory. The
       standard options implementation can only find taglibs based on the
       class loader classpath.
      -->
      <init-param>
         <param-name>engineOptionsClass</param-name>
               
<param-value>org.jboss.web.tomcat.tc5.jasper.JspServletOptions</param-value>
      </init-param>
      <!-- Specify the jars relative to the jbossweb-tomcat55.sar that should
        be scanned for common tag lib descriptors to include in every war
        deployment.
      -->
      <init-param>
         MyFaces tlds
         <param-name>tagLibJar0</param-name>
         <param-value>jsf-libs/myfaces-impl.jar</param-value>
      </init-param>

      <load-on-startup>3</load-on-startup>
   

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952385#3952385

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952385


_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to