Bom dia pessoal
Estou com um problema ao utilizar Spring security 3 + facelets na página de login de uma aplicação.
Quando uso o seguinte código o spring reconhece os campos usuário e senha.
Quando uso o código com facelets ele não reconhece. (Segue código no final do post)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.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"
xmlns:p="http://primefaces.org/ui">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="cache-control" content="no-cache" />
</h:head>
<h:body >
<p:dialog header="Login" visible="true" closable="false" draggable="false" resizable="false" width="420">
<form action="j_spring_security_check" method="post">
<h:panelGrid columns="2" cellpadding="5">
<h:outputLabel for="j_username" value="Username: *" />
<h:inputText id="j_username" required="true"/>
<h:outputLabel for="j_password" value="Password: * " />
<h:inputSecret id="j_password" required="true"/>
<h:commandButton value="Login"/>
</h:panelGrid>
</form>
</p:dialog>
</h:body>
</html>
Quando utilizo esse código o spring não autentica minha sessão.
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui" template="template/layout.xhtml">
<meta http-equiv="X-UA-Compatible" />
<meta content='text/html; charset=UTF-8' http-equiv="Content-Type" />
<meta http-equiv="Pragma" content="0" />
<ui:define name="menu" />
<ui:define name="content">
<h:panelGroup id="content_area" />
<p:growl autoUpdate="true" showDetail="true" />
<p:dialog id="loginDialog" widgetVar="loginDialog" header="Login"
visible="true" closable="false" draggable="true" resizable="false"
modal="true" appendToBody="true" showEffect="fade" hideEffect="fade"
width="320" style="font-size: 14px !important">
<h:form id="loginForm" prependId="false">
<br />
<h:panelGrid columns="2" style="margin: auto !important">
<h:outputLabel value="Usuário:" />
<h:inputText id="j_username" required="true"
requiredMessage="Entre com seu usuário" />
<h:outputLabel value="Senha:" />
<h:inputSecret id="j_password" required="true"
requiredMessage="Entre com sua senha" />
</h:panelGrid>
<br />
<p:commandButton value="Logar" action="/j_spring_security_check"
style="float:right; font-size: 14px !important"
update=":loginDialog"/>
<br />
</h:form>
</p:dialog>
</ui:define>
</ui:composition>
Alguém pode me ajudar por favor?
Obrigado