Weblogic81下怎么使用Myfaces(tomahawk for JSF 1.1)
tomahawk for JSF 1.1在Tomcat5.5下是ok的
可是同样的source发布到Weblogic81下时,就报错了,错误信息如下:
/test.jsp(5): Error in using tag library uri='http://myfaces.apache.org/tomahawk' prefix='t': type mismatch for property 'expandRoot', for Tag class 'org.apache.myfaces.custom.tree.taglib.TreeTag': tld says java.lang.String, implementation type is boolean
probably occurred due to an error in /test.jsp line 5:
<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
从错误来看应该是TLD中定义的类型与实现中的类型不匹配,我查看过TLD文件确实如此,怀疑是WebLogic81对这种validate非常严格,我又发布到Weblogic92上是ok的,可目前我又必须使用Weblogic81
大家有没有人遇到这个问题,有什么解决方案没?