ETC/Tools

[Eclipse] Eclipse 빌드 속도 개선 & Tomcat 실행 속도 개선

Pazery는ENFJ 2021. 12. 7. 12:25
반응형

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 하기

 

반응형