锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲丁香久久久,国产日本欧美一区二区三区在线,在线成年人视频http://www.aygfsteel.com/huyi0616/category/28656.htmlzh-cnFri, 30 Apr 2010 15:25:06 GMTFri, 30 Apr 2010 15:25:06 GMT60Spring in Action 瀛︿範絎旇鈥旂浜旂珷 浜嬪姟綆$悊http://www.aygfsteel.com/huyi0616/archive/2010/04/27/319479.html涓鏉竻鑼?/dc:creator>涓鏉竻鑼?/author>Tue, 27 Apr 2010 06:24:00 GMThttp://www.aygfsteel.com/huyi0616/archive/2010/04/27/319479.htmlhttp://www.aygfsteel.com/huyi0616/comments/319479.htmlhttp://www.aygfsteel.com/huyi0616/archive/2010/04/27/319479.html#Feedback0http://www.aygfsteel.com/huyi0616/comments/commentRss/319479.htmlhttp://www.aygfsteel.com/huyi0616/services/trackbacks/319479.html闃呰鍏ㄦ枃

]]>
Spring浜嬪姟閰嶇疆鐨勪簲縐嶆柟寮?/title><link>http://www.aygfsteel.com/huyi0616/archive/2010/04/27/319478.html</link><dc:creator>涓鏉竻鑼?/dc:creator><author>涓鏉竻鑼?/author><pubDate>Tue, 27 Apr 2010 06:19:00 GMT</pubDate><guid>http://www.aygfsteel.com/huyi0616/archive/2010/04/27/319478.html</guid><wfw:comment>http://www.aygfsteel.com/huyi0616/comments/319478.html</wfw:comment><comments>http://www.aygfsteel.com/huyi0616/archive/2010/04/27/319478.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/huyi0616/comments/commentRss/319478.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/huyi0616/services/trackbacks/319478.html</trackback:ping><description><![CDATA[     鎽樿: 杞嚜錛歨ttp://www.aygfsteel.com/robbie/archive/2009/04/05/264003.html         鍓嶆鏃墮棿瀵筍pring鐨勪簨鍔¢厤緗仛浜嗘瘮杈冩繁鍏ョ殑鐮旂┒錛屽湪姝や箣闂村Spring鐨勪簨鍔¢厤緗櫧璇翠篃閰嶇疆榪囷紝浣嗘槸涓鐩存病鏈変竴涓竻妤氱殑璁よ瘑銆傞氳繃榪欐鐨勫涔犲彂瑙塖pring鐨勪簨鍔¢厤緗彧...  <a href='http://www.aygfsteel.com/huyi0616/archive/2010/04/27/319478.html'>闃呰鍏ㄦ枃</a><img src ="http://www.aygfsteel.com/huyi0616/aggbug/319478.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/huyi0616/" target="_blank">涓鏉竻鑼?/a> 2010-04-27 14:19 <a href="http://www.aygfsteel.com/huyi0616/archive/2010/04/27/319478.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>Spring鎷︽埅鍣ㄦ潵鎺у埗URL璺緞鐨勮漿鍙?http://www.aygfsteel.com/huyi0616/archive/2009/10/27/299867.html涓鏉竻鑼?/dc:creator>涓鏉竻鑼?/author>Tue, 27 Oct 2009 01:22:00 GMThttp://www.aygfsteel.com/huyi0616/archive/2009/10/27/299867.htmlhttp://www.aygfsteel.com/huyi0616/comments/299867.htmlhttp://www.aygfsteel.com/huyi0616/archive/2009/10/27/299867.html#Feedback0http://www.aygfsteel.com/huyi0616/comments/commentRss/299867.htmlhttp://www.aygfsteel.com/huyi0616/services/trackbacks/299867.html 
struts鐨勪唬鐮?nbsp;
  1. import javax.servlet.http.HttpServletRequest;   
  2. import org.aopalliance.intercept.MethodInterceptor;   
  3. import org.aopalliance.intercept.MethodInvocation;   
  4. import org.apache.struts.action.ActionMapping;   
  5.   
  6. /**  
  7.  * 榪欐槸涓涓嫤鎴櫒,鐢ㄦ潵楠岃瘉鐢ㄦ埛鏄惁閫氳繃楠岃瘉  
  8.  *  
  9.  */  
  10. public class AuthorityInterceptor implements MethodInterceptor {   
  11.   
  12.     public Object invoke(MethodInvocation invocation) throws Throwable   
  13.     {   
  14.         HttpServletRequest request = null;   
  15.         ActionMapping mapping = null;   
  16.         Object[] args = invocation.getArguments();   
  17.         for (int i = 0 ; i < args.length ; i++ )   
  18.         {   
  19.             if (args[i] instanceof HttpServletRequest) request = (HttpServletRequest)args[i];   
  20.             if (args[i] instanceof ActionMapping) mapping = (ActionMapping)args[i];   
  21.         }   
  22.         if ( request.getSession().getAttribute("adminname") != null)   
  23.         {   
  24.             return invocation.proceed();   
  25.         }   
  26.         else  
  27.         {   
  28.             return mapping.findForward("login");   
  29.         }   
  30.     }   
  31. }  


閰嶇疆鏂囦歡:
Java浠g爜
  1.    <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">   
  2.     <property name="beanNames">   
  3.            <list>   
  4.               <value>/vaiiduser</value>   
  5.                <value>/admin</value>   
  6.               <value>/phone</value>   
  7.            </list>   
  8.     </property>   
  9.        <property name="interceptorNames">   
  10.            <list>   
  11.                <value>authorityInterceptor</value>    
  12.            </list>   
  13.        </property>   
  14.    </bean>   
  15.   
  16. <bean id="authorityInterceptor" class="org.mmc.utils.AuthorityInterceptor"/>


]]>
主站蜘蛛池模板: 垣曲县| 赤壁市| 沙湾县| 尤溪县| 托克托县| 刚察县| 龙里县| 隆尧县| 南江县| 通海县| 嘉定区| 东阿县| 仲巴县| 图木舒克市| 灌南县| 西平县| 太和县| 邓州市| 岳阳县| 宜昌市| 伊春市| 正定县| 五家渠市| 丹棱县| 临泉县| 泽普县| 太康县| 宜春市| 麟游县| 承德县| 遂溪县| 屏边| 涪陵区| 温泉县| 丹江口市| 屏东县| 桓仁| 南京市| 高安市| 原阳县| 夏邑县|