목차

,

spring-boot (archetype)

https://docs.spring.io/spring-boot/docs/current/maven-plugin/reference/htmlsingle/

Goal

mvn spring-boot:goal

spring-boot:run

spring-boot-profiles

<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