Using the text version of Java EE, how to create addressable web pages using Java Server Faces (JSF). That is, by creating JSF pages containing a clean URL , so can a face page with id 1234 be http://www.example.com/person/1234? It is clear enough to me how to serve a clean URL using the Java API for RESTful web services (JAX-RS) , but not how to do this therefore for a JSF page or how to combine the two.
Previous Question I found the suggestion that this is actually impossible to do. Is this really so?
source
share