我希望 Hibernate 在生成 DDL 时包含来自我的 java 源代码的注释。我很乐意将其作为注释或 javadoc 标记。
IOW:我希望能够去
@Entity
@DDLComment "This entity is cool"
class Foo {
@DDLComment "But this field is kinda lame"
int lame_o_rama;
并且(在 oracle 中),休眠应该生成
CREATE TABLE FOO ( LAME_O_RAMA number };
COMMENT ON FOO IS 'This entity is cool';
COMMENT ON FOO.LAME_O_RAMA 'But this field is kinda lame';
是否有注释、文档标签、配置选项等来执行此操作?