Olá pessoal, tenho a seguinte configuração de libs e xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID"
version="3.0">
<display-name>aprendendoJSF</display-name>
<servlet>
<servlet-name>FacesServlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>FacesServlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
</web-app>
Tag Libs:
el-api-2.2.jar
el-impl-2.2.jar
javax.faces.jar
jsf-api-2.2.0-m05.jar
jsf-impl-2.2.0-m05.jar
jstl-1.2.jar
standard-1.1.2.jar
taglib-core-0.4.jar
xhtml:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<h:head>
<title>Hello WOrld!</title>
</h:head>
<h:body>
<h:messages />
<h:form>
<h:outputLabel value="Digite algo: " />
<h:inputText value="#{testeBean.teste}" />
<h:commandButton action="resultadoText.xhtml" value="testar" />
</h:form>
</h:body>
</html>
Se trata de um simples formulário para helloworld, mas as tags como h:inputText simplesmente não renderizam, agradeço desde já vlw.
