spring-boot多模块打包后,无法找到其他模块中的类

错误提示:
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中加入以下内容:
spring-boot多模块打包后,无法找到其他模块中的类_第1张图片

      
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    exec
                
            
        
    ```

你可能感兴趣的:(java学习,spring-boot)