Eclipse Tomcat 리모트 디버깅하기
Eclipse 이용 대상 : Tomcat5 /tomcat5/bin 에 catalina.sh 가 있다. # Set juli LogManager if it is present if [ -r “$CATALINA_HOME”/bin/tomcat-juli.jar ]; then JAVA_OPTS=”$JAVA_OPTS -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Xdebug -Xrunjdwp:transport=dt_socket,address=15999,server=y,suspend=n” LOGGING_CONFIG=”-Djava.util.logging.config.file=$CATALINA_BASE/conf/logging.properties” else # Bugzilla 45585 LOGGING_CONFIG=”-Dnop” fi # —– Execute The Requested Command —————————————– JAVA_OPTS 에 자신이 원하는 포트를 수정하여 등록. Eclipse ->… Read More »