Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- textfield
- livedata
- Kotlin
- LifeCycle
- tabbar
- appbar
- drift
- 테스트
- TEST
- android
- activity
- textview
- Flutter
- intent
- Button
- 앱바
- binding
- scroll
- 계측
- ScrollView
- DART
- 안드로이드
- data
- CustomScrollView
- Compose
- 앱
- Navigation
- Coroutines
- viewmodel
- Dialog
Archives
- Today
- Total
Study Record
[Spring] 빌드하기 본문
728x90
✍ IDE 외에서 빌드하기
기본적으로 IDE 에서 프로젝트를 실행하려면 Run 버튼을 누르면 된다. 그 외에서 빌드하고 실행하는 방법은 다음과 같다.
[윈도우]
① 명령 프롬프트(cmd) 를 실행하고 프로젝트가 있는 경로로 이동해준다. (이동 명령어 : cd "경로", D 드라이브 : D: )
> dir
② build 해준다.
> gradlew build ( > gradlew clean build)
③ build/libs 에 생긴 jar 파일을 java 로 실행하면 서버가 실행된다.
> java -jar [파일 이름]
728x90
'Spring' 카테고리의 다른 글
[Spring] 기본 정리 (0) | 2022.06.05 |
---|---|
[Spring] 웹 개발 기초 (0) | 2022.06.05 |
[Spring] Welcome Page, GetMaping (0) | 2022.06.05 |
[Spring] 프로젝트 생성하기 (0) | 2022.06.05 |