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

问题描述 投票:3回答:1

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

有人知道发生了什么吗?

jsf jsf-2 annotations
1个回答
3
投票

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

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

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

如果文件位于其他地方,或者name(或library)实际上是错误的,那么它将生成这个RES_NOT_FOUND URL。

© www.soinside.com 2019 - 2024. All rights reserved.