반응형
Eclipse 최적화 방법
1. Validation 해제
1-1) Windows > Preference > Validation
> suspend all validators 체크 해제
> JavaScript Validation 체크 해제
> Apply and close
Tomcat 실행 속도 개선
1. Servers > config 수정
1-1) config > Context.xml 파일 수정
- Context 수정
<Context>
...
<JarScanner scanClassPath="false"/>
...
</Context>
1-2) config > catalina.properties 파일 수정
AS-IS : tomcat.util.scan.StandardJarScanFilter.jarsToSkip= ...
TO-BE : tomcat.util.scan.StandardJarScanFilter.jarsToSkip= *.jar
> jar 파일을 모두 빌드 단계에서 스킵하기 때문에 필요한 jar 파일은 import 하기
반응형
'ETC > Tools' 카테고리의 다른 글
[Eclipse] log cannot be resovled 에러 해결 법 (0) | 2022.01.03 |
---|---|
[IntelliJ & MAC] IntelliJ Find Action 단축키 오동작 (0) | 2021.12.27 |
[Git] 명령어 모음 (1) | 2021.11.21 |
[Jenkins] FTP 를 이용한 자동 배포 설정 (from Windows to Windows) (0) | 2021.09.28 |
[Jenkins] Jenkins Maven 빌드 (localRepositories 설정 포함) (0) | 2021.09.17 |