本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

SpringBoot项目中application.properties无法打包进target目录_怎么办?

网络教程 app 1℃

SpringBoot项目中application.properties无法打包进target目录_怎么办

如何解决 spring boot 项目中 application.properties 无法打包进 target 目录的问题?

问题的原因可能是:

application.properties 文件未置于正确位置(src/main/resources)配置文件名称错误(application.yml 或 application.properties)maven 配置不正确(资源过滤未启用)

解决方案:

    确认位置:
    确保 application.properties 文件位于 src/main/resources 目录下。检查名称:
    如果使用 yaml 配置文件,则文件名应为 application.yml;如果使用 properties 配置文件,则文件名应为 application.properties。启用过滤:
    在 pom.xml 文件中添加以下代码:

<build> <resources> <resource><directory>src/main/resources</directory><filtering>true</filtering> </resource> </resources></build>

以上就是Spring Boot 项目中 application.properties 无法打包进 target 目录,怎么办?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » SpringBoot项目中application.properties无法打包进target目录_怎么办?

喜欢 (0)