반응형
Postgresql maven
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.3.3</version>
</dependency>
Postgresql을 연동시키기 위한 Spring jdbc, Commons dbcp2
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.3.16</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.9.0</version>
</dependency>
반응형
'language > Spring' 카테고리의 다른 글
[Spring/Maven] 검색기능 관련 maven (pom.xml) (0) | 2022.04.12 |
---|---|
[Java/Spring] FileUpload maven 설정 (0) | 2022.03.28 |
[Java/Spring] Spring Transaction / 스프링 트랜잭션 처리 (0) | 2022.03.23 |
[Java/Spring] Spring project에 Spring JDBC 설정하기 1 (0) | 2022.03.21 |
[Java/Spring] JoinPoint와 바인드 변수 (0) | 2022.03.20 |