Springboot 如果引入了本地的jar ,打包时需要加上这句话

 如果引入了本地的jar ,打包时需要加上这句话

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

猜你喜欢

转载自blog.csdn.net/Allure_LoveU/article/details/121497442