Hibernate逆向工程:生成带有转义列名的hbm.xml(反引号)

时间:2013-09-04 15:15:09

标签: hibernate orm reverse-engineering hibernate-mapping

我想知道是否有办法生成带有转义列的hibernate映射文件(hbm.xml)(即使用反引号)。

所以而不是

<property name="myColumnId" type="java.lang.Long">

我想

 <property name="`myColumnId`" type="java.lang.Long">

我确实看到你可以指定

<property name="hibernate.globally_quoted_identifiers" value="true"/>

...(来自here)但我不确定在哪里插入。我已经尝试将其插入到我的hibernate.cfg.xml中,但没有注意到任何区别。这是hibernate使用文字框而不是转义hbm.xml中名称的另一种选择吗?

这里有一个类似的问题:https://forum.hibernate.org/viewtopic.php?p=2398283

提前感谢您的帮助! :d

0 个答案:

没有答案