pom.xml Datei"URI ist nicht registriert", wenn die Verwendung http://xmlns.jcp.org/jsf/html“in XHTML-Seite
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.2.0-m08</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.2.0-m08</version>
<scope>provided</scope>
</dependency>
xhtml Datei
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html">
web. xML-Datei
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
Always „http://xmlns.jcp.org/jsf/html“ in roter Farbe dargestellt, und es sagt: „URI ist nicht registriert“. ich muss wissen, warum es sagen so und wie es es repariert. Hat jemand eine Idee?
Ich verwende Intellij IDEA und Maven für Build-Projekt.
Ich habe nicht die beste Lösung gefunden. Ich habe den Code web.xml aus diesem Tutorial verwendet und im Projekt verwendet. Dann, das hat funktioniert www.tutorialspoint.com/jsf/jsf_first_application.html –