Browse Source
Extract banner.txt logic to ResourceBanner and include support for `spring-boot.version` and `application.version` properties. Fixes gh-1586pull/1593/head
6 changed files with 171 additions and 22 deletions
@ -0,0 +1,104 @@
@@ -0,0 +1,104 @@
|
||||
/* |
||||
* Copyright 2012-2014 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; |
||||
|
||||
import java.io.PrintStream; |
||||
import java.nio.charset.Charset; |
||||
import java.util.ArrayList; |
||||
import java.util.HashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
import org.apache.commons.logging.Log; |
||||
import org.apache.commons.logging.LogFactory; |
||||
import org.springframework.core.env.Environment; |
||||
import org.springframework.core.env.MapPropertySource; |
||||
import org.springframework.core.env.MutablePropertySources; |
||||
import org.springframework.core.env.PropertyResolver; |
||||
import org.springframework.core.env.PropertySourcesPropertyResolver; |
||||
import org.springframework.core.io.Resource; |
||||
import org.springframework.util.Assert; |
||||
import org.springframework.util.StreamUtils; |
||||
|
||||
/** |
||||
* Banner implementation that prints from a source {@link Resource}. |
||||
* |
||||
* @author Phillip Webb |
||||
* @since 1.2.0 |
||||
*/ |
||||
public class ResourceBanner implements Banner { |
||||
|
||||
private static final Log log = LogFactory.getLog(ResourceBanner.class); |
||||
|
||||
private Resource resource; |
||||
|
||||
public ResourceBanner(Resource resource) { |
||||
Assert.notNull(resource, "Resource must not be null"); |
||||
Assert.isTrue(resource.exists(), "Resource must exist"); |
||||
this.resource = resource; |
||||
} |
||||
|
||||
@Override |
||||
public void printBanner(Environment environment, Class<?> sourceClass, PrintStream out) { |
||||
try { |
||||
String banner = StreamUtils.copyToString( |
||||
this.resource.getInputStream(), |
||||
environment.getProperty("banner.charset", Charset.class, |
||||
Charset.forName("UTF-8"))); |
||||
|
||||
for (PropertyResolver resolver : getPropertyResolvers(environment, |
||||
sourceClass)) { |
||||
banner = resolver.resolvePlaceholders(banner); |
||||
} |
||||
out.println(banner); |
||||
} |
||||
catch (Exception ex) { |
||||
log.warn("Banner not printable: " + this.resource + " (" + ex.getClass() |
||||
+ ": '" + ex.getMessage() + "')", ex); |
||||
} |
||||
} |
||||
|
||||
protected List<PropertyResolver> getPropertyResolvers(Environment environment, |
||||
Class<?> sourceClass) { |
||||
List<PropertyResolver> resolvers = new ArrayList<PropertyResolver>(); |
||||
resolvers.add(environment); |
||||
resolvers.add(getVersionResolver(sourceClass)); |
||||
return resolvers; |
||||
} |
||||
|
||||
private PropertyResolver getVersionResolver(Class<?> sourceClass) { |
||||
MutablePropertySources propertySources = new MutablePropertySources(); |
||||
propertySources.addLast(new MapPropertySource("version", |
||||
getVersionsMap(sourceClass))); |
||||
return new PropertySourcesPropertyResolver(propertySources); |
||||
} |
||||
|
||||
private Map<String, Object> getVersionsMap(Class<?> sourceClass) { |
||||
String applicationVersion = (sourceClass == null ? null : sourceClass |
||||
.getPackage().getImplementationVersion()); |
||||
String bootVersion = Banner.class.getPackage().getImplementationVersion(); |
||||
Map<String, Object> versions = new HashMap<String, Object>(); |
||||
versions.put("application.version", getVersionString(applicationVersion)); |
||||
versions.put("spring-boot.version", getVersionString(bootVersion)); |
||||
return versions; |
||||
} |
||||
|
||||
private String getVersionString(String version) { |
||||
return (version == null ? "" : " (v" + version + ")"); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,57 @@
@@ -0,0 +1,57 @@
|
||||
/* |
||||
* Copyright 2012-2014 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; |
||||
|
||||
import java.io.ByteArrayOutputStream; |
||||
import java.io.PrintStream; |
||||
import java.util.Collections; |
||||
import java.util.Map; |
||||
|
||||
import org.junit.Test; |
||||
import org.springframework.core.env.ConfigurableEnvironment; |
||||
import org.springframework.core.env.MapPropertySource; |
||||
import org.springframework.core.io.ByteArrayResource; |
||||
import org.springframework.core.io.Resource; |
||||
import org.springframework.mock.env.MockEnvironment; |
||||
|
||||
import static org.hamcrest.Matchers.containsString; |
||||
import static org.hamcrest.Matchers.not; |
||||
import static org.hamcrest.Matchers.startsWith; |
||||
import static org.junit.Assert.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link ResourceBanner}. |
||||
* |
||||
* @author Phillip Webb |
||||
*/ |
||||
public class ResourceBannerTests { |
||||
|
||||
@Test |
||||
public void renderWithReplacement() throws Exception { |
||||
Resource resource = new ByteArrayResource( |
||||
"banner ${a} ${spring-boot.version} ${application.version}".getBytes()); |
||||
ResourceBanner banner = new ResourceBanner(resource); |
||||
ConfigurableEnvironment environment = new MockEnvironment(); |
||||
Map<String, Object> source = Collections.<String, Object> singletonMap("a", "1"); |
||||
environment.getPropertySources().addLast(new MapPropertySource("map", source)); |
||||
ByteArrayOutputStream out = new ByteArrayOutputStream(); |
||||
banner.printBanner(environment, getClass(), new PrintStream(out)); |
||||
assertThat(out.toString(), startsWith("banner 1")); |
||||
assertThat(out.toString(), not(containsString("$"))); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue