Auto Compiled or precompiled JSP in JBOSS 6 for DEV
Auto Compiled JSP in JBOSS 6
Below tag needs to be added in JBOSS 6 in DEV environment as JBOSS 6 does not come with precompiled JSP feature
/jboss/jboss-eap-6.4/standalone/configuration/local.xyz.xml
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<configuration>
<jsp-configuration development="true" trim-spaces="true" x-powered-by="false"/>
</configuration>
Below tag needs to be added in JBOSS 6 in DEV environment as JBOSS 6 does not come with precompiled JSP feature
/jboss/jboss-eap-6.4/standalone/configuration/local.xyz.xml
<subsystem xmlns="urn:jboss:domain:web:2.2" default-virtual-server="default-host" native="false">
<configuration>
<jsp-configuration development="true" trim-spaces="true" x-powered-by="false"/>
</configuration>
Comments
Post a Comment