Bir Jersey REST yönteminin içinde başka bir web sitesine yönlendirmek istiyorum. Bunu nasıl başarabilirim?Jersey URL yönlendirme
@Path("/")
public class News {
@GET
@Produces(MediaType.TEXT_HTML)
@Path("go/{news_id}")
public String getForwardNews(
@PathParam("news_id") String id) throws Exception {
//how can I make here a forward to "http://somesite.com/news/id" (not redirect)?
return "";
}
}
DÜZENLEME:
böyle bir şey yapmak için çalışırken No thread local value in scope for proxy of class $Proxy78
hatayı alıyorum:
@Context
HttpServletRequest request;
@Context
HttpServletResponse response;
@Context
ServletContext context;
...
RequestDispatcher dispatcher = context.getRequestDispatcher("url");
dispatcher.forward(request, response);
Yönlendirmeyle ilgili değil, bir yönlendirmeyle ilgileniyorum. –
@DorinGrecu, içeriğe nasıl gidilir? – Dewfy
@Derwy Lütfen düzenlenmiş soruma bakın, hemen işe yaramıyor. –