반응형
멍청이 같지만...
org.postgresql.util.PSQLException: The authentication type 10 is not supported. Check that you have configured the pg_hba.conf file to include the client's IP address or subnet, and that it is using an authentication scheme supported by the driver.
위와 같은 에러가 난다면,
javax.servlet-api가 3.0이상에 PostgreSQL 버전이 맞지 않아서이니 아래와 같이 수정!
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.22</version>
</dependency>
반응형
'Day by Day' 카테고리의 다른 글
[맥북팁] Final Cut Pro 에러 w/ Engineer from SG (0) | 2022.03.03 |
---|---|
[알고있으면 유용한] 프론트엔드개발자 면접질문정리 (1) | 2022.02.15 |
[알고있으면 유용한] NPM ENOSELF 에러 (0) | 2022.02.14 |
[M1맥] zsh Alias 주기 (0) | 2021.06.09 |
[스프링부트와 AWS로 혼자 구현하는 웹서비스] 실습, 환경설정 (0) | 2021.05.24 |