Is there any way to declare final fields for Hibernate-managed objects? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T15:22:21Z http://stackoverflow.com/feeds/question/912093 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/912093/is-there-any-way-to-declare-final-fields-for-hibernate-managed-objects 3 Is there any way to declare final fields for Hibernate-managed objects? Kyle Krull 2009-05-26T18:41:17Z 2009-05-28T14:56:54Z <p>I'm just getting started with Hibernate, and all the examples I'm seeing so far look pretty much like the tutorial in the Hibernate documentation:</p> <pre><code>package org.hibernate.tutorial.domain; import java.util.Date; public class Event { private Long id; private String title; private Date date; public Event() {} /* Accessor methods... */ } </code></pre> <p>Specifically: none of the fields are declared as 'final', and there must be a no-argument constructor so that the Hibernate framework can instantiate the class and set its fields.</p> <p>But here's the thing - I <strong>really</strong> don't like making my classes mutable in any way whenever I can avoid it (Java Practices: Immutable Objects make a pretty strong argument for doing this). So <em>is there any way to get Hibernate to work even if I were to declare each of the fields 'final'</em>?</p> <p>I understand that Hibernate uses Reflection to instantiate its classes and therefore needs to be able to invoke a constructor of some sort without taking the risk that it would pick the wrong constructor or pass the wrong value to one of its parameters, so it's probably safer to invoke the no-arg constructor and set each field one at a time. However, shouldn't it be possible to provide the necessary information to Hibernate so that it can safely instantiate immutable objects?</p> <pre><code>public class Event { private final Long id; private final String title; private final Date date; public Event(@SetsProperty("id") Long id, @SetsProperty("title") String title, @SetsProperty("date") Date date) { this.id = id; this.title = title; this.date = new Date(date.getTime()); } /* Accessor methods... */ </code></pre> <p>}</p> <p>The @SetsProperty annotation is of course fictitious, but doesn't seem like it should be out of reach.</p> http://stackoverflow.com/questions/912093/is-there-any-way-to-declare-final-fields-for-hibernate-managed-objects/912923#912923 1 Answer by bwalliser for Is there any way to declare final fields for Hibernate-managed objects? bwalliser 2009-05-26T21:42:44Z 2009-05-26T21:42:44Z <p>Just remove the <code>final</code>s. <code>Final</code> is not essential for an immutable object.</p> http://stackoverflow.com/questions/912093/is-there-any-way-to-declare-final-fields-for-hibernate-managed-objects/920203#920203 2 Answer by Robert Munteanu for Is there any way to declare final fields for Hibernate-managed objects? Robert Munteanu 2009-05-28T10:34:49Z 2009-05-28T10:34:49Z <p>This sounds like it is not a use case for Hibernate, since many operations it performs concern mutable state:</p> <ul> <li>merging objects</li> <li>dirty state checking</li> <li>flushing changes</li> </ul> <p>That being said, if you're concerned about immutability you may choose to provide wrappers around your objects, with copy-constructors:</p> <pre><code>public class FinalEvent { private final Integer id; public FinalEvent(Event event) { id = event.id; } } </code></pre> <p>It does mean extra work though.</p> <p><hr /></p> <p>Now that I'm thinking of it, hibernate sessions are usually thread-bound and this voids at least one the benefits of the final fields - safe publication.</p> <p>What other the benefits of final fields are you looking for?</p> http://stackoverflow.com/questions/912093/is-there-any-way-to-declare-final-fields-for-hibernate-managed-objects/920360#920360 3 Answer by tkopec for Is there any way to declare final fields for Hibernate-managed objects? tkopec 2009-05-28T11:19:54Z 2009-05-28T11:19:54Z <p>Immutable object means an object with no methods that modify its state (i.e. its fields). The fields needn't be final. So you can remove all mutators and configure Hibernate to use fields acces instead of accessors or you can just mark no-arg constructor and mutators as deprecated. It's a bit workaround but better that than nothing.</p> http://stackoverflow.com/questions/912093/is-there-any-way-to-declare-final-fields-for-hibernate-managed-objects/921285#921285 1 Answer by bkent314 for Is there any way to declare final fields for Hibernate-managed objects? bkent314 2009-05-28T14:56:54Z 2009-05-28T14:56:54Z <p>You may be able to accomplish the desired result by using a Builder pattern. I read a <a href="https://forum.hibernate.org/viewtopic.php?f=9&amp;t=992649&amp;view=next" rel="nofollow">posting</a> a while ago on the Hibernate Forums discussing the idea (though I never implemented it myself...)</p>