springboot 다 중 환경 설정 튜 토리 얼

지난 시간 에 우 리 는 아이디어 도 구 를 통 해 어떠한 설정 도 하지 않 고 springboot 프로젝트 를 구 축 했 고 성공 적 으로 시 작 했 습 니 다.그러나 우 리 는 이런 것들 이 우리 의 실제 프로젝트 의 수요 에 크게 미 치지 못 한 다 는 것 을 잘 알 고 있 습 니 다.예 를 들 어 우 리 는 우리 자신의 redis 설정,my sql 설정 등 을 도입 하려 면 어떻게 처리 해 야 합 니까?spring mvc 에서 우 리 는 모두 spring.xml 관련 파일 을 통 해 설정 합 니 다.spring boot 에 서 는 이러한 것들 이 존재 하지 않 습 니 다.우 리 는 어떻게 설정 해 야 합 니까?서 두 르 지 말고 바로 여러분 을 위해 수수 께 끼 를 밝 히 고 저 를 따라 오 세 요!
NO1.우 리 는 프로젝트 를 할 때 많은 환경 을 구분 하지 않 습 니까?예 를 들 어 개발 환경,테스트 환경,생산 환경 등 이다.그러면 첫 번 째 단 계 는 제 가 먼저 여러분 을 데 리 고 각 환경 을 잘 배치 하 겠 습 니 다.
1.우선 프로젝트 의 pom.xml 파일 을 열 고 다음 내용 을 추가 합 니 다.

<build>
  <finalName>${project.artifactId}-${project.version}</finalName>
  <plugins>
   <plugin>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-maven-plugin</artifactId>
     <executions>
      <execution>
        <goals>
         <goal>repackage</goal>
        </goals>
      </execution>
     </executions>
   </plugin>
   <plugin>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-compiler-plugin</artifactId>
     <version>3.3</version>
     <configuration>
      <source>1.8</source>
      <target>1.8</target>
      <encoding>utf8</encoding>
     </configuration>
   </plugin>
  </plugins>
  <filters>
   <filter>src/main/resources/application-${filter-resource-name}.properties</filter>
  </filters>
  <resources>
   <resource>
     <directory>src/main/resources</directory>
     <filtering>true</filtering>
     <excludes>
      <exclude>filters/*</exclude>
      <exclude>filters/*</exclude>
      <exclude>application-dev.properties</exclude>
      <exclude>application-test.properties</exclude>
      <exclude>application-alpha.properties</exclude>
      <exclude>application-prod.properties</exclude>
     </excludes>
   </resource>
   <resource>
     <directory>src/main/resources</directory>
     <filtering>true</filtering>
     <includes>
      <include>application-${filter-resource-name}.properties</include>
     </includes>
   </resource>
  </resources>
</build>
<profiles>
  <profile>
   <id>dev</id>
   <activation>
     <activeByDefault>true</activeByDefault>
   </activation>
   <properties>
     <filter-resource-name>dev</filter-resource-name>
   </properties>
  </profile>
  <profile>
   <id>test</id>
   <properties>
     <filter-resource-name>test</filter-resource-name>
   </properties>
  </profile>
  <profile>
   <id>alpha</id>
   <properties>
     <filter-resource-name>alpha</filter-resource-name>
   </properties>
  </profile>
  <profile>
   <id>prod</id>
   <properties>
     <filter-resource-name>prod</filter-resource-name>
   </properties>
  </profile>
</profiles>
이 부분 은 모두 가 잘 알 고 있 을 거 라 고 믿 습 니 다.저 는 더 이상 설명 하지 않 겠 습 니 다.
2.그리고 application.properties 파일 을 열 고 다음 과 같은 내용 을 추가 합 니 다.
\#활성 화 된 프로필 표시(dev|prod)
spring.profiles.active=@filter-resource-name @
전체 항목 은 다음 과 같은 구조 로 바 뀌 었 다.

이로써 우리 의 springboot 다 중 환경 설정 이 완료 되 었 습 니 다.
3.로그 레벨 설정

#log level
logging.level.root=debug
4.사용자 정의 포트 와 인 스 턴 스 이름 설정

#  
server.port=8888
#   
spring.application.name=demo-springboot
5.logback-spring.xml

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <include resource="org/springframework/boot/logging/logback/base.xml" />
  <appender name="demo" class="ch.qos.logback.core.rolling.RollingFileAppender">
   <file>demo/demo.log</file>
   <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
     <!--      daily -->
     <fileNamePattern>demo/demo.%d{yyyy-MM-dd}.log</fileNamePattern>
     <!--         10  -->
     <maxHistory>10</maxHistory>
   </rollingPolicy>
   <encoder charset="UTF-8">
     <pattern>${FILE_LOG_PATTERN}</pattern>
   </encoder>
  </appender>
  <logger name="com.example.demo" level="INFO" additivity="false">
   <appender-ref ref="demo"/>
  </logger>
  <logger name="com.example.demo.dao" level="DEBUG" />
  <logger name="com.example.demo.service" level="INFO" />
  <logger name="druid.sql.Statement" level="DEBUG" />
  <logger name="druid.sql.ResultSet" level="DEBUG" />
  <logger name="org.apache" level="INFO" />
  <logger name="org.mybatis.spring" level="ERROR" />
  <logger name="org.springframework" level="INFO"></logger>
  <logger name="springfox" level="ERROR"></logger>
  <root level="INFO">
   <appender-ref ref="demo" />
  </root>
</configuration
이로써 우리 프로젝트 의 기본 환경 설정 은 이미 구축 되 었 습 니 다.Maven clean install 아래 dev|test|prod 를 통 해 지정 한 설정 을 입력 한 다음 run application 을 실행 합 니 다.localhost:8888 을 통 해 설정 worked 를 방문 하여 설명 할 수 있 습 니 다.하지만 아직 부족 합 니 다.우리 프로젝트 개발 은 데이터 베 이 스 를 조작 해 야 합 니 다.하하,그렇습니다.다음은 spring boot+my sql+my batis 의 세계 로 들 어가 보 겠 습 니 다!
총결산
위 에서 말 한 것 은 소 편 이 소개 한 spring boot 다 환경 설정 튜 토리 얼 입 니 다.여러분 께 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.소 편 은 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기