如何用bootclasspath加载第三方jar
时间: 2023-03-26 22:00:37 浏览: 119
spring boot加载第三方jar包的配置文件的方法
可以使用以下命令来设置bootclasspath并加载第三方jar:
java -Xbootclasspath/a:/path/to/third-party.jar MainClass
其中,/path/to/third-party.jar是第三方jar的路径,MainClass是包含main()方法的主类。使用-Xbootclasspath/a选项可以将第三方jar添加到bootclasspath中,使其在JVM启动时被加载。
阅读全文