문서의 이전 판입니다!
spring-boot (archetype)
Goal
mvn spring-boot:goal
spring-boot:run
mvn spring-boot:run -Dparameters
spring-boot-profiles
mvn spring-boot:run -Dspring-boot-profiles=profile_name: (profile_name 프로파일 지정, 구분자,)
<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>
app.profiles
mvn spring-boot:run -Dapp.profiles=profile_name