tomcat 시작 오류 org. apache. catalina. core. StandardContext. startInternal

1728 단어 자바Linux
질문: Tomcat 시작 성공, 프로젝트 접근 불가
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 를 다시 시작 할 때 로그 파일 에 더 자세 한 오류 가 표 시 됩 니 다.

좋은 웹페이지 즐겨찾기