Struts2拦截器
问题:我刚刚学习Struts2,在个人的一个项目中我想将一个文件夹/manager中的文件只让管理员可以访问。而且使得即使输入地址比如http:..../manager/...
问题:我刚刚学习Struts2,在个人的一个项目中我想将一个文件夹/manager中的文件只让管理员可以访问。而且使得即使输入地址比如http:..../manager/show.jsp都不能访问(如果不是管理员)
致谢:谢谢所有回答的网友 展开
致谢:谢谢所有回答的网友 展开
1个回答
展开全部
先把用户登入信息放到session 中
public class DeveloperInterceptor extends AbstractInterceptor {
private static final long serialVersionUID = 5935586112902868946L;
public String intercept(ActionInvocation ai) throws Exception {
ActionContext context=ai.getInvocationContext();
Map session= context.getSession();
TUser user=(TUser)session.get("loginUserInfo");
String role=user.getRole();
if("developer".equals(role)){
return "login";
}else{
return ai.invoke();
}
}
}
struts.xml
<interceptors>
<interceptor name="developer" class="cn.bug.util.DeveloperInterceptor"></interceptor>
</interceptors>
public class DeveloperInterceptor extends AbstractInterceptor {
private static final long serialVersionUID = 5935586112902868946L;
public String intercept(ActionInvocation ai) throws Exception {
ActionContext context=ai.getInvocationContext();
Map session= context.getSession();
TUser user=(TUser)session.get("loginUserInfo");
String role=user.getRole();
if("developer".equals(role)){
return "login";
}else{
return ai.invoke();
}
}
}
struts.xml
<interceptors>
<interceptor name="developer" class="cn.bug.util.DeveloperInterceptor"></interceptor>
</interceptors>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
Jtti
2024-10-10 广告
2024-10-10 广告
JTTI服务器具有以下优点:1. 高效稳定,能够在高并发的情况下稳定地处理请求。2. 易于使用,提供简单易用的API,开发者只需要少量的配置代码即可轻松构建RESTful服务。3. 安全性强,支持HTTPS协议,可以保护数据传输的安全。JT...
点击进入详情页
本回答由Jtti提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询