File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
devops/test-connection/src/test_connection
querydsl-jpa/src/test/resources
com/querydsl/jpa/testutil Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1010
1111(def postgres-db {:classname " org.postgresql.Driver"
1212 :subprotocol " postgresql"
13- :subname " //localhost:5433 /querydsl"
13+ :subname " //localhost:5432 /querydsl"
1414 :user " querydsl"
1515 :password " querydsl" })
1616
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ services:
2525 postgresql :
2626 image : postgis/postgis:16-3.4-alpine
2727 ports :
28- - " 5433 :5432"
28+ - " 5432 :5432"
2929 volumes :
3030 - ./db/postgresql.sql:/docker-entrypoint-initdb.d/postgresql.sql
3131 environment :
Original file line number Diff line number Diff line change 254254 <property name =" hibernate.archive.autodetection" value =" class" />
255255 <property name =" hibernate.dialect" value =" com.querydsl.jpa.support.QPostgreSQL9Dialect" />
256256 <property name =" hibernate.connection.driver_class" value =" org.postgresql.Driver" />
257- <property name =" hibernate.connection.url" value =" jdbc:postgresql://localhost:5433 /querydsl" />
257+ <property name =" hibernate.connection.url" value =" jdbc:postgresql://localhost:5432 /querydsl" />
258258 <property name =" hibernate.connection.username" value =" querydsl" />
259259 <property name =" hibernate.connection.password" value =" querydsl" />
260260 <!-- <property name="hibernate.show_sql" value="true"/> -->
268268 <exclude-unlisted-classes >false</exclude-unlisted-classes >
269269 <properties >
270270 <property name =" jakarta.persistence.jdbc.driver" value =" org.postgresql.Driver" />
271- <property name =" jakarta.persistence.jdbc.url" value =" jdbc:postgresql://localhost:5433 /querydsl" />
271+ <property name =" jakarta.persistence.jdbc.url" value =" jdbc:postgresql://localhost:5432 /querydsl" />
272272 <property name =" jakarta.persistence.jdbc.user" value =" querydsl" />
273273 <property name =" jakarta.persistence.jdbc.password" value =" querydsl" />
274274 <property name =" eclipselink.ddl-generation" value =" drop-and-create-tables" />
Original file line number Diff line number Diff line change 11# # MySQL
22hibernate.dialect =com.querydsl.jpa.support.QPostgreSQL9Dialect
33hibernate.connection.driver_class =org.postgresql.Driver
4- hibernate.connection.url =jdbc:postgresql://localhost:5433 /querydsl
4+ hibernate.connection.url =jdbc:postgresql://localhost:5432 /querydsl
55hibernate.connection.username =querydsl
66hibernate.connection.password =querydsl
77
You can’t perform that action at this time.
0 commit comments