我想在Action里面返回403错误,用了如下代码
try{
((HttpServletResponse)this.getRequest()).sendError(403, "权限不够");
}catch(Exception e){
e.printStackTrace();
}
但是报异常了。
用this.getRequest().setStatus(403);也是同样的问题。
有啥好的办法吗?谢谢!
别忘了最后加一句:
renderNull();