hi siva, without further details i can just point you e.g. to [1].
regards, gerhard [1] https://github.com/os890/ee6-ds-demo 2016-05-02 22:22 GMT+02:00 Lankada, Siva <[email protected]>: > Hi Gerhard, > > Thank you for the quick reply, I have the configuration but still > my view is not recognizing, is something issue with jar version. Thanks > > Regards, > Siva Kumar. > > -----Original Message----- > From: Gerhard Petracek [mailto:[email protected]] > Sent: Monday, May 02, 2016 4:08 PM > To: [email protected] > Subject: Re: DeltaSpike Type Safe Navigation Issue > > hi siva, > > please ensure that you are using <url-pattern>*.xhtml</url-pattern> for > the servlet-mapping (of your FacesServlet). > > regards, > gerhard > > > > 2016-05-02 21:51 GMT+02:00 Lankada, Siva <[email protected]>: > > > Hi Team, > > I am newbie to deltaspike, implementing Type safe > > navigation with JSF 2.0, deltaspike version 1.6.0 and websphere 8.5.5.9 . > > For some reason my type safe navigation ( means the view page is not > > identifying). Could you please help and let me know if any external > > configurations required. > > > > Find the below sample code which I am struggling > > > > ERROR I am facing is > > No navigation case match for viewId /login.xhtml, action > > #{testbean.index} and outcome class com.test.Pages$Index > > > > Login.xhtml > > > > <h:form> > > <h:messages globalOnly="true"/> > > <h:commandButton value="kkk" action="#{testbean.index}"/> </h:form> > > > > /////////////////////// > > > > @Model > > @Named("testbean") > > public class TestBean implements Serializable{ > > > > public Class<? extends Pages> index() { > > System.out.println("Inside index"); > > return Pages.Index.class; > > } > > } > > > > ////////// > > > > @Folder(name = "/") > > @View(navigation = NavigationMode.REDIRECT) public interface Pages > > extends ViewConfig { > > > > class Index implements Pages {} > > > > } > > > > /////////////// > > Index.xhtml > > > > <h:body> > > Welcome to Index > > </h:body> > > > > > > Thanks in Advance, > > Siva Kumar > > > > Florida Blue is a trade name of Blue Cross and Blue Shield of Florida, > > Inc. Blue Cross and Blue Shield of Florida, Inc., and its subsidiary > > and affiliate companies are not responsible for errors or omissions in > > this e-mail message. Any personal comments made in this e-mail do not > > reflect the views of Blue Cross and Blue Shield of Florida, Inc. The > > information contained in this document may be confidential and > > intended solely for the use of the individual or entity to whom it is > > addressed. This document may contain material that is privileged or > > protected from disclosure under applicable law. If you are not the > > intended recipient or the individual responsible for delivering to the > > intended recipient, please (1) be advised that any use, dissemination, > > forwarding, or copying of this document IS STRICTLY PROHIBITED; and > > (2) notify sender immediately by telephone and destroy the document. > THANK YOU. > > >
