문서의 선택한 두 판 사이의 차이를 보여줍니다.
| 다음 판 | 이전 판 | ||
|
springframework:springboot:springboot_cli [2018/08/24 14:33] kwon37xi 만듦 |
springframework:springboot:springboot_cli [2020/07/13 12:36] (현재) kwon37xi [init] |
||
|---|---|---|---|
| 줄 1: | 줄 1: | ||
| ====== SpringBoot CLI ====== | ====== SpringBoot CLI ====== | ||
| - | + | * [[https:// | |
| - | ===== Install ===== | + | ===== Install |
| * [[https:// | * [[https:// | ||
| 줄 11: | 줄 11: | ||
| </ | </ | ||
| + | ===== Install with Windows scoop ===== | ||
| + | * [[windows: | ||
| + | |||
| + | <code sh> | ||
| + | scoop bucket add extras | ||
| + | scoop install springboot | ||
| + | </ | ||
| + | |||
| + | '' | ||
| + | |||
| + | ===== init ===== | ||
| + | * 의존성 등 보여주기< | ||
| + | spring init --list | ||
| + | spring help init # 도움말 | ||
| + | </ | ||
| + | |||
| + | * 기본 생성 예<code sh> | ||
| + | # myproject 라는 디렉토리에 --dependencies 에 따라 의존성 구성해서 프로젝트 생성 | ||
| + | |||
| + | spring init -b 2.3.1 -g kr.pe.kwonnam -a springboottest --build gradle \ | ||
| + | -l java -j 11 \ | ||
| + | | ||
| + | | ||
| + | -x myproject | ||
| + | </ | ||
| + | * Windows 에서는 '' | ||