로컬, 원격 데이터베이스를 개발과 배포 환경에 따라 유연하게 설정하기 위한 profile 설정을 진행합니다.
<profiles>
<profile>
<id>local</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<activatedProfile>local</activatedProfile>
</properties>
</profile>
<profile>
<id>stage</id>
<properties>
<activatedProfile>stage</activatedProfile>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.heroku.sdk</groupId>
<artifactId>heroku-maven-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<appName>{HEROKU_APP_NAME}</appName>
<includeTarget>false</includeTarget>
<includes>
<include>${basedir}/${full-artifact-name}</include>
</includes>
<jdkVersion>${java.version}</jdkVersion>
<processTypes>
<web>java $JAVA_OPTS -jar -Dprofile=${activatedProfile} ${full-artifact-name}</web>
</processTypes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<web>...</web>
: Heroku에서 실행될 때 -D
옵션을 사용해 실행할 때 참조할 프로파일 지정server.port=${PORT:8080} # Heroku를 위한 포트 설정, 해당 실행 변수가 없을시 8080 사용
spring.profiles.active=${profile} # 활성화 할 프로파일 지정, 실행 변수로 전달됨
# 공통으로 사용되는 데이터베이스 관련 설정
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.dbcp2.validation-query=SELECT 1
spring.jpa.database=mysql
spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.open-in-view=false
spring.jpa.properties.hibernate.hbm2ddl.import_files=classpath:sql/init-import.sql
spring.jpa.properties.hibernate.hbm2ddl.import_files_sql_extractor=org.hibernate.tool.hbm2ddl.MultipleLinesSqlCommandExtractor
logging.level.org.hibernate.type.descriptor.BasicBinder=TRACE
# 로컬 데이터베이스 접속 정보
spring.datasource.url=jdbc:mysql://localhost:3306/wisestudy?characterEncoding=UTF-8&serverTimezone=Asia/Seoul
spring.datasource.username=wisestudy
spring.datasource.password=wise$tudy
spring.datasource.initialization-mode=always
# 로컬 데이터베이스 사용시 테이블 상시 생성 설정
spring.jpa.generate-ddl=true
spring.jpa.hibernate.ddl-auto=create
spring.jpa.properties.hibernate.format_sql=true
# 로그 레벨 DEBUG 설정
logging.level.web=DEBUG
logging.level.org.hibernate.SQL=DEBUG
# 원격 데이터베이스 접속 정보
spring.datasource.url=jdbc:mysql://us-cdbr-east-05.cleardb.net/heroku_ee35b034c0668c1?reconnect=true
spring.datasource.username=b40cdb08ac98a7
spring.datasource.password=fef08cda
# 원격 데이터베이스 사용시 모델 변경 내용만 반영하도록 설정
spring.jpa.hibernate.ddl-auto=update
# 로그 레벨 ERROR 설정
logging.level.web=ERROR
logging.level.org.hibernate.SQL=ERROR
Run > Edit Configuration... > Application
하위 애플리케이션에서 Environment variables
설정Run > Edit Configuration... > Maven
에서 작업 생성profile
에 local 설정 : Maven 프로파일 설정Runner
탭의 Environment variables
설정 : Spring Boot 프로파일 설정profile
: stageRunner > Environment variables
: profile=local