Oracle ADF 报错报错:BEA-160187

来源:互联网 发布:淘宝店铺怎么免费推广 编辑:程序博客网 时间:2024/05/30 22:43

BEA-160187;weblogic.appc failed to compile the application. Recompile with the -verbose option for more details about the issue

web.xml最下方添加以下代码:
<!--
* WORK AROUND
* randomly, when editing files, compilation fails with an illegal argument exception
* java.lang.IllegalArgumentException: The file <file name> .jsff is not a source file
* To avoid this error, which initially has been reported as bug 12732652 for Facelets
* I added the jsp-property-group entry below
-->
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsff</url-pattern>
<is-xml>true</is-xml>
</jsp-property-group>
</jsp-config>
<!--
* END WORK AROUND
-->