springboot 다 중 환경 설정 튜 토리 얼
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 다 환경 설정 튜 토리 얼 입 니 다.여러분 께 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.소 편 은 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
thymeleaf로 HTML 페이지를 동적으로 만듭니다 (spring + gradle)지난번에는 에서 화면에 HTML을 표시했습니다. 이번에는 화면을 동적으로 움직여보고 싶기 때문에 입력한 문자를 화면에 표시시키고 싶습니다. 초보자의 비망록이므로 이상한 점 등 있으면 지적 받을 수 있으면 기쁩니다! ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.