로컬에선 잘 동작하더니 ECR로 올려서 App Runner로 빌드하니 아래와 같이 에러가 나온다. [ "SLF4J: Class path contains multiple SLF4J providers.", "SLF4J: Found provider [org.slf4j.simple.SimpleServiceProvider@685f4c2e]", "SLF4J: Found provider [ch.qos.logback.classic.spi.LogbackServiceProvider@7daf6ecc]", "SLF4J: See https://www.slf4j.org/codes.html#multiple_bindings for an explanation.", "SLF4J: Actual provider is of type [org..
기존 mssql에서 postgresql로 전환을 좀 해볼까하여 다중 데이터베이스를 연결하는 도중에 아래와 같은 에러가 났다. java.sql.SQLFeatureNotSupportedException: Method org.postgresql.jdbc.PgConnection.createClob() is not yet implemented. at org.postgresql.Driver.notImplemented(Driver.java:699) at org.postgresql.jdbc.PgConnection.createClob(PgConnection.java:1349) at com.zaxxer.hikari.pool.HikariProxyConnection.createClob(HikariProxyConnection...
사용자가 보유한 도메인들에 대한 정보들을 CSV 파일로 다운로드 받는 기능을 만들고자 한다. CSV 파일로 만들 것이기 때문에 build.gradle 파일 dependencies에 아래와 같이 추가해준다. dependencies { implementation("com.opencsv:opencsv:4.4") } 우선 컨트롤러를 만들고, 파일을 다운로드 할 것이니 때문에 따로 응답을 주는 것은 없다. @RestController @RequestMapping("/domains") class Controller( private val service: Service ) { @GetMapping("/{userId}/csv") fun download( @PathVariable userId: String ): Resp..
Spring Boot 2.6.11에 Kotlin 1.4.10을 세팅하고 API를 테스트용으로 쏴봤다. 빌드도 잘되고, 데이터베이스의 데이터도 잘 가져왔는데 엉뚱하게 stream하여 map를 만들어주다가 코틀린의 jackson 모듈을 사용하는 데에서 아래와 같이 에러가 났다. 2022-08-23 14:31:04.320 ERROR 14577 --- [nio-8088-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Handler dispatch failed; nested exception is java.lang...