1. 程式人生 > >Mvn工程解決severlet版本衝突問題

Mvn工程解決severlet版本衝突問題

ERROR spark.SparkContext: Errorinitializing SparkContext.

java.lang.SecurityException:

class"javax.servlet.ServletRegistration"'s signer information does notmatch signer information of other classes in the same package


在pom.xml配置檔案中把servlet3.0的配置程式碼拿commons-logging之前

沒有這些內容的,可以直接複製,放在最前面

<dependency>

<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>

</dependency>