Spring学习笔记

2-banner

2018-09-30  本文已影响0人  中_中_

更改Spring boot应用启动时显示的banner打印信息。
1,在classpath当中添加banner.txt
2,使用spring.banner.location属性指定banner文件位置;
使用spring.banner.charset属性指定文件使用的编码,文件非utf-8编码。
3,在classpath当中添加banner.gif,banner.jpg,banner.png等格式的图片。
4,使用spring.banner.image.location属性。图片文件会被转为ASCII。
5,在程序中使用SpringApplication.setBanner(..)方法进行设置。

分别验证以上配置方式:
Springboot测试目录结构如下:


image.png

1,classpath中添加banner.txt
banner.txt文件中内容“Spring boot banner test”,启动项目查看:


image.png
2,在application.properties中添加配置项添加如下内容:
classpath下创建text.txt文件,文件内容同上。
spring.banner.location=classpath:text.txt
spring.bannercharset=utf-8

3,在classpath下添加一个banner.gif图片,并注释application.properties当中添加的内容;启动程序,运行效果如果。


image.png

4,使用配置文件指定banner.gif图片位置;在classpath中添加一个名为app.gif的图片。运行效果如下:

#spring.banner.location=classpath:text.txt
#spring.banner.charset=utf-8

spring.banner.image.location = classpath:app.gif
image.png

5,使用硬编码方式设置banner,需要实现org.springframework.boot.Banner接口。例如:

@SpringBootApplication
public class SpringbootDemoApplication {

    public static void main(String[] args) {
        
        SpringApplication application = new SpringApplication(SpringbootDemoApplication.class);
        application.setBanner(new MyBanner());
        application.run(args);
        
    }
    
    public static class MyBanner implements Banner{

        @Override
        public void printBanner(Environment environment, Class<?> sourceClass,
                PrintStream out) {
            // TODO Auto-generated method stub
            out.print("this is my spring boot demo\n\r");
        }
    }
}

运行效果如下:


image.png

在程序中也可以通过setBannerMode设置是否在console中输出banner信息。


image.png
上一篇 下一篇

猜你喜欢

热点阅读