Estou com o seguinte problema: estou trabalhando com jsf tenho 2 páginas:
Login e Cadastro:
A página Login tem 2 campos “usuário” e “senha”, quando eu acionar o botão confirmar da página Login eu gostaria que enviasse para a página Cadastro o nome do usuário. Estou mapeando o faces-config.xml mais não está funcionando:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */packagebean;importjava.io.Serializable;/** * * @author amgarcia */publicclassLoginimplementsSerializable{publicStringusuario;publicStringsenha;publicLogin(){}publicLogin(Stringusuario,Stringsenha){this.usuario=usuario;this.senha=senha;}publicStringgetSenha(){returnsenha;}publicvoidsetSenha(Stringsenha){this.senha=senha;}publicStringgetUsuario(){returnusuario;}publicvoidsetUsuario(Stringusuario){this.usuario=usuario;}}
Login.java
/* * Login.java * * Created on 19/06/2008, 14:04:10 * Copyright amgarcia */packageAplicacaoWebForum;importcom.icesoft.faces.component.style.OutputStyle;importcom.icesoft.faces.component.ext.HtmlForm;importcom.sun.rave.web.ui.appbase.AbstractPageBean;importjavax.faces.FacesException;importjavax.faces.component.html.HtmlCommandButton;importjavax.faces.component.html.HtmlInputText;/** * <p>Page bean that corresponds to a similarly named JSP page. This * class contains component definitions (and initialization code) for * all components that you have defined on this page, as well as * lifecycle methods and event handlers where you may add behavior * to respond to incoming events.</p> */publicclassLoginextendsAbstractPageBean{// <editor-fold defaultstate="collapsed" desc="Managed Component Definition">privateint__placeholder;/** * <p>Automatically managed component initialization. <strong>WARNING:</strong> * This method is automatically generated, so any user-specified code inserted * here is subject to being replaced.</p> */privatevoid_init()throwsException{}privateOutputStyleoutputStyle1=newOutputStyle();publicOutputStylegetOutputStyle1(){returnoutputStyle1;}publicvoidsetOutputStyle1(OutputStyleos){this.outputStyle1=os;}privateOutputStyleoutputStyle2=newOutputStyle();publicOutputStylegetOutputStyle2(){returnoutputStyle2;}publicvoidsetOutputStyle2(OutputStyleos){this.outputStyle2=os;}privateHtmlFormhtmlForm1=newHtmlForm();publicHtmlFormgetHtmlForm1(){returnhtmlForm1;}publicvoidsetHtmlForm1(HtmlFormf){this.htmlForm1=f;}privateHtmlInputTextjtfLogin=newHtmlInputText();publicHtmlInputTextgetJtfLogin(){returnjtfLogin;}publicvoidsetJtfLogin(HtmlInputTexthit){this.jtfLogin=hit;}privateHtmlCommandButtonjbtConfirmar=newHtmlCommandButton();publicHtmlCommandButtongetJbtConfirmar(){returnjbtConfirmar;}publicvoidsetJbtConfirmar(HtmlCommandButtonhcb){this.jbtConfirmar=hcb;}privateHtmlInputTextjtfSenha=newHtmlInputText();publicHtmlInputTextgetJtfSenha(){returnjtfSenha;}publicvoidsetJtfSenha(HtmlInputTexthit){this.jtfSenha=hit;}// </editor-fold>/** * <p>Construct a new Page bean instance.</p> */publicLogin(){}/** * <p>Callback method that is called whenever a page is navigated to, * either directly via a URL, or indirectly via page navigation. * Customize this method to acquire resources that will be needed * for event handlers and lifecycle methods, whether or not this * page is performing post back processing.</p> * * <p>Note that, if the current request is a postback, the property * values of the components do <strong>not</strong> represent any * values submitted with this request. Instead, they represent the * property values that were saved for this view when it was rendered.</p> */publicvoidinit(){// Perform initializations inherited from our superclasssuper.init();// Perform application initialization that must complete// *before* managed components are initialized// TODO - add your own initialiation code here// <editor-fold defaultstate="collapsed" desc="Managed Component Initialization">// Initialize automatically managed components// *Note* - this logic should NOT be modifiedtry{_init();}catch(Exceptione){log("Page1 Initialization Failure",e);throweinstanceofFacesException?(FacesException)e:newFacesException(e);}// </editor-fold>// Perform application initialization that must complete// *after* managed components are initialized// TODO - add your own initialization code here}/** * <p>Callback method that is called after the component tree has been * restored, but before any event processing takes place. This method * will <strong>only</strong> be called on a postback request that * is processing a form submit. Customize this method to allocate * resources that will be required in your event handlers.</p> */publicvoidpreprocess(){}/** * <p>Callback method that is called just before rendering takes place. * This method will <strong>only</strong> be called for the page that * will actually be rendered (and not, for example, on a page that * handled a postback and then navigated to a different page). Customize * this method to allocate resources that will be required for rendering * this page.</p> */publicvoidprerender(){}/** * <p>Callback method that is called after rendering is completed for * this request, if <code>init()</code> was called (regardless of whether * or not this was the page that was actually rendered). Customize this * method to release resources acquired in the <code>init()</code>, * <code>preprocess()</code>, or <code>prerender()</code> methods (or * acquired during execution of an event handler).</p> */publicvoiddestroy(){}publicStringjbtConfirmar_action(){bean.LoginvLogin=newbean.Login("adad","12345");return"case1";}}
Logo após vá em faces config e na aba navegation rule
e coloque a pagina e os links, um contendo True e outro link contendo false, o link true ele vai direcionar para a pagina seguinte, ou seja, a pagina de que vem apos usuario correto, o outro vai apara um pagina de erro ou retorna para ele mesmo com alguma menssagem do tipo, senha ou usuario invalido.
pega o valor do campo inputtext e coloca na outra pagania como um outputtext vc entendeu???