Hi. I am new to
JSF. I am currently reading the JSF documentation on the Sun website. I have tried to create a default page for all navigation cases, so I did something like this:
For some reason though, no matter what URL I try and reach, I get a 404 error like the following:
If I try and access test.do it gives me a test.jsp (404) not found error.
Does that make sense? Does JSF try and load a file with the same name as call I made, but replaces '.do' with '.jsp'?
If so, how would I achieve the behavior I want with JSF? I have looked (almost) everywhere and it seems like what I have above is the way to do it in JSF, but it doesn't seem to work for me.
I am coming from Spring and
Struts so I am not completely new to MVC frameworks. I also have some knowledge on JSF now, since I have been reading about it, but nothing I have seen so far has given me any indication that I could do what I want, other than the snippet that I provided above.
Thanks in Advance!