ResourceDependency批注在UIComponent中不起作用,并在src中生成“RES_NOT_FOUND”错误

时间:2012-09-24 18:38:22

标签: jsf jsf-2 annotations

我正在开发一个使用带有@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 {

有人知道发生了什么吗?

1 个答案:

答案 0 :(得分:3)

此特定注释配置要求文件位于公共webcontent的/resources/file.js中。

与您在视图中使用以下内容完全相同:

<h:outputScript name="file.js" />

如果文件位于其他位置,或name(或library)确实出错,则会生成此RES_NOT_FOUND网址。