Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

define dynamicUpdate property on application level for all entities?

Tags:

hibernate

i was wondering if hibernate supports to define dynamicUpdate=true property on application level instead of defining it for each entity ?

like image 402
Mahmoud Saleh Avatar asked Dec 22 '11 14:12

Mahmoud Saleh


1 Answers

This is not possible because dynamic-update/dynamic-insert are not optimized and well perform for all scenarios, It can create bottleneck in some cases, that's why hibernate guys did not give this option at application config level.

like image 199
Faisal Basra Avatar answered Sep 17 '22 13:09

Faisal Basra