728x90
profile 별 generate 설정 파일 생성
profile pom.xml
에 추가
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jooq</groupId>
<artifactId>jooq-codegen-maven</artifactId>
<version>${jooq.version}</version>
<!-- The plugin should hook into the generate goal -->
<executions>
<execution>
<id>fdk_parkingcloud</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<configurationFile>src/main/resources/jooq/config/tis-${env}.xml</configurationFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<!-- dev profile -->
<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties> <!-- resource 필터 사용시 개발자 PC에 적용되는 필터 properties 의 폴더 위치 -->
<!-- <deployTarget>local</deployTarget>-->
<env>dev</env>
</properties>
</profile>
<!-- stage profile -->
<profile>
<id>stage</id>
<properties> <!-- resource 필터 사용시 개발서버에 적용되는 필터 properties 의 폴더 위치 -->
<!-- <deployTarget></deployTarget>-->
<env>stage</env>
</properties>
</profile>
</profiles>
728x90
'프로젝트' 카테고리의 다른 글
[SpringBoot jooq] SQL UNQUOTED 설정 (0) | 2020.06.20 |
---|---|
[SpringBoot jooq] generator database 설정 옵션 (0) | 2020.06.20 |
[SpringBoot 예외처리] 커스텀 Exception 처리 (0) | 2020.06.20 |
[SpringBoot 예외처리] @ExceptionHandler 리팩토링 코드 가이드 (0) | 2020.06.20 |
[SpringBoot 예외처리] @ExceptionHandler 설정 (0) | 2020.06.20 |
댓글