错误提示:
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: com/my/springbootutils/helper/CurrentDate] with root cause
在spring-boot中,对有多个模块module的project打包时,会出现无法找到在另外模块中的类的情况。
解决方法:
在被依赖的module的pom中加入以下内容:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<classifier>exec</classifier>
</configuration>
</plugin>
</plugins>
</build>```