Spring Boot Banner.txt

Moseoh·2022년 7월 28일
0

쉬는 시간

목록 보기
1/1

Spring Boot Custom Banner

스프링부트가 시작될 때 나오는 배너를 바꿀 수 있다.

/src/main/resources 경로에 banner.txt 넣기.

banner.txt 에서 아래와 같이 application.properties, yml 파일의 정보를 불러와 표현할 수도 있다.

application.yaml:

config:
	title: MY APPLICATION
    author: MOSEOH

banner.txt:

${config.title} ${config.author}

Spring Boot에서 배너모드는 Default true 인 것 같은데 아래와 같이 설정 가능.

@SpringBootApplication
public class MyApplication {
    public static void main(String[] args) {
        SpringApplication application = new SpringApplication(MyApplication.class);
        application.setBannerMode(Banner.Mode.OFF);
        application.run(args);
    }
}

아스키코드 변환 사이트:
http://patorjk.com/software/taag
https://devops.datenkollektiv.de/banner.txt/index.html

Nyan-Cat:
https://github.com/azqazq195/nyan-cat-banner/blob/main/spring-boot-4tw-web/src/main/resources/banner.txt

profile
슬기로운 탐구생활

0개의 댓글