我正在开发一个使用带有@ResourceDependency批注的javascript文件的UIComponent,但它不是生成文件的链接,而是在src属性中打印“RES_NOT_FOUND”,如下所示:
<script type="text/javascript" src="RES_NOT_FOUND"></script>
遵循java代码:
@ResourceDependency(name="file.js")
public class ComponenteTest extends UIComponentBase {
有人知道发生了什么吗?
答案 0 :(得分:3)
此特定注释配置要求文件位于公共webcontent的/resources/file.js
中。
与您在视图中使用以下内容完全相同:
<h:outputScript name="file.js" />
如果文件位于其他位置,或name
(或library
)确实出错,则会生成此RES_NOT_FOUND
网址。