"스프링부트 배너 숨기기"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-==참고 자료== +==참고==))
잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(같은 사용자의 중간 판 2개는 보이지 않습니다)
5번째 줄: 5번째 줄:
;스프링부트 로고 숨기기
;스프링부트 로고 숨기기
* Console<ref>정확히는 앱 실행시 표준출력</ref>에 나오는 스프링부트 로고를 숨기고 싶다.
* Console<ref>정확히는 앱 실행시 표준출력</ref>에 나오는 스프링부트 로고를 숨기고 싶다.
<source lang='text'>
<syntaxhighlight lang='text'>
   .  ____          _            __ _ _
   .  ____          _            __ _ _
  /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
  /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
13번째 줄: 13번째 줄:
  =========|_|==============|___/=/_/_/_/
  =========|_|==============|___/=/_/_/_/
  :: Spring Boot ::        (v1.3.5.RELEASE)
  :: Spring Boot ::        (v1.3.5.RELEASE)
</source>
</syntaxhighlight>


==방법==
==방법==
*[[application.properties]] 파일에 아래 항목 추가
*[[application.properties]] 파일에 아래 항목 추가
<source lang='properties'>
<syntaxhighlight lang='properties'>
spring.main.banner-mode=off
spring.main.banner-mode=off
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 00:56 기준 최신판

1 개요[ | ]

how to disable spring boot logo in stdout
스프링부트 배너 숨기기
스프링부트 로고 숨기기
  • Console[1]에 나오는 스프링부트 로고를 숨기고 싶다.
  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.3.5.RELEASE)

2 방법[ | ]

spring.main.banner-mode=off

3 같이 보기[ | ]

4 참고[ | ]

  1. 정확히는 앱 실행시 표준출력
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}