tomcat 시작 오류 org. apache. catalina. core. StandardContext. startInternal
INFO: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
log4j:ERROR Could not find value for key log4j.appender.DEBUG
log4j:ERROR Could not instantiate appender named "DEBUG".
Nov 14, 2019 10:30:35 AM org.apache.catalina.core.StandardContext startInternal
SEVERE: One or more listeners failed to start. Full details will be found in the appropriate container log file
Nov 14, 2019 10:30:35 AM org.apache.catalina.core.StandardContext startInternal
SEVERE: Context [/ ] startup failed due to previous errors
Nov 14, 2019 10:30:35 AM org.apache.catalina.startup.HostConfig deployWAR
더 자세 한 오 류 를 표시 하지 않 고 로 그 를 설정 할 수 있 습 니 다. 이러한 오 류 는 로그 알림 설정 이 부족 한 것 입 니 다. 항목 에 오류 가 없 는 것 이 아 닙 니 다.
해결 방법:
창설 /src/main/resources/logging.properties
logging.properties
handlers = org.apache.juli.FileHandler, java.util.logging.ConsoleHandler
############################################################
# Handler specific properties.
# Describes specific configuration info for Handlers.
############################################################
org.apache.juli.FileHandler.level = FINE
org.apache.juli.FileHandler.directory = ${catalina.base}/logs
org.apache.juli.FileHandler.prefix = error-debug.
java.util.logging.ConsoleHandler.level = FINE
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
이렇게 하면 tomcat 를 다시 시작 할 때 로그 파일 에 더 자세 한 오류 가 표 시 됩 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.