I&#39;m working on an patch to expose HHH-272 functionality (custom column read and write expressions).in Annotations. At Steve and Emmanuel&#39;s request, I&#39;m doing this by creating a new @o.h.a.Column annotation to supplement the @javax.persistence.Column annotation, similar to what&#39;s in place today for @Table. This will allow for future extension beyond this one use case, eventually.<br>
<br>It&#39;s getting a bit dicey, though, because of the variety of places @j.p.Column can show up--for example, inside @AttributeOverride and @Columns. The question is how best to embed the companion @o.h.a.Column instances in these contexts. Create a @o.h.a.AttributeOverride and @o.h.a.AttributeOverrides? A totally separate grouping mechanism? It&#39;s a little easier with @Columns because that&#39;s already in the org.hibernate namespace hierarchy, so it can be modified. Thoughts?<br>
<br>-Rob<br>