There is a RestEasy method, which handles @GET requests. How is it possible to open a jsp/html page from that method?
@GET
@Path("/")
public void getMainPage(){
//...
}
There is a RestEasy method, which handles @GET requests. How is it possible to open a jsp/html page from that method?
@GET
@Path("/")
public void getMainPage(){
//...
}
Using org.jboss.resteasy.resteasy-html version 3.0.6.Final you can directly access the HttpServletRequest and inject your own attributes before directing output to a RESTEasy View.
This emulates some behavior of the Htmleasy plugin without having to rewire your web.xml.