部署环境

项目用到docker部署,发布的时候发现后台程序报错。很奇怪在本地能包的项目到服务器上就不能运行,查看报错日志后,发现是找不到自己导入的本地jar包依赖。万番搜索之下,找到只需要加个依赖便可。
下面是我的错误提示和添加的依赖,等下次时间充裕我把我docker打包项目遇到的大坑也记录到博客中。

正文开始

警告 jar should not point at files within the project directory

[WARNING] 'dependencies.dependency.systemPath' for com.yinyuan:radarsdk:jar should not point at files within the project directory, ${project.basedir}/src/main/resources/jar/radar-sdk.jar will be unresolvable by dependent projects @ line 38, column 25

在这里插入图片描述

出错原因:maven 打包时没有将以 systemPath 这种形式引入的 jar 包,包含在内

解决办法:在 spring-boot-maven-plugin 插件中添加如下配置即可

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <includeSystemScope>true</includeSystemScope>
            </configuration>
        </plugin>
    </plugins>
</build>
Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐