美文网首页
jar包引用外部配置文件作为配置

jar包引用外部配置文件作为配置

作者: 木木呦 | 来源:发表于2020-02-27 22:28 被阅读0次
# 类上加入这段话即可
@PropertySource(value = {"classpath: local.properties", "file:${spring.profiles.path}/local.properties"},
        ignoreResourceNotFound = true)
# jar包和配置文件在同目录下
java -jar xxx.jar --spring.config.location=local.properties

相关文章

网友评论

      本文标题:jar包引用外部配置文件作为配置

      本文链接:https://www.haomeiwen.com/subject/hbvfhhtx.html