Struts2拦截器权限验证(源码)!

简介:

 长话短说,抛砖引玉,举个很简单的例子,通过Session,验证用户是否已登陆。

环境:MyEclipse6.5+Mysql5+struts2.0.11.2

源码:拦截器类:

AuthInterceptor.java

 

Code

 

 

验证用户登陆后的Action类,负责向Session中插入值。

AdminAction.java

 

复制代码
package  com.sy.action;

import  java.util.List;
import  java.util.Map;

import  com.opensymphony.xwork2.ActionContext;
import  com.opensymphony.xwork2.ActionSupport;
import  com.sy.dao.AdminDao;
import  com.sy.dao.NewsDao;
import  com.sy.dao.impl.AdminDaoImpl;
import  com.sy.dao.impl.NewsDaoImpl;
import  com.sy.vo.Admin;
import  com.sy.vo.News;

public   class  AdminAction  extends  ActionSupport {

    
private   static   final   long  serialVersionUID  =   - 3699334709726488611L ;
    
int  i = 1 ; // 中间变量
     private   int  k; // 储存最大页面数
     private   int  pageNow = 1 // 页码数,初始为1
     private   int  pageSize  =   8  ;  // 页面行数 
     private   int  intRowCount; // 总行数
     private   int  intPageCount; // 总页数
     private  List < News >  Newss;
    
private  Admin admin;
    
public  List < News >  getNewss() {
        
return  Newss;
    }
    
public   void  setNewss(List < News >  newss) {
        Newss 
=  newss;
    }
    
public  Admin getAdmin() {
        
return  admin;
    }
    
public   void  setAdmin(Admin admin) {
        
this .admin  =  admin;
    }
    
public   int  getPageNow() {
        
return  pageNow;
    }
    
public   void  setPageNow( int  pageNow) {
        
this .pageNow  =  pageNow;
    }
    
public   int  getPageSize() {
        
return  pageSize;
    }
    
public   void  setPageSize( int  pageSize) {
        
this .pageSize  =  pageSize;
    }
    
public   int  getK() {
        
return  k;
    }
    
public   void  setK( int  k) {
        
this .k  =  k;
    }
    
public   int  getIntRowCount() {
        
return  intRowCount;
    }
    
public   void  setIntRowCount( int  intRowCount) {
        
this .intRowCount  =  intRowCount;
    }
    
public   int  getIntPageCount() {
        
return  intPageCount;
    }
    
public   void  setIntPageCount( int  intPageCount) {
        
this .intPageCount  =  intPageCount;
    }
    @SuppressWarnings(
" unchecked " )
    
public  String execute()  throws  Exception {
        
        AdminDao adi
= new  AdminDaoImpl();
        admin.getAname();
        admin.getApassword();
        
if (adi.isLogin(admin)){
            
            Map map
= ActionContext.getContext().getSession(); // 插入Session的值
            map.put( " user " , admin.getAname());
            
            NewsDao npage
= new  NewsDaoImpl();
            intRowCount
= npage.count();
            k
= (intRowCount  +  pageSize  -   1 /  pageSize;
            intPageCount 
=  (intRowCount  +  pageSize  -   1 /  pageSize; // 计算出总页数
             if (pageNow < 1 ){
                pageNow
= 1 ;
            }
            
            
if (pageNow  >  intPageCount)
                 pageNow
= intPageCount;
                 i 
=  (pageNow  - 1 ) * pageSize;
            NewsDao nlist
= new  NewsDaoImpl();
            
if ( null != nlist.queryByPage(i,pageSize)){
            Newss 
=  nlist.queryByPage(i,pageSize);
            
            
return  SUCCESS;
            }
else {
                
return   " failure " ;
            }
                }
else
                    
return   " failure " ;
        }
    }
复制代码

 

 struts.xml

 

复制代码
<? xml version = " 1.0 "  encoding = " UTF-8 " ?>
<! DOCTYPE struts PUBLIC 
    
" -//Apache Software Foundation//DTD Struts Configuration 2.0//EN "  
    
" http://struts.apache.org/dtds/struts-2.0.dtd " >
< struts >
    
< package  name = " News "   extends = " struts-default " >

    
< interceptors >

    
< interceptor - stack name = " myStack " >
                
< interceptor - ref name = " defaultStack " ></ interceptor - ref >
                
< interceptor - ref name = " auth " ></ interceptor - ref >
    
</ interceptor - stack >
    
    
< interceptor name = " auth "   class = " com.sy.interceptor.AuthInterceptor " />
    
</ interceptors >

    
< global - results >
        
< result name = " login "  type = " redirect " >/ admin / login.jsp </ result >
    
</ global - results >
<!--  验证管理员登陆  -->
        
< action name = " login "   class = " com.sy.action.AdminAction " >
            
< result name = " failure " >/ admin / failure.jsp </ result >
            
< result >/ admin / ManageNews.jsp </ result >
            
< result name = " input " >/ admin / login.jsp </ result >
        
</ action >
<!--  管理员列表  -->         
        
< action name = " alist "   class = " com.sy.action.ListAction "  method = " adminList " >
            
< result >/ admin / deleteManager.jsp </ result >
            
< result name = " failure " >/ admin / Showfailure.jsp </ result >
            
< interceptor - ref name = " myStack " ></ interceptor - ref >
        
</ action >
    
</ package >
</ struts >
复制代码

 

 配置完成!!!


本文转自施杨博客园博客,原文链接:http://www.cnblogs.com/shiyangxt/archive/2008/10/24/1318673.html,如需转载请自行联系原作者

相关文章
SpringMVC自定义注解验证登陆拦截
这里业务场景需要,所有的请求都需要登录验证。个别通用业务不需要登录拦截。注解方式替代原有的if判断。
118 0
SpringMVC自定义注解验证登陆拦截
|
前端开发 Java Spring
《Spring MVC》 第八章 拦截器实现权限验证、异常处理
《Spring MVC》 第八章 拦截器实现权限验证、异常处理
231 0
|
前端开发 Java 数据安全/隐私保护
SpringMVC拦截器实现登录权限控制
SpringMVC的处理器拦截器,类似于Servlet开发中的过滤器Filter,用于对处理器进行预处理和后处理。 依赖于web框架,在实现上基于Java的反射机制,属于面向切面编程(AOP)的一种运用。由于拦截器是基于 web框架的调用,因此可以使用Spring的依赖注入(DI)进行一些业务操作,同时一个拦截器实例在一个 controller生命周期之内可以多次调用。
|
Java 数据安全/隐私保护 容器
Struts2拦截器的简单应用,登录权限拦截器及与过滤器的区别(八)下
Struts2拦截器的简单应用,登录权限拦截器及与过滤器的区别(八)
166 0
Struts2拦截器的简单应用,登录权限拦截器及与过滤器的区别(八)下
Struts2拦截器的简单应用,登录权限拦截器及与过滤器的区别(八)上
Struts2拦截器的简单应用,登录权限拦截器及与过滤器的区别(八)
153 0
Struts2拦截器的简单应用,登录权限拦截器及与过滤器的区别(八)上
shiro加入拦截器注意事项
shiro加入拦截器注意事项
129 0
shiro加入拦截器注意事项
|
前端开发 Java Spring
springMVC使用拦截器检查用户登录
参考文章 编写拦截器类 package cultivate_web.interceptor; import javax.servlet.http.HttpServletRequest; import javax.
1253 0
|
XML 数据格式