Skip to content

Commit

Permalink
/info端点输出Git版本信息
Browse files Browse the repository at this point in the history
  • Loading branch information
dyc87112 committed Jun 1, 2017
1 parent 650c605 commit f9c3aa9
Show file tree
Hide file tree
Showing 5 changed files with 135 additions and 0 deletions.
69 changes: 69 additions & 0 deletions Chapter6-2-1/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.didispace</groupId>
<artifactId>Chapter6-2-1</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>Chapter6-2-1</name>
<description></description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>2.1.15</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
<configuration>
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
</configuration>
</plugin>
</plugins>
</build>

</project>
22 changes: 22 additions & 0 deletions Chapter6-2-1/src/main/java/com/didispace/Application.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package com.didispace;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
*
* @author 程序猿DD
* @version 1.0.0
* @blog http://blog.didispace.com
*
*/
@SpringBootApplication
public class Application {

public static void main(String[] args) {

SpringApplication.run(Application.class, args);

}

}
21 changes: 21 additions & 0 deletions Chapter6-2-1/src/main/java/com/didispace/web/HelloController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package com.didispace.web;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
*
* @author 程序猿DD
* @version 1.0.0
* @blog http://blog.didispace.com
*
*/
@RestController
public class HelloController {

@RequestMapping("/hello")
public String index() {
return "Hello World";
}

}
1 change: 1 addition & 0 deletions Chapter6-2-1/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#management.info.git.mode=full
22 changes: 22 additions & 0 deletions Chapter6-2-1/src/test/java/com/didispace/ApplicationTests.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package com.didispace;

import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;


/**
*
* @author 程序猿DD
* @version 1.0.0
* @blog http://blog.didispace.com
*
*/
@SpringBootTest
public class ApplicationTests {

@Test
public void test1() throws Exception {

}

}

0 comments on commit f9c3aa9

Please sign in to comment.