eclipse中创建Maven项目时
pom.xml报错:com.thoughtworks.xstream.io.HierarchicalStreamDriver
解决方案1、在pom文件中加入maven-war-plugin
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<webResources>
<resource>
<directory>src/main/webapp/WEB-INF</directory>
<filtering>true</filtering>
<targetPath>WEB-INF</targetPath>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
解决方案2、在pom中配置依赖
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.9</version>
</dependency>
解决方案3:删除本地仓库下载的JAR包,
C:\Users\EuphemiaShaw\.m2\repository\com\thoughtworks\xstream\xstream
这个文件夹再update
最后我这三种方法使用后还是没解决,最后解决是
改成jdk自带的jre就好了,也不知道为什么