Load To Technical Architect
[Jeus] JeusServer.log에 Java Application log가 기록이 안됨 본문
728x90
- OS : CentOS 7.9
- WAS : Jeus 8.5
- JAVA : 11
- Framework : Spring boot 2.2.4
현상 : Tomcat만 쓰다가 Jeus에 맞게 Spring boot의 내장 Tomcat 라이브러리를 지우고 빌드 한 다음 Jeus에 애플리케이션을 올렸는데 Jeus의 서버 로그인 JeusServer.log에 애플리케이션 로그가 남지 않음.
로그는 logback을 사용하여 남기고있음. logback과 Jeus의 log 라이브러리가 충돌하는것으로 보임.
해결 : 소스의 WEB-INF 폴더 안에 jeus-web-dd.xml 파일 생성, webinf-first의 옵션 enabled를 true로 설정
<?xml version="1.0" encoding="UTF-8"?>
<jeus-web-dd xmlns="http://www.tmaxsoft.com/xml/ns/jeus" version="8.5">
<webinf-first>
<enabled>true</enabled>
</webinf-first>
</jeus-web-dd>
728x90
'삽질 모음' 카테고리의 다른 글
[Oracle] package, function, procedure 일괄 생성 스크립트 실행 (0) | 2022.07.06 |
---|---|
[Jeus] Jenkins에서 Jeus Managed Server 시작시 빌드 Failure (0) | 2022.07.05 |
[Jeus] Data Source에서 SQL Server 연결시 발생하는 SSL 에러 해결 (0) | 2022.05.03 |
[Jenkins] sudo: no tty present and no askpass program specified (0) | 2022.01.21 |
[Jenkins] Send build artifacts over SSH 파일 전송 안됨 (0) | 2021.10.29 |
Comments