springboot项目打包到服务器运行时的错误

本文解决了一个在SpringBoot项目中使用OpenCV库时遇到的打包问题,通过在Maven配置中添加特定参数,成功将OpenCV库包含在最终的可执行Jar包中,确保了应用在服务器上正常运行。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

springboot项目打包到服务器运行时的错误

  1. java.lang.ClassNotFoundException: org.opencv.imgcodecs.Imgcodecs
    我在打包一个使用opencv库的项目运行时发现这个错误,在工程pom文件中添加如下两句就行了
<includeSystemScope>true</includeSystemScope><!--重要-->
<executable>true</executable><!--重要-->

完整的build配置如下:

<build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <mainClass>com.test.cc.ccMainApplication</mainClass>
                    <includeSystemScope>true</includeSystemScope><!--重要-->
                    <executable>true</executable><!--重要-->
                </configuration>

                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
                        </goals>
                    </execution>
                </executions>
            </plugin>

        </plugins>
    </build>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值