[SpringBoot] maven property 주입

harry jang·2022년 8월 26일
0
post-thumbnail

로그에 프로젝트명, 프로젝트버전을 남기기 위해 pom.xml에 설정된 프로젝트명, 프로젝트 버전을 스프링으로 가져오는 방법을 알아보았다.

pom.xml

  1. resource 필터링 활성화를 통해 application.properties 리소스 파일의 속성을 필터링(교체)

    <resources>
        <resource>
            <filtering>true</filtering>
            <directory>src/main/resources</directory>
            <includes>
                <include>application.properties</include>
            </includes>
        </resource>
    </resources>
  2. application.properties 파일에서 maven 프로퍼티를 ${} 형태로 주입받을 수 있도록 설정

    1. spring-boot-start-parent에서는 @property@로 프로터피를 주입받게 재정의되어 있으나useDefaultDelimiters : true로 주면 ${property}로 주입받을 수 있다.
    <build>
    ...
    	<plugins>
          ...
    		<plugin>
    			<groupId>org.apache.maven.plugins</groupId>
    			<artifactId>maven-resources-plugin</artifactId>
    			<version>2.7</version>
    			<configuration>
    				<useDefaultDelimiters>true</useDefaultDelimiters>
    			</configuration>
    		</plugin>
    	</plugins>
    </build>

application.properties

  1. 아래와 같이 pom.xml에서 가져올 프로퍼티를 지정한다.
  application.name=${project.artifactId}
  build.version=${project.version}
profile
software engineer

0개의 댓글