DWR拦截器

本文介绍了一个基于DWR (Direct Web Remoting) 的Servlet配置示例,并展示了如何通过自定义Remoter类进行会话检查及权限验证。具体包括了web.xml中DWR Servlet的配置参数设置,如开启调试模式、指定Remoter实现类等。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 web.xml

 

<servlet>
        <servlet-name>dwr</servlet-name>
        <!-- org.directwebremoting.spring.DwrSpringServlet -->
        <servlet-class>           
            org.directwebremoting.servlet.DwrServlet
        </servlet-class>
        <init-param>
            <param-name>debug</param-name>
            <param-value>true</param-value>
            <!--开发时设为true,生产时设为false-->
        </init-param>
        <init-param>
            <param-name>
                org.directwebremoting.extend.Remoter
            </param-name>
            <param-value>filters.AuthorityDWRRemoter</param-value>
        </init-param>
        <init-param>
            <param-name>activeReverseAjaxEnabled</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>crossDomainSessionSecurity</param-name>

            <param-value>false</param-value>
        </init-param>
        <init-param>
            <param-name>exposeInternals</param-name>
            <param-value>true</param-value>
        </init-param>   
        <init-param> 
            <param-name>scriptCompressed</param-name> 
            <param-value>true</param-value> 
        </init-param>

       <load-on-startup>1</load-on-startup>
    </servlet>

 

处理类:

 

public class AuthorityDWRRemoter extends DefaultRemoter{

        public Replies execute( Calls calls )
        {
            HttpSession session = WebContextFactory.get().getSession();
            GlobalInput mGlobalInput=(GlobalInput) session.getAttribute("GI");

            //session检查
            if(mGlobalInput==null){
                    logOut();
                    return super.execute( new Calls() );
            }
            return super.execute( calls );
        }

        private void logOut()
        {
            WebContext wct = WebContextFactory.get();
            Util utilThis = new Util(wct.getScriptSession());
            utilThis.addScript( new ScriptBuffer("_DWRLogout()"));
        }
    }

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值