R Ram
R Ram

Reputation: 195

Setting hibernate fetch size in Spring boot

How to set the hibernate.jdbc.fetch_size property in Spring boot Application?

Can this be set into application.properties?

Upvotes: 4

Views: 7013

Answers (1)

denisq
denisq

Reputation: 444

You should use the prefix 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

Upvotes: 8

Related Questions