반응형
[ Invalid byte tag in constant pool : 19 ]
org.apache.catalina.startup.ContextConfig.processAnnotationsJar Unable to process Jar entry
[META-INF/modules/java.base/classes/module-info.class] from Jar
[file:/경로/WEB-INF/lib/java.base-2021-07-23.jar] for annotations
org.apache.tomcat.util.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 19
Invalid byte tag in constant pool : 19 는 19번 태그를 읽어올 수 없다는 내용이다.
19번 태그는 java version 9부터 지원하는 것이 보통이고 톰캣의 버전이 낮을때 주로 나타난다고 한다.
보통은 톰캣버전, 자바버전, lombok버전, log4j버전이 맞지 않을때 충돌로 인해 나타난다고 한다.
내가 발생한 케이스는 java 1.8 / log4j 2.17.1 / tomcat 8.5를 사용했을때 에러가 발생했다.
해결방법을 3가지 정도 찾았다.
1. 내 해결방법 : Tomcat version을 9이상 사용해서 해결했다.
2. 톰캣을 9.0이상 버전을 사용할 수 없다면 log4j 버전을 2.7로 사용하면 되는 경우가 있다고 한다.
3. 혹은 특이 케이스 이긴 하지만 jdk : 1.7.0 / tomcat 7.0.67 / lombok 1.16으로 해서 동작한다는 경우도 보았다.
[ Tomcat Log 한글 깨짐 ]
Tomcat 9.0 설치시 로그가 한글인데 깨짐
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
handlers = 1catalina.org.apache.juli.AsyncFileHandler, 2localhost.org.apache.juli.AsyncFileHandler, 3manager.org.apache.juli.AsyncFileHandler, 4host-manager.org.apache.juli.AsyncFileHandler, java.util.logging.ConsoleHandler
.handlers = 1catalina.org.apache.juli.AsyncFileHandler, java.util.logging.ConsoleHandler
############################################################
# Handler specific properties.
# Describes specific configuration info for Handlers.
############################################################
1catalina.org.apache.juli.AsyncFileHandler.level = FINE
1catalina.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs
1catalina.org.apache.juli.AsyncFileHandler.prefix = catalina.
1catalina.org.apache.juli.AsyncFileHandler.maxDays = 90
1catalina.org.apache.juli.AsyncFileHandler.encoding = UTF-8
2localhost.org.apache.juli.AsyncFileHandler.level = FINE
2localhost.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs
2localhost.org.apache.juli.AsyncFileHandler.prefix = localhost.
2localhost.org.apache.juli.AsyncFileHandler.maxDays = 90
2localhost.org.apache.juli.AsyncFileHandler.encoding = UTF-8
3manager.org.apache.juli.AsyncFileHandler.level = FINE
3manager.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs
3manager.org.apache.juli.AsyncFileHandler.prefix = manager.
3manager.org.apache.juli.AsyncFileHandler.maxDays = 90
3manager.org.apache.juli.AsyncFileHandler.encoding = UTF-8
4host-manager.org.apache.juli.AsyncFileHandler.level = FINE
4host-manager.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs
4host-manager.org.apache.juli.AsyncFileHandler.prefix = host-manager.
4host-manager.org.apache.juli.AsyncFileHandler.maxDays = 90
4host-manager.org.apache.juli.AsyncFileHandler.encoding = UTF-8
java.util.logging.ConsoleHandler.level = FINE
java.util.logging.ConsoleHandler.formatter = org.apache.juli.OneLineFormatter
java.util.logging.ConsoleHandler.encoding = UTF-8
############################################################
# Facility specific properties.
# Provides extra control for each logger.
############################################################
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = INFO
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = 2localhost.org.apache.juli.AsyncFileHandler
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager].level = INFO
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/manager].handlers = 3manager.org.apache.juli.AsyncFileHandler
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/host-manager].level = INFO
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/host-manager].handlers = 4host-manager.org.apache.juli.AsyncFileHandler
# For example, set the org.apache.catalina.util.LifecycleBase logger to log
# each component that extends LifecycleBase changing state:
#org.apache.catalina.util.LifecycleBase.level = FINE
# To see debug messages in TldLocationsCache, uncomment the following line:
#org.apache.jasper.compiler.TldLocationsCache.level = FINE
# To see debug messages for HTTP/2 handling, uncomment the following line:
#org.apache.coyote.http2.level = FINE
# To see debug messages for WebSocket handling, uncomment the following line:
#org.apache.tomcat.websocket.level = FINE
내용 중 Handler specific properties의 인코딩 방식인 UTF-8을 EUC-KR로 변경
깨짐없이 정상 출력
반응형
'Backend > Utils' 카테고리의 다른 글
[gitHub]Large files detected. You may want to try Git Large File Storage (0) | 2024.03.12 |
---|---|
[Tiles] 프로젝트에 Tiles 적용 (0) | 2024.03.04 |
JavaMailSender 사용시 에러 (0) | 2024.02.19 |
[Feat] Pagenation, Select 옵션 (0) | 2023.10.29 |
[Feat] 다중선택, Radio 옵션, VO 파라미터 전달 (0) | 2023.10.27 |