Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
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
DEMO
spring-boot
Commits
880f31ae
Commit
880f31ae
authored
Jun 23, 2015
by
Phillip Webb
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2300 from drumonii/master
* pr/2300: Add a SpringBootVersion class like SpringVersion
parents
69c44faf
8b049732
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
4 deletions
+48
-4
ResourceBanner.java
...rc/main/java/org/springframework/boot/ResourceBanner.java
+2
-2
SpringBootBanner.java
.../main/java/org/springframework/boot/SpringBootBanner.java
+2
-2
SpringBootVersion.java
...main/java/org/springframework/boot/SpringBootVersion.java
+44
-0
No files found.
spring-boot/src/main/java/org/springframework/boot/ResourceBanner.java
View file @
880f31ae
/*
/*
* Copyright 2012-201
4
the original author or authors.
* Copyright 2012-201
5
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -106,7 +106,7 @@ public class ResourceBanner implements Banner {
...
@@ -106,7 +106,7 @@ public class ResourceBanner implements Banner {
}
}
protected
String
getBootVersion
()
{
protected
String
getBootVersion
()
{
return
Banner
.
class
.
getPackage
().
getImplementation
Version
();
return
SpringBootVersion
.
get
Version
();
}
}
private
String
getVersionString
(
String
version
,
boolean
format
)
{
private
String
getVersionString
(
String
version
,
boolean
format
)
{
...
...
spring-boot/src/main/java/org/springframework/boot/SpringBootBanner.java
View file @
880f31ae
/*
/*
* Copyright 2012-201
3
the original author or authors.
* Copyright 2012-201
5
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -50,7 +50,7 @@ class SpringBootBanner implements Banner {
...
@@ -50,7 +50,7 @@ class SpringBootBanner implements Banner {
for
(
String
line
:
BANNER
)
{
for
(
String
line
:
BANNER
)
{
printStream
.
println
(
line
);
printStream
.
println
(
line
);
}
}
String
version
=
Banner
.
class
.
getPackage
().
getImplementation
Version
();
String
version
=
SpringBootVersion
.
get
Version
();
version
=
(
version
==
null
?
""
:
" (v"
+
version
+
")"
);
version
=
(
version
==
null
?
""
:
" (v"
+
version
+
")"
);
String
padding
=
""
;
String
padding
=
""
;
while
(
padding
.
length
()
<
STRAP_LINE_SIZE
while
(
padding
.
length
()
<
STRAP_LINE_SIZE
...
...
spring-boot/src/main/java/org/springframework/boot/SpringBootVersion.java
0 → 100644
View file @
880f31ae
/*
* Copyright 2012-2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
;
/**
* Class that exposes the Spring Boot version. Fetches the "Implementation-Version"
* manifest attribute from the jar file.
* <p>
* Note that some ClassLoaders do not expose the package metadata, hence this class might
* not be able to determine the Spring Boot version in all environments. Consider using a
* reflection-based check instead: For example, checking for the presence of a specific
* Spring Boot method that you intend to call.
*
* @author Drummond Dawson
* @since 1.3.0
*/
public
class
SpringBootVersion
{
/**
* Return the full version string of the present Spring Boot codebase, or {@code null}
* if it cannot be determined.
* @return the version of Spring Boot or {@code null}
* @see Package#getImplementationVersion()
*/
public
static
String
getVersion
()
{
Package
pkg
=
SpringApplication
.
class
.
getPackage
();
return
(
pkg
!=
null
?
pkg
.
getImplementationVersion
()
:
null
);
}
}
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