Gidhub BE Developer

SpringBoot 프로젝트 배너(Banner) 바꾸기

2020-06-20
goodGid

Prologue

  • SpringBoot 프로젝트 시작 시

    기본적으로는 다음과 같은 배너를 보게 된다.

  • 위 배너를 수정하는 방법에 대해 알아보자.
  • 매우 간단하게 수정할 수 있다.
  1. main/resuources/banner.txt를 생성

  2. 해당 파일에 노출하고 싶은 Text를 입력

Example

Case 1

main/resources/banner.txt

                              _    _____   _       _
                             | |  / ____| (_)     | |
   __ _    ___     ___     __| | | |  __   _    __| |
  / _` |  / _ \   / _ \   / _` | | | |_ | | |  / _` |
 | (_| | | (_) | | (_) | | (_| | | |__| | | | | (_| |
  \__, |  \___/   \___/   \____|  \_____| |_|  \____|
   __/ |
  |___/

Console


Case 2

  • Banner에 Spring 프로젝트의 속성들을 사용할 수도 있다.

main/resources/banner.txt

spring-boot.version : ${spring-boot.version}
spring-boot.formatted-version : ${spring-boot.formatted-version}

Console


Summary

  • 추가로 SpringBoot에서 Banner에 대해 알고 싶다면

    공식 문서인 Customizing the Banner 글을 참고하자.


Reference


Index