사용자 도구

사이트 도구


springframework:springboot:springboot_cli

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

다음 판
이전 판
다음 판 양쪽 다음 판
springframework:springboot:springboot_cli [2018/08/24 14:33]
kwon37xi 만듦
springframework:springboot:springboot_cli [2018/11/29 12:51]
kwon37xi
줄 1: 줄 1:
 ====== SpringBoot CLI ====== ====== SpringBoot CLI ======
- +  * [[https://docs.spring.io/spring-boot/docs/current/reference/html/cli-using-the-cli.html|64. Using the CLI]] 
-===== Install =====+===== Install with sdkman =====
   * [[https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started-installing-spring-boot.html|10. Installing Spring Boot]]   * [[https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started-installing-spring-boot.html|10. Installing Spring Boot]]
  
줄 11: 줄 11:
 </code> </code>
  
 +===== Install with Windows scoop =====
 +  * [[windows:scoop|Scoop]]
 +
 +<code sh>
 +scoop bucket add extras
 +scoop install springboot
 +</code>
 +
 +''~/scoop/apps/springboot/current/bin/spring''
 +
 +===== init =====
 +  * 의존성 등 보여주기<code sh>
 +spring init --list
 +spring help init # 도움말
 +</code>
 +
 +  * 기본 생성 예<code sh>
 +# myproject 라는 디렉토리에 --dependencies 에 따라 의존성 구성해서 프로젝트 생성
 +
 +spring init -g kr.pe.kwonnam -a springboottest --build gradle -j 1.8 \
 +   --dependencies=web,jdbc,data-jpa,devtools,jooq,lombok,h2 \
 +   --packaging=war \
 +   myproject
 +</code>
 +  * Windows 에서는 ''--dependencies="web,jdbc,..."'' 형태로 특수문자가 들어가는 옵션에는 따옴표가 필요하다.
springframework/springboot/springboot_cli.txt · 마지막으로 수정됨: 2020/07/13 12:36 저자 kwon37xi