spring boot /info增加构建信息

为什么80%的码农都做不了架构师?>>>   hot3.png

生成META-INF/build-info.properties

配置pom.xml 信息


  ...
  
    ...
    
      ...
      
        org.springframework.boot
        spring-boot-maven-plugin
        2.0.2.RELEASE
        
          
            
              build-info
            
            
              
                
                UTF-8
                UTF-8
                ${maven.compiler.source}
                ${maven.compiler.target}
              
            
          
        
        ...
      
      ...
    
    ...
  
  ...

application.yml 增加

info:
  name: ${spring.application.name}
  build:
    name: ${project.name:}
    artifact: ${project.arfitactId:}
    version: ${project.version:}
    time: ${build.time:}

转载于:https://my.oschina.net/zvc/blog/1813492

你可能感兴趣的:(spring boot /info增加构建信息)