728x90
반응형
728x90
반응형
728x90
반응형

Spring boot의 war 파일을 weblogic에서 배포시 net.sf.log4jdbc.sql.jdbcapi.DriverSpy 에러와 함께 배포가 되지 않는 문제가 있다.

 

weblogic version : 12.2.1.3.0

 

변경 내용을 활성화하는 중 오류가 발생했습니다. 자세한 내용은 로그를 참조하십시오.

java.lang.IllegalStateException: Cannot load driver class: net.sf.log4jdbc.sql.jdbcapi.DriverSpy

Cannot load driver class: net.sf.log4jdbc.sql.jdbcapi.DriverSpy

 

 

# db connection1
spring.datasource.url=jdbc:log4jdbc:mysql://xxx.xxx.xxx.xxx:3306/myDb
spring.datasource.username=accountName
spring.datasource.password=password
spring.datasource.driver-class-name=net.sf.log4jdbc.sql.jdbcapi.DriverSpy

 

db 연결에 대한 정보에서 driver 문제로 인해 발생된 것.

아래와 같이 변경하면 배포 된다. (대신 로그가 간소화 된다는 점 참고.)


# db connection2

spring.datasource.url=jdbc:log4jdbc:mysql://xxx.xxx.xxx.xxx:3306/myDb
spring.datasource.username=accountName
spring.datasource.password=password

spring.datasource.driver-class-name=com.mysql.jdbc.Driver

 

 

 

 

728x90
반응형
728x90
반응형

Whitelabel Error Page 

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Dec 10 18:57:02 KST 2019

There was an unexpected error (type=Internal Server Error, status=500).

Error resolving template "/contents/sapLIst", template might not exist or might not be accessible by any of the configured Template Resolvers

 

 

환경

weblogic 12.2.1.3.0

spring boot 2.0.4.RELEASE

 

현상

로컬에서 실행했을 때는 문제가 없지만 weblogic에서는 페이지 에러가 난다.

 

결론

html 파일명이 sapList 인데 sapLIst로 대문자로 썼다고 weblogic이 못찾은 것.

 

728x90
반응형

+ Recent posts