요르딩딩
Git Branch 추가, 환경설정 연동하는 법 본문
728x90
반응형
아직 공부가 좀 더 필요한 부분이다.
1. git을 통해 새 브런치 생성.
2. resources-test생성
3. pom.xml에 설정 제거 및 추가
-제거
<activation>
<activeByDefault>true</activeByDefault>
</activation>
+추가
<profile>
<id>test</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<env>test</env>
</properties>
</profile>
4. Encoding UTF-8 설정 추가
방법 : 프로젝트 명을 '우클릭 > Properties > Text file encoding > other : UTF-8 체크
5. 로그 제거하는법? (잘 모른다.)
방법 : resources-test > log4j2.xml에서 아래의 코드를 지워준다.
<properties>
<property name="path">/usr/local/share/apache-tomcat</property>
</properties>
728x90
반응형
'[Git & Sourcetree]' 카테고리의 다른 글
Git 소스내려받는 방법 (gitlab, sourcetree, eclipse) (0) | 2021.12.22 |
---|---|
Git, SourceTree (0) | 2021.01.06 |
Comments