java
-
Java 16 패턴 변수카테고리 없음 2024. 1. 5. 13:20
- 패턴 변수의 예시 if (obj instanceof String) { String str = (String) obj; System.out.println(str); } // 아래와 같이 변경 가능 if (obj instanceof String str) { System.out.println(str); } - 실제 프로젝트에서 쓰인 코드 if (authentication != null && authentication.getPrincipal() instanceof User) { User currentUser = (User) authentication.getPrincipal(); request.setAttribute("currentUser", currentUser); } // 아래와 같이 변경 if (auth..
-
[오류기록] (추가내용) Driver net.sf.log4jdbc.sql.jdbcapi.DriverSpy claims to not accept jdbcUrl개발 2023. 12. 13. 13:24
Driver net.sf.log4jdbc.sql.jdbcapi.DriverSpy claims to not accept jdbcUrl 에러 발생 배경 - 스프링부트 3.2.0으로 개발 후 war파일로 카페24에 배포하는 도중에 발생 발생 당시 로그Cause: java.lang.RuntimeException: Driver net.sf.log4jdbc.sql.jdbcapi.DriverSpy claims to not accept jdbcUrl, jdbc:log4jdbc:mariadb://localhost:3306/0000 at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30) ~[mybatis-3..