中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring使用<context:load-time-weaver/>實現靜態代理所遇到的問題

發布時間:2021-09-29 16:55:00 來源:億速云 閱讀:378 作者:iii 欄目:大數據

本篇內容主要講解“spring使用<context:load-time-weaver/>實現靜態代理所遇到的問題”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“spring使用<context:load-time-weaver/>實現靜態代理所遇到的問題”吧!

第一步:

創建要實現靜態的類,以及Advice增強類實現,內容如下:

需要靜態代理的類:

public interface IITestBean {
    void test();
}
public class TestBean implements IITestBean {
    @Override
    public void test() {
        System.out.println("test");
    }
}

Advice增強類:

@Aspect
public class AspectTest {

    @Pointcut("execution(* *.test(..))")
    public void test() {
        System.out.println("我切入了");
    }

    @Before("test()")
    public void beforeTest() {
        System.out.println("beforeTest()");
    }
    
    @After("test()")
    public void afterTest() {
        System.out.println("afterTest()");
    }

    @Around("test()")
    public Object aroundTest(ProceedingJoinPoint p) {
        System.out.println("before1");
        Object o = null;
        try {
            o = p.proceed();
        } catch (Throwable throwable) {
            throwable.printStackTrace();
        }
        System.out.println("after1");
        return o;
    }
}

第二步:

在class目錄下的META-INF(沒有則創建)文件夾下建立aop.xml,內容如下

<!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd">
<aspectj>
    <weaver>
        <include within="com.zzx.study.aspect.*"/>
    </weaver>

    <aspects>
        <aspect name="com.zzx.study.aspect.AspectTest"/>
    </aspects>
</aspectj>

第三步:

編寫spring的配置spring-aspect.xml,內容如下:

<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/aop
            http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <bean id="test" class="com.zzx.study.aspect.TestBean"/>
    <context:load-time-weaver/>
</beans>

第四步:

編寫測試類,內容如下:

public class AspectTest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("spring-aspect.xml");
        TestBean bean = (TestBean)context.getBean("test");
        bean.test();
    }
}

第五步:

測試時,需下載并引入org.springframework.instrument.jar文件,在idea中配置如下:

spring使用<context:load-time-weaver/>實現靜態代理所遇到的問題

第六步:

運行中遇到的問題

問題1:出現了一個java.lang.VerifyError: Expecting a stackmap frame at branch target 7錯誤

解決方法:idea中VM option,需加入-XX:-UseSplitVerifier

spring使用<context:load-time-weaver/>實現靜態代理所遇到的問題

問題2:circular advice precedence錯誤

解決方法:

原因Advice增強器AspectTest,必須要按照@Before->@Around->@After編寫代碼,上面代碼調整順利即可。但是在spring動態代理沒有該順序不對,不會拋異常。

第七步:

我們可以看到正常的靜態類代理結果如下:

spring使用<context:load-time-weaver/>實現靜態代理所遇到的問題

到此,相信大家對“spring使用<context:load-time-weaver/>實現靜態代理所遇到的問題”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇远县| 绥芬河市| 钦州市| 尉氏县| 万山特区| 油尖旺区| 敦煌市| 乐都县| 广南县| 从化市| 西丰县| 石柱| 修武县| 海兴县| 乐至县| 巴东县| 乾安县| 天柱县| 格尔木市| 洪湖市| 八宿县| 木兰县| 渝中区| 微山县| 株洲市| 名山县| 商洛市| 宣化县| 营口市| 寿宁县| 庆安县| 孝义市| 肥乡县| 合阳县| 习水县| 茂名市| 蒙阴县| 车险| 南木林县| 合江县| 报价|