gpt4 book ai didi

jsf - 警告 : This page calls for XML namespace http://primefaces. prime.com.tr/ui 用前缀 p 声明,但该命名空间不存在标签库

转载 作者:行者123 更新时间:2023-12-04 23:00:32 26 4
gpt4 key购买 nike

我正在尝试从 Primefaces 2.2.1 开始,但我不能。我在 pom.xml 中有以下定义:

<repository>  
<id>prime-repo</id>
<name>PrimeFaces Maven Repository</name>
<url>http://repository.primefaces.org</url>
<layout>default</layout>
</repository>

<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>2.2.1</version>
</dependency>

但我收到以下错误消息:

Warning: This page calls for XML namespace http://primefaces.prime.com.tr/ui declared with prefix p but no taglibrary exists for that namespace.



用这个简单的代码:
<?xml version='1.0' encoding='UTF-8' ?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.prime.com.tr/ui">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
Hello from Facelets
<p:editor />
</h:body>
</html>

最佳答案

包括标签库为:

xmlns:p="http://primefaces.org/ui"

而 pom.xml 中的依赖为:
         <dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>3.0.M4</version>
</dependency>

我也面临同样的问题。这个解决方案解决了我的问题。

关于jsf - 警告 : This page calls for XML namespace http://primefaces. prime.com.tr/ui 用前缀 p 声明,但该命名空间不存在标签库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7565431/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com