put general catch statement in constructor. The D2DViewHandler is loaded when icefaces loads (not dependent on whether the facelets or jsp version of the app is being deployed). For this reason, need to catch the errors of classNotFoundException when the jsp tags are not found for jsf1.2 impl.
public D2DViewHandler() {
try
{
InputStream inputStream = this.getClass().getResourceAsStream("serializedTagToComponentMapFull.ser");
parser = new Parser(inputStream);
}
catch (IOException e)
{
throw new RuntimeException(e);
}
catch (Throwable te)
{
log.info("Parsing of jsp tags unavailable->can only use facelets & jsf1.2 impl on J2EE AS as missing class="+te);
}
}
Now can deploy jsf1.2 impl apps on Tomcat5.5 or jboss4.0.5, etc. (as long as facelets is used). Make sure to use same dependencies for each server and just substitute the jsf jars (replace 1.1 impl with those of 1.2 impl).
put general catch statement in constructor. The D2DViewHandler is loaded when icefaces loads (not dependent on whether the facelets or jsp version of the app is being deployed). For this reason, need to catch the errors of classNotFoundException when the jsp tags are not found for jsf1.2 impl.
{ InputStream inputStream = this.getClass().getResourceAsStream("serializedTagToComponentMapFull.ser"); parser = new Parser(inputStream); }public D2DViewHandler() {
try
catch (IOException e)
{ throw new RuntimeException(e); }catch (Throwable te)
{ log.info("Parsing of jsp tags unavailable->can only use facelets & jsf1.2 impl on J2EE AS as missing class="+te); }}
Now can deploy jsf1.2 impl apps on Tomcat5.5 or jboss4.0.5, etc. (as long as facelets is used). Make sure to use same dependencies for each server and just substitute the jsf jars (replace 1.1 impl with those of 1.2 impl).