开发者

Hibernate NamingStrategy implementation that maintains state between calls

开发者 https://www.devze.com 2022-12-22 13:52 出处:网络
I\'m working on a project where we use Hibernate and JBoss 5.1. We need our entity classes to be mapped to Oracle tables that follow a certain naming convention. I\'d like to avoid having to specify e

I'm working on a project where we use Hibernate and JBoss 5.1. We need our entity classes to be mapped to Oracle tables that follow a certain naming convention. I'd like to avoid having to specify each table and column name in annotations. Therefore, I'm currently considering implementing a custom implementation of org.hibernate.cfg.NamingStrategy.

The SQL naming conventions require the name of columns to have a suffix that is equivalent to a prefix of the table name. If there is a table开发者_C百科 "T100_RESOURCE", the ID column would have to be named "RES_ID_T100".

In order to implement this in a NamingStrategy, the implementation would have to maintain state, i.e. the current class name it is creating the mappings for. It would rely on Hibernate

  • to always call classToTableName() before propertyToColumnName()
  • and to determine all column names by calling propertyToColumnName() before the next call to classToTableName()

Is it safe to do that or are there situations where Hibernate will mix things up? I am not thinking of problems through multiple threads here (which can be solved by keeping the last class name in a ThreadLocal) but also of Hibernate deliberately calling this out of order in certain circumstances. For example Hibernate asking for mappings of three properties of class A, then one of class B, then again more attributes of class A.


That sounds like a really bad idea. Subverting the a stateless interface like that is almost certainly going to end in tears, because as you say, there's no guarantee at all that Hibernate will call things in the right order.

I'm surprised at this naming convention, though, especially when you consider that Oracle has a hard-wired 30 character limit on identifiers. It can be hard enough trying to come up with good names that fit, without worrying about having the table name prefixing every column name. This certainly isn't an Oracle naming convention I've ever come across, it's just wasteful.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号