我一直在痛苦并尝试了很多次,以使用教程中的primefaces创建一个非常简单的项目。我已经做了很多,但所有这些都不适合我。
它们都只插入一个依赖项:
<dependencies>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>14.0.1</version>
</dependency>
</dependencies>
即使我注入它,我也无法访问所有教程仅使用 primefaces 依赖项的这 2 个注释,并且它们没有提及任何其他依赖项。
@ManagedBean
@RequestedScope
此外,当我使用这些命名空间创建
.xhtml
时,最后两个:
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:p="http://primefaces.org/ui"
不为我工作。他们显示此错误:
Resource registered by this uri is not recognized (Settings | Languages & Frameworks | Schemas and DTDs)
我做错了什么?这是我的代码:
@ManagedBean
@RequestedScope
public class Beanek {
public void metoda() {
System.out.println("Kliknięto przycisk PrimeFaces!");
}
}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:p="http://primefaces.org/ui">
<h:head>
<title>PrimeFaces Example</title>
</h:head>
<h:body>
<h:form>
<p:commandButton value="Kliknij mnie" actionListener="#{bean.metoda}" />
</h:form>
</h:body>
</html>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>doWydupienia</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>20</maven.compiler.source>
<maven.compiler.target>20</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>14.0.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>19</source>
<target>19</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
您无需执行任何操作,PrimeFaces 为您准备了一个简单的开箱即用示例项目。顺便说一句,
ManagedBean
已经死了,已经很长一段时间了,不再需要它了。 只需使用 CDI 即可。 这是 PrimeFaces 测试项目,可帮助您入门:https://github.com/primefaces/primefaces-test
这里还有一个很棒的 BalusC 教程,用于 JSF 入门:https://balusc.omnifaces.org/2020/04/jsf-23-tutorial-with-eclipse-maven.html