My collection of Hibernate tip articles should also include this article by Jason Carreira. 🙂
Category: Development
Hibernate Performance articles
I talked to a friend today, and he is implementing an intranet system with Hibernate. They are having performance issues, even though they are using caching and lazy loading. It’s probably due to a bit of a complicated database model, and they might need to tweak some of the SQL that is generated. I did a google and found some relavant articles:
- Gavin King’s tips
- Things I learned about Hibernate….
- Improving Hibernate’s Performance
- GC and Hibernate
I’ll be intrested to see what he ends up with. I’m convinced it will perform ok with some tweaking, you just have to figure out what to tweak. 😉
Test coverage with Hansel and Gretel
IBM DeveloperWorks has an article and code coverage tools here.
It looks really smooth, especially Hansel which throws JUnit errors at you if you have parts of the code not covered. I’d like to try out TDD on a project, but I think I’ll try to find some kind of TDD workshop to attend before I take the plunge.