jersey 如何重定向

时间:2021-12-05 19:34:43
@GET
@Path("/admin")
public Viewable index()
{
   return new Viewable("/admin/index.jsp",null);
}

默认系统是请求转发到/admin/index.jsp页面。
但是,我想重定向到/admin/index.jsp,请问,

怎么做

感谢。。

3 个解决方案

#1


楼主。百度吧。有的。

#2


恐怕不行的。

#3



@GET
@Path("/admin")
public Viewable index(@Context HttpServletResponse response)
{
    response.sendRedirect("/admin/index.jsp");
    return null;
}

#1


楼主。百度吧。有的。

#2


恐怕不行的。

#3



@GET
@Path("/admin")
public Viewable index(@Context HttpServletResponse response)
{
    response.sendRedirect("/admin/index.jsp");
    return null;
}