I've been using Jersey 1.3 for pure web service purposes but now am trying to take advantage the Jersey MVC with JSF 2.0. However, when I use the explicit view model, I got the following error:
java.io.IOException: The template name, /faces/index.xhtml, could not be resolved to a fully qualified template name.
The path was correct, i.e., I can invoke
http://localhost:8080/faces/index.xhtml directly.
Is there any support to use JSF 2.0 with Jersey? Or do I need to write my own JSFTemplateProcessor?
Thanks.
James Gu