Yeji's Tech Notes
반응형
[Gradle] Authentication scheme 'all'(Authentication) is not supported by protocol 'file'
기록 2022. 6. 23. 10:24

1. ISSUE LOG Could not resolve all dependencies for configuration ':classpath'. > Authentication scheme 'all'(Authentication) is not supported by protocol 'file' 2. Error 위치 gradle.properties nexusUrl="http://nexus.something.com" nexusUser="someone" nexusPassword="somepassword" build.gradle repositories { maven { url '$nexusUrl' allowInsecureProtocol = true credentials { username = project.nexus..

java.lang.IllegalArgumentException: Unknown return value type: java.lang.Boolean
Spring 2022. 1. 6. 09:44

개요 front단에서 api호출시 발생하는 에러 @GetMapping("/image/status/{shelfId}") @ResponseBody public boolean checkImageUpdateStatus(){ } @ResponseBody 추가하지않을 경우 발생하는 에러 서버에서 클라이언트로 response를 전송하기 위해서 @ResponseBody를 사용해 HTTP요청 본문에 담긴 값들을 자바 객체로 변환시켜 객체에 저장합니다. - 다른해결방안 @Controller -> @RestController로 변경해주면됩니다.

article thumbnail
postgres - 테이블 조회시 오류 (character with byte ...)
기록 2021. 9. 30. 08:15

현재 postgres에서 DB를 restore후 조회시 ERROR가 발생했습니다. character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "UHC" 이 에러는 클라이언트의 인코딩 타입이 맞지 않아서 발생하는 에러입니다. 해결방법 1. 클라이언트 인코딩 확인 DB => show client_encoding; client_encoding 값이 UHC인 것을 확인 2. 인코딩 타입 세팅 DB => set client_encoding = 'UTF8'; 3. 재확인 DB=> show client_encoding; 명령어 두개만 기억해주면 됩니다 show client_encoding; set client_encod..

반응형