struts2 拦截器能拦截页面吗?
2个回答
展开全部
可以用来控制用户对页面的访问权限。比如登录后才能访问系统的页面,可以像这样实现:
1.要在struts.xml文件中添加下面的代码:
<package name="struts2" extends="struts-default">
<!--自定义拦截器(没有登录的就返回到login)-->
<interceptors>
<interceptor name="sessionNull" class="com.hoperun.action.SessionNullInterceptor">
</interceptor>
</interceptors>
<global-results>
<result name="login" type="redirect">/sessionValid.jsp</result>
</global-results>
还要在具体action的跳转配置中添加下面代码:
<action name="orderSearch" class="com.hoperun.action.OrderSearchAction">
<result name="success" >/orderSearch.jsp</result>
<interceptor-ref name="sessionNull"></interceptor-ref>
<interceptor-ref name="defaultStack"/>
</action>
如果不加上面蓝色的部分,页面域中的值就不能带到下个页面,因为定义了自己的拦截器,系统传值的拦截器就失效了,所以加上这条系统默认的拦截器就生效了
2.下面是SessionNullInterceptor的拦截器具体代码:
package com.hoperun.action;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.Interceptor;
/**
* session为空拦截器
*/
public class SessionNullInterceptor implements Interceptor {
private static final long serialVersionUID = 1L;
public void destroy() {
}
public void init() {
}
public String intercept(ActionInvocation invocation) throws Exception {
HttpServletRequest req = ServletActionContext.getRequest();
if (req.getSession().getAttribute("username") == null) {
return Action.LOGIN;
} else {
return invocation.invoke();
}
}
}
3,对了还不能忘记在login.acton中添加如下代码:
if(result==true)
{
Map<String,String> map = ActionContext.getContext().getSession();
map.put("username",username);
return SUCCESS;
}
这样如果你没有充login.jsp登录进来而直接去访问系统的其他页面时,就不能查看你想看的页面,而是会自动跳转到sessionValid.jsp页面去
1.要在struts.xml文件中添加下面的代码:
<package name="struts2" extends="struts-default">
<!--自定义拦截器(没有登录的就返回到login)-->
<interceptors>
<interceptor name="sessionNull" class="com.hoperun.action.SessionNullInterceptor">
</interceptor>
</interceptors>
<global-results>
<result name="login" type="redirect">/sessionValid.jsp</result>
</global-results>
还要在具体action的跳转配置中添加下面代码:
<action name="orderSearch" class="com.hoperun.action.OrderSearchAction">
<result name="success" >/orderSearch.jsp</result>
<interceptor-ref name="sessionNull"></interceptor-ref>
<interceptor-ref name="defaultStack"/>
</action>
如果不加上面蓝色的部分,页面域中的值就不能带到下个页面,因为定义了自己的拦截器,系统传值的拦截器就失效了,所以加上这条系统默认的拦截器就生效了
2.下面是SessionNullInterceptor的拦截器具体代码:
package com.hoperun.action;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.Interceptor;
/**
* session为空拦截器
*/
public class SessionNullInterceptor implements Interceptor {
private static final long serialVersionUID = 1L;
public void destroy() {
}
public void init() {
}
public String intercept(ActionInvocation invocation) throws Exception {
HttpServletRequest req = ServletActionContext.getRequest();
if (req.getSession().getAttribute("username") == null) {
return Action.LOGIN;
} else {
return invocation.invoke();
}
}
}
3,对了还不能忘记在login.acton中添加如下代码:
if(result==true)
{
Map<String,String> map = ActionContext.getContext().getSession();
map.put("username",username);
return SUCCESS;
}
这样如果你没有充login.jsp登录进来而直接去访问系统的其他页面时,就不能查看你想看的页面,而是会自动跳转到sessionValid.jsp页面去
Storm代理
2023-07-25 广告
2023-07-25 广告
StormProxies是一家国内优质海外HTTP代理商,拥有一个庞大的IP资源池,覆盖200多个地区,IP数量大且匿名度高。其优点还包括超高并发、稳定高效、技术服务等特点,同时提供HTTP、HTTPS以及SOCKS5协议支持。此外,Sto...
点击进入详情页
本回答由Storm代理提供
推荐于2016-06-23
展开全部
struts2拦截器可以拦截页面;
所有请求都可以使用Filter来过滤,只需要在filter-mapping里做对应设置就可以了;
在配置struts的时候都只是把.action有交由struts去处理,如果想把的jsp.....全都交由strust去处理的话, 可以在web.xml中配置成;
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
建议,jsp由filter来处理,struts处理.action
所有请求都可以使用Filter来过滤,只需要在filter-mapping里做对应设置就可以了;
在配置struts的时候都只是把.action有交由struts去处理,如果想把的jsp.....全都交由strust去处理的话, 可以在web.xml中配置成;
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
建议,jsp由filter来处理,struts处理.action
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询