문서 보기이전 판역링크맨 위로 이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요. {{tag>[mvn spring-boot]}} ====== spring-boot (archetype) ====== [[https://docs.spring.io/spring-boot/docs/current/maven-plugin/reference/htmlsingle/]] ===== Goal ===== ''<color #c3c3c3>**mvn**</color> <color #ff7f27>**spring-boot:**goal</color>'' * [[.spring-boot:build-image|spring-boot:build-image]] * [[.spring-boot:build-image-no-fork|spring-boot:build-image-no-fork]] * [[.spring-boot:build-info|spring-boot:build-info]] * [[.spring-boot:help|spring-boot:help]] * [[.spring-boot:process-aot|spring-boot:process-aot]] * [[.spring-boot:process-test-aot|spring-boot:process-test-aot]] * [[.spring-boot:repackage|spring-boot:repackage]] * [[.spring-boot:run|spring-boot:run]]: ''<color #c3c3c3>**mvn**</color> <color #ff7f27>**spring-boot:run**</color>'' 바로 응용프로그램 실행 * [[.spring-boot:start|spring-boot:start]]: ''<color #c3c3c3>**mvn**</color> <color #ff7f27>**spring-boot:start**</color>'' run과 반대로 응용프로그램을 수행하기 위한 목표를 차단하지 않고 허용한다. * [[.spring-boot:stop|spring-boot:stop]]: ''<color #c3c3c3>**mvn**</color> <color #ff7f27>**spring-boot:stop**</color>'' start로 기동된 응용프로그램을 멈춘다. * [[.spring-boot:test-run|spring-boot:test-run]] ===== spring-boot:run ===== * ''<color #c3c3c3>**mvn**</color> <color #ff7f27>**spring-boot:run**</color> <color #22b14c>**-D**parameters</color>'' ==== spring-boot-profiles ==== * ''<color #c3c3c3>**mvn**</color> <color #ff7f27>**spring-boot:run**</color> <color #22b14c>**-Dspring-boot-profiles=**profile_name</color>'': (<color #22b14c>profile_name</color> 프로파일 지정, 구분자 '','') <code xml> <project> <properties> <app.profiles>local,dev</app.profiles> </properties> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <profiles>${app.profiles}</profiles> </configuration> </plugin> </plugins> </build> </project> </code> ==== app.profiles ==== * ''<color #c3c3c3>**mvn**</color> <color #ff7f27>**spring-boot:run**</color> <color #22b14c>**-Dapp.profiles=**profile_name</color>'' maven/cli/mvn/spring-boot.txt 마지막으로 수정됨: 2024/01/10 12:21저자 writer