I have a method that can potentially make a lot of calls to a database when validating a list of entities using Hibernate's default traversable resolver. If I annotate it @Transactional, it runs nearly four times faster. A few questions:
1) Why is it faster?
2) How can I replicate that speed increase without making the method transactional? I have absolutely no need to wrap this method in a transaction, and making it transactional is at odds with the real intent of the method.
@Transactionalis is always the case, without you can do it manually, with OpenSessionInView filter, possibly with other means. Also there is no reason to avoid@Transactionalreally. – mrembisz Feb 13 '12 at 16:49