4
votes
Case-insensitive search using Hibernate
For the simple case you describe, look at Restrictions.ilike(), which does a case-insensitive search.
Criteria crit = session.createCriteria(Person.class);
crit.add(Restrictions.ili …
2
votes
Hibernate: comparing current & previous record
Two easy options spring to mind:
Evict oldEntity before saving newEntity
Use session.merge() on oldEntity to replace the version in the session cache (newEntity) with the ori …
2
votes
Configure Hibernate to escape underscores in LIKE clause using SQL Server dialect
If you're using Criteria to create the query, you can create your own expression which subclasses org.hibernate.criterion.LikeExpression, using one of the protected constructors that takes in 'Char …
2
votes
Double-logging in Hibernate
All I can think of:
Check that your log4j config doesn't have multiple appenders defined at different levels? If you have your appender attached to the org.hibernate logger, and attac …
