Jetty報ArrayIndexOutBoundsException:30305的解決方案

  部分報錯信息以下:java

java.lang.ArrayIndexOutOfBoundsException: 30305
        at org.objectweb.asm.ClassReader.readUnsignedShort(Unknown Source) 
        at org.objectweb.asm.ClassReader.<init>(Unknown Source) 
        at org.objectweb.asm.ClassReader.<init>(Unknown Source) 
        at org.objectweb.asm.ClassReader.<init>(Unknown Source)

本人SSH項目是使用maven管理的,以前沒有這個問題,一次在引入了Druid以後,莫名報了這個錯,雖然不影響使用,但每次啓動都報這個錯,看着讓人鬧心,故花了近3個小時時間才把這個問題搞定。通過各類解決方案的驗證和排除,最後一句話說明下解決方案:web

將Jetty升級到 9.x 版本便可。eclipse

maven中相關配置以下:maven

      <plugin>
					<groupId>org.eclipse.jetty</groupId>
					<artifactId>jetty-maven-plugin</artifactId>
					<version>9.3.2.v20150730</version>
				<configuration>
				<scanIntervalSeconds>5</scanIntervalSeconds>
					<httpConnector>
						<port>8888</port>
					</httpConnector>
					<webAppConfig>
						<contextPath>/${project.artifactId}</contextPath>
					</webAppConfig>
				</configuration>
				</plugin>

我原來使用的jetty版本是8.x,升級到9以後發現相關端口不起做用了。9.x與8.x關於這個的配置是不同的,我以上的配置是jetty9.x的配置。ui

本文但願遇到一樣問題的朋友作個參考。code

相關文章
相關標籤/搜索