sto seguendo il Java EE firstcup esercitazione usando Netbeans e Glassfish.tag JSF non essere resi come HTML
Quando eseguo il livello Web JSF a cui sono stato assegnato il codice, il browser ottiene lo stesso codice JSF codificato nel file .xhtml e i tag non vengono visualizzati come tag HTML. Lo so usando il codice sorgente nel mio browser.
Ad esempio, per questo codice:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<title>Page title here</title>
</h:head>
<h:body>
<h2>
<h:outputText value="#{bundle.WelcomeMessage}" />
</h2>
</h:body>
</html>
Il browser dovrebbe ottenere qualcosa di simile:
<html ...>
<head>
<title>Page title here</title>
</head>
<body>
<h2>
the welcome message goes here
</h2>
</body>
</html>
Destra?
Bene, il mio browser sta ricevendo il codice jsf (il primo pezzo di codice sopra) e non il codice html (il secondo pezzo di codice sopra).
Sembra essere un problema di configurazione in netbeans o glassfish ma non so cosa. Qualche idea?
Questo è il mio file web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<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>/firstcup/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>greetings.xhtml</welcome-file>
</welcome-file-list>
</web-app>
Questo è il mio file faces-config.xml:
<?xml version='1.0' encoding='UTF-8'?>
<!-- =========== FULL CONFIGURATION FILE ================================== -->
<faces-config version="2.0"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd">
<application>
<resource-bundle>
<base-name>firstcup.web.WebMessages</base-name>
<var>bundle</var>
</resource-bundle>
<locale-config>
<default-locale>en</default-locale>
<supported-locale>es</supported-locale>
</locale-config>
</application>
<navigation-rule>
<from-view-id>/greetings.xhtml</from-view-id>
<navigation-case>
<from-outcome>success</from-outcome>
<to-view-id>/response.xhtml</to-view-id>
</navigation-case>
</navigation-rule>
</faces-config>
Inoltre:
- L'url I ' m entrare nel browser è http://localhost:8081/firstcup/ ma ho anche provato: http://localhost:8081/firstcup/greetings.xhtml
- Ho controllato i registri Glassfish e non c'è alcuna informazione di non essere in grado di caricare FacesServlet
Dispari. Hai detto di aver provato 'http: // localhost: 8081/firstcup/greetings.xhtml'. Questo avrebbe dovuto funzionare anche senza un file di benvenuto. Almeno, la causa principale del problema è che la richiesta era ** non ** stata passata attraverso 'FacesServlet'. – BalusC