@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;
}