我第一次使用jsf。我的目标是在xhtml模板中使用primeface。作为示例,我尝试显示一个简单的按钮。 xml看起来很像这样:
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns:p="http://primefaces.org/ui" xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://xmlns.jcp.org/jsf/core">
<p:button value="Navigate"/>
</html>
Primefaces这样包含在我的pom.xml
中:
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>7.0</version>
</dependency>
怎么了?为什么素面样式不应用于元素?