728x90
1. Spring Boot (Spring Security) - PasswordEncoder
.passwordEncoder()를 통해 활성화
------------------------------------------------------------------------------------------------------------------
ERROR 1.
오류 발생 장소 : 회원가입 기능에서 등장한 오류
2022-12-21 13:17:47.886 WARN 18008 --- [nio-8080-exec-3] o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08000
2022-12-21 13:17:47.886 ERROR 18008 --- [nio-8080-exec-3] o.h.engine.jdbc.spi.SqlExceptionHelper : Socket fail to connect to host:address=(host=localhost)(port=3307)(type=primary). Connection refused: no further information
2022-12-21 13:17:47.893 ERROR 18008 --- [nio-8080-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.transaction.CannotCreateTransactionException: Could not open JPA EntityManager for transaction; nested exception is org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection] with root cause
오류 원인 : 스프링 부트에서의 포트주소와 지원하는 포트 주소가 서로 달라서 생기는 오류
오류 해결 방법 : 포트 주소를 서로 맞춰준다.
------------------------------------------------------------------------------------------------------------------
728x90
'Daily Trainning' 카테고리의 다른 글
2022-12-25 Sun [백준_단계별로 풀어보기, 정보처리기사 필기] (0) | 2022.12.25 |
---|---|
2022-12-24 Sat [백준_단계별로 풀어보기, 정보처리기사 필기] (0) | 2022.12.24 |
2022-12-23 Fri [백준_단계별로 풀어보기] (0) | 2022.12.23 |
2022-12-22 Thurs [Spring Boot - html, Security, 백준 ] (0) | 2022.12.22 |