hibernate优化

优化内容:

1)缓存session.clear.

2)1+n问题(右级联查询引起。)解决方案。fetchType=lazy(默认是eger);betchSize=size;join fetch

只要是manyToOne或oneToMany都会出现这种问题

你可能感兴趣的:(hibernate优化)