Pessoal, Bom dia!
Comecei a estudar Spring, mais não estou conseguindo prosseguir porque não aparece nenhum componente no xhtml.
A página abaixo fica totalmente em branco no browser. Alguem sabe o q pode ser?
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<f:view>
<h:form>
<rich:panel header="Olá RichFaces" style="width: 300px" id="teste">
<h:outputText value="Seu nome: " />
<a4j:commandButton value="Dizer oláaaa"
reRender="olaPainel"/>
<h:panelGroup id="olaPainel" layout="block">
</h:panelGroup>
</rich:panel>
</h:form>
</f:view>
</ui:composition>