骑士李四记录:
场景
在pom.xml中引入一个包,之后启动部署项目,出现java.lang.NoClassDefFoundError的问题。
报错信息:
解决方案:
加入这段代码
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>需要移动的目标地址</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>