美文网首页
Spring Boot 多模块配置

Spring Boot 多模块配置

作者: 刘玉秀888 | 来源:发表于2018-11-25 10:45 被阅读0次

    一个多模块配置目录结构的例子

    image.png

    上图中有三个模块,module1, module2, common。module1和module2都依赖common,主模块依赖module1和module2。文件结构中,每个模块会有自己的applicatiom-{xxx}.yml, 主模块有application.yml
    依赖包含的语法是spring.profiles.include,如主模块的内容如下,把module1和module2包含进来了。

    spring:
        profiles:
            include: module1,module2
    

    module1的内容如下,把common包含进来了

    spring:
      profiles:
        include: common
    

    相关文章

      网友评论

          本文标题:Spring Boot 多模块配置

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