This article on Spring MVC vs Jersey suggests that Jersey is more geared towards Web services rather serving up HTML pages.
I Like the idea of Jersey and don't want to use a proprietary solution as this link Jersey w/ Spring 3.0? suggests spring uses. In the future I will want to create a RESTful web service however for now I need to create a fairly standard webapp what queries a SOAP service and presents the responses in a web page. I don't want to use JSP or JSF just simple javascript hitting a service for updates
Is there a standard way to serve up web pages in Jersey like some sort of templating engine? Should I be looking at an alternative to Jersey such as Spring MVC or something completely different?