您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)如何解決使用IDEA異常斷點(diǎn)來(lái)定位java.lang.ArrayStoreException的問(wèn)題,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
最近對(duì) base-spring-boot 項(xiàng)目進(jìn)行了升級(jí)。在將其用于應(yīng)用開發(fā)中時(shí)遇到j(luò)ava.lang.ArrayStoreException的異常導(dǎo)致程序無(wú)法啟動(dòng)。平常開發(fā)過(guò)程中面對(duì)這種描述不夠清楚,無(wú)法定位具體原因的問(wèn)題該如何處理?本文分享通過(guò)使用IDEA異常斷點(diǎn)來(lái)定位此類問(wèn)題的方法。
啟動(dòng)程序時(shí)拋出如下異常,導(dǎo)致啟動(dòng)失敗
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'devGlobalExceptionHandler' defined in class path resource [cn/jboost/springboot/autoconfig/error/exception/ExceptionHandlerAutoConfiguration.class]: Post-processing of merged bean definition failed; nested exception is java.lang.ArrayStoreException: sun.reflect.annotation.TypeNotPresentExceptionProxy at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:570) ~[spring-beans-5.1.7.RELEASE.jar:5.1.7.RELEASE] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) ~[spring-beans-5.1.7.RELEASE.jar:5.1.7.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) ~[spring-beans-5.1.7.RELEASE.jar:5.1.7.RELEASE] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.7.RELEASE.jar:5.1.7.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) ~[spring-beans-5.1.7.RELEASE.jar:5.1.7.RELEASE] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) ~[spring-beans-5.1.7.RELEASE.jar:5.1.7.RELEASE] at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:843) ~[spring-beans-5.1.7.RELEASE.jar:5.1.7.RELEASE] at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877) ~[spring-context-5.1.7.RELEASE.jar:5.1.7.RELEASE] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549) ~[spring-context-5.1.7.RELEASE.jar:5.1.7.RELEASE] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:142) ~[spring-boot-2.1.5.RELEASE.jar:2.1.5.RELEASE] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:775) [spring-boot-2.1.5.RELEASE.jar:2.1.5.RELEASE] at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) [spring-boot-2.1.5.RELEASE.jar:2.1.5.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:316) [spring-boot-2.1.5.RELEASE.jar:2.1.5.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1260) [spring-boot-2.1.5.RELEASE.jar:2.1.5.RELEASE] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1248) [spring-boot-2.1.5.RELEASE.jar:2.1.5.RELEASE] at com.cnbot.kindergarten.CnbotKindergartenApplication.main(CnbotKindergartenApplication.java:10) [classes/:na] Caused by: java.lang.ArrayStoreException: sun.reflect.annotation.TypeNotPresentExceptionProxy at sun.reflect.annotation.AnnotationParser.parseClassArray(AnnotationParser.java:724) ~[na:1.8.0_201] at sun.reflect.annotation.AnnotationParser.parseArray(AnnotationParser.java:531) ~[na:1.8.0_201] at sun.reflect.annotation.AnnotationParser.parseMemberValue(AnnotationParser.java:355) ~[na:1.8.0_201] at sun.reflect.annotation.AnnotationParser.parseAnnotation2(AnnotationParser.java:286) ~[na:1.8.0_201] at sun.reflect.annotation.AnnotationParser.parseAnnotations2(AnnotationParser.java:120) ~[na:1.8.0_201] at sun.reflect.annotation.AnnotationParser.parseAnnotations(AnnotationParser.java:72) ~[na:1.8.0_201] ...
單純看異常棧,無(wú)法定位問(wèn)題原因,只能看到是在調(diào)用devGlobalExceptionHandler創(chuàng)建bean時(shí)出錯(cuò),錯(cuò)誤信息java.lang.ArrayStoreException: sun.reflect.annotation.TypeNotPresentExceptionProxy。
這屬于框架內(nèi)部拋出的異常,通常的設(shè)置斷點(diǎn)Debug的方法很難定位到具體原因,可通過(guò)IDEA的異常斷點(diǎn)來(lái)進(jìn)行定位,它會(huì)在程序運(yùn)行過(guò)程中出現(xiàn)指定異常時(shí)進(jìn)行阻斷。
1. 添加異常斷點(diǎn)
在IDEA的Debug面板中,點(diǎn)擊“View Breakpoints”(兩個(gè)重疊的紅色圈按鈕),如下
打開“Breakpoints”窗口,在該窗口中點(diǎn)擊“+”按鈕,選擇“Java Exception Breakpoints”, 如下圖
然后在彈出的“Enter Exception Class”窗口中輸入ArrayStoreException選中對(duì)應(yīng)異常,依次點(diǎn)擊OK,Done按鈕即完成異常斷點(diǎn)添加。
2. 程序debug
開始以Debug模式啟動(dòng)程序。 程序運(yùn)行后,在前面配置的異常出現(xiàn)時(shí),將會(huì)進(jìn)行阻斷,如圖
可以看到程序阻斷在上圖高亮的那行代碼處,異常便是從這里拋出的。查看parseClassValue方法,可看到這里有catchTypeNotPresentException異常,并且包裝成我們?cè)诋惓?吹降腡ypeNotPresentExceptionProxy返回。離真相很近了。
我們可以在上述catch塊中添加一個(gè)斷點(diǎn),查看異常包裝前的狀態(tài),如圖
重新Debug運(yùn)行,將定位到上圖代碼處,查看異常,看到如下圖所示信息
該信息表示org.springframework.security.access.AccessDeniedException這個(gè)類不存在,導(dǎo)致BaseWebApplicationExceptionHandler類型的bean實(shí)例化時(shí)出錯(cuò)。這時(shí)候問(wèn)題基本已經(jīng)定位到了。
查看源碼,在BaseWebApplicationExceptionHandler中有對(duì)AccessDeniedException的統(tǒng)一處理,但是spring-boot-autoconfigure所有的依賴都是optional的(不會(huì)傳遞依賴),而在新開發(fā)的項(xiàng)目中,并沒(méi)有引入spring-security,因此導(dǎo)致AccessDeniedException這個(gè)類找不到而報(bào)錯(cuò)。目前通過(guò)去掉該部分處理解決。
關(guān)于“如何解決使用IDEA異常斷點(diǎn)來(lái)定位java.lang.ArrayStoreException的問(wèn)題”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。