spring攔截器的一個簡單例子

一任天然發表於2008-11-26

今天在SSH中用到spring攔截器,所以先在一個只有spring的測試專案中寫了一個攔截器的一個簡單例子,

結果還遇到了一點小錯誤,一下就按時間發展順序記述.

Purview介面.

  1. package aop;
  2. public interface Purview {
  3.     void checkLogin();
  4. }

PurviesImpl類,Purview介面的實現類.

  1. package aop;
  2. public class PurviewImpl implements Purview {
  3.     public void checkLogin() {
  4.         System.out.println("This is checkLogin method!");
  5.     }
  6. }

PurviewAdvice類,攔截器類.

  1. package aop;
  2. import java.lang.reflect.Method;
  3. import org.springframework.aop.MethodBeforeAdvice;
  4. public class PurviewAdvice implements MethodBeforeAdvice {
  5.     public void before(Method arg0, Object[] arg1, Object arg2)
  6.             throws Throwable {
  7.         System.out.println("This is before method!");
  8.     }
  9. }

Test類,測試類.

  1. package aop;
  2. import org.springframework.context.ApplicationContext;
  3. import org.springframework.context.support.ClassPathXmlApplicationContext;
  4. public class Test {
  5.     public static void main(String[] args) {
  6.         // TODO 自動生成方法存根
  7.         ApplicationContext ctx = new ClassPathXmlApplicationContext(
  8.                 "applicationContext.xml");
  9.         PurviewImpl purviewImpl = (PurviewImpl) ctx.getBean("purviewImpl");
  10.         purviewImpl.checkLogin();
  11.     }
  12. }

applicationContext.xml配置檔案.

  1.     <bean id="purviewImpl" class="aop.PurviewImpl"></bean>
  2.     <bean id="purviewAdvice" class="aop.PurviewAdvice"></bean>
  3.     <bean id="purviewAdvisor"
  4.         class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
  5.         <property name="advice">
  6.             <ref local="purviewAdvice" />
  7.         </property>
  8.         <property name="patterns">
  9.             <list>
  10.                 <value>.*checkLogin.*</value>
  11.             </list>
  12.         </property>
  13.     </bean>
  14.     <bean id="autoproxyaop"
  15.         class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
  16.         <property name="beanNames">
  17.             <value>purviewImpl</value>
  18.         </property>
  19.         <property name="interceptorNames">
  20.             <list>
  21.                 <value>purviewAdvisor</value>
  22.             </list>
  23.         </property>
  24.     </bean>

執行結果報錯,錯誤資訊為:

Exception in thread "main" java.lang.ClassCastException: $Proxy1
 at aop.Test.main(Test.java:34)

將Test類中

PurviewImpl purviewImpl = (PurviewImpl) ctx.getBean("purviewImpl");

修改為

Purview purviewImpl = (Purview) ctx.getBean("purviewImpl");

程式執行結果為:

This is before method!
This is checkLogin method!

至此攔截器使用成功!

總結:用spring得到bean的時候,若該類實現了介面,則返回其介面型別的例項,

若直接返回該實現類型別的例項則會報錯,錯誤資訊如上所述.

相關文章