私はまったくの初心者で、eclipse kepler を使用して Web アプリケーションを作成しています: 教育ポータルで、glassfish4 サーバー (その動作) とプロジェクトのプロパティを既に設定しています。jsf 2.2 と共に Primefaces を使用しています。最初のページを作成し、サーバーで実行しようとしましたが、何も表示されず、404 エラーが表示されました。要求されたリソースは利用できません。そして、私はすでにprimefaces jarをクラスパスに追加しました。これはページindex.htmlのコードです
<!DOCTYPE html>
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
>
<head>
</head>
<f:view contentType="text/html">
<h:head />
<h:body>
<h:form>
<p:spinner />
</h:form>
</h:body>
</f:view>
</html>
これは私のweb.xmlのコードです
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1"
xmlns:p="http://primefaces.org/ui">
<display-name>Portail</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<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>*.html</url-pattern>
</servlet-mapping>
</web-app>
この記事のいくつかの手順に従って、http://computingat40s.wordpress.com/creating-a-simple-jsf-web-application-from-the-ground/を作成しました が、lib ディレクトリはまだ空で、何も追加していません。それに、エンティティの作成も開始していませんでした