Reputation: 195
How to set the hibernate.jdbc.fetch_size property in Spring boot Application?
Can this be set into application.properties?
Upvotes: 4
Views: 7013
Reputation: 444
You should use the prefix spring.jpa.properties.
spring.jpa.properties.
Check the official docs here
So, in the end, your properties should look like this: spring.jpa.properties.hibernate.jdbc.fetch_size
spring.jpa.properties.hibernate.jdbc.fetch_size
Upvotes: 8