Try this, it worked for me:
public String getForwardNews(
@Context final HttpServletRequest request,
@Context final HttpServletResponse response) throws Exception
{
System.out.println("CMSredirecting... ");
response.sendRedirect("YourUrlSite");
return "";
}