Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
apollo
Commits
b825d963
Commit
b825d963
authored
Apr 27, 2016
by
Yiming Liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add basic info controller for env and version
parent
f5898737
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
3 deletions
+61
-3
ApolloInfoController.java
.../ctrip/apollo/common/controller/ApolloInfoController.java
+37
-0
Apollo.java
apollo-core/src/main/java/com/ctrip/apollo/Apollo.java
+2
-1
pom.xml
pom.xml
+22
-2
No files found.
apollo-common/src/main/java/com/ctrip/apollo/common/controller/ApolloInfoController.java
0 → 100644
View file @
b825d963
package
com
.
ctrip
.
apollo
.
common
.
controller
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
com.ctrip.apollo.Apollo
;
import
com.ctrip.framework.foundation.Foundation
;
@RestController
@RequestMapping
(
path
=
"/apollo"
)
public
class
ApolloInfoController
{
@RequestMapping
(
"app"
)
public
String
getApp
()
{
return
Foundation
.
app
().
toString
();
}
@RequestMapping
(
"web"
)
public
String
getEnv
()
{
return
Foundation
.
web
().
toString
();
}
@RequestMapping
(
"net"
)
public
String
getNet
()
{
return
Foundation
.
net
().
toString
();
}
@RequestMapping
(
"server"
)
public
String
getServer
()
{
return
Foundation
.
server
().
toString
();
}
@RequestMapping
(
"version"
)
public
String
getVersion
()
{
return
Apollo
.
VERSION
;
}
}
apollo-core/src/main/java/com/ctrip/apollo/Apollo.java
View file @
b825d963
...
...
@@ -4,5 +4,6 @@ package com.ctrip.apollo;
* @author Jason Song(song_s@ctrip.com)
*/
public
class
Apollo
{
public
final
static
String
VERSION
=
"java-0.0.1-SNAPSHOT"
;
public
final
static
String
VERSION
=
"java-"
+
Apollo
.
class
.
getPackage
().
getImplementationVersion
();
}
pom.xml
View file @
b825d963
...
...
@@ -84,7 +84,6 @@
<jetty.version>
9.2.15.v20160210
</jetty.version>
<github.global.server>
github
</github.global.server>
<github.global.oauth2Token>
${env.GITHUB_OAUTH_TOKEN}
</github.global.oauth2Token>
<github.path></github.path>
</properties>
<modules>
...
...
@@ -250,7 +249,7 @@
<dependency>
<groupId>
com.ctrip.apollo
</groupId>
<artifactId>
apollo-buildtools
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<version>
${project.version}
</version>
</dependency>
</dependencies>
<configuration>
...
...
@@ -283,6 +282,11 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-release-plugin
</artifactId>
<version>
2.5.3
</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
...
...
@@ -294,6 +298,22 @@
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
findbugs-maven-plugin
</artifactId>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-release-plugin
</artifactId>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-jar-plugin
</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>
true
</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>
true
</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment