我得到了关于glassfish 4.1的项目,但它在以前版本的Richfaces和glassfish上不断提出"unable to find resource JQuery.js"
它的工作率为100%。它现在打破我的菜单等,并有一个恼人的弹出窗口显示错误。
<h:outputScript name="jquery.js"/>
或
<h:outputScript name="jquery.js" target="head"/>
不再有用,有什么建议吗?
还要确保核心包含。 POM:
<dependencies>
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>richfaces</artifactId>
<version>4.5.0.CR1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-core</artifactId>
<version>4.5.0.CR1</version>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
依赖项包括:
sac-1.3
cssparser-0.9.14
guava-18.0
richfaces-4.5.0.CR1
richfaces-core-4.5.0.CR1
richfaces-a4j-4.5.0.CR1
有什么遗失吗?
谢谢。
答案 0 :(得分:9)
使用
<h:outputScript library="org.richfaces" name="jquery.js"/>
你用它做什么用的? JQuery自动包含在RichFaces中。