@@ -2,29 +2,30 @@ spring.data.neo4j.open-in-view=true
22spring.data.neo4j.username =neo4j
33spring.data.neo4j.password =secret
44spring.data.neo4j.repositories.enabled =true
5- spring.data.web.pageable.default-page-size =20
6- spring.data.web.pageable.max-page-size =200
7- spring.data.web.pageable.page-parameter =page
8- spring.data.web.pageable.size-parameter =size
5+ spring.data.jpa.repositories.enabled =true
6+ # spring.data.web.pageable.default-page-size=20
7+ # spring.data.web.pageable.max-page-size=200
8+ # spring.data.web.pageable.page-parameter=page
9+ # spring.data.web.pageable.size-parameter=size
910spring.datasource.url =jdbc:postgresql://localhost:5432/learn-neo4j
1011spring.datasource.username =jdbc
1112spring.datasource.password =jdbcpwd
1213spring.datasource.driver-class-name =org.postgresql.Driver
13- spring.data.jpa.repositories.enabled =true
14- spring.dao.exceptiontranslation.enabled =true
1514spring.datasource.generate-unique-name =true
1615spring.datasource.name =Learnneo4jDS
1716spring.datasource.type =org.postgresql.jdbc3.Jdbc3PoolingDataSource
17+ spring.dao.exceptiontranslation.enabled =true
1818# Disable feature detection by this undocumented parameter. Check the org.hibernate.engine.jdbc.internal.JdbcServiceImpl.configure method for more details.
1919spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults =false
2020# Because detection is disabled you have to set correct dialect by hand.
21- spring.jpa.database-platform =org.hibernate.dialect.PostgreSQL9Dialect
21+ spring.jpa.database-platform =org.hibernate.dialect.PostgreSQL95Dialect
2222spring.jpa.hibernate.ddl-auto =create-drop
2323spring.jpa.properties.hibernate.globally_quoted_identifiers =true
24- spring.thymeleaf.enabled =true
25- spring.thymeleaf.check-template-location =true
26- spring.thymeleaf.cache =false
2724spring.jpa.open-in-view =true
2825spring.jpa.generate-ddl =true
2926spring.jpa.show-sql =true
30- # spring.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQL94Dialect
27+ spring.thymeleaf.enabled =true
28+ spring.thymeleaf.check-template-location =true
29+ spring.thymeleaf.cache =false
30+ # spring.properties.hibernate.dialect=org.hibernate.spatial.dialect.postgis.PostgisPG95Dialect
31+
0 commit comments