1

运行 Hibernate 的 SchemaExport 时,如何消除以下这些错误?实际上它似乎并没有引起问题——我的测试仍然运行得很好——但我不喜欢看到错误并且不得不向下滚动很多只是为了看看测试出了什么问题。

有没有办法摆脱它们 - 通过解决错误或让它安静?

17:28:19 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table click drop constraint FK5A5C588CBB8DB5
17:28:19 ERROR SchemaExport:426 - user lacks privilege or object not found: PUBLIC.CLICK
17:28:19 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table click drop constraint FK5A5C5885AC11C60
17:28:19 ERROR SchemaExport:426 - user lacks privilege or object not found: PUBLIC.CLICK
17:28:19 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table click drop constraint FK5A5C58841979673
17:28:19 ERROR SchemaExport:426 - user lacks privilege or object not found: PUBLIC.CLICK
17:28:19 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table click drop constraint FK5A5C588430DFF29
17:28:19 ERROR SchemaExport:426 - user lacks privilege or object not found: PUBLIC.CLICK
17:28:19 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table click drop constraint FK5A5C588B6909BE1
17:28:19 ERROR SchemaExport:426 - user lacks privilege or object not found: PUBLIC.CLICK
17:28:19 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table comment drop constraint FK38A5EE5FCBB8DB5
4

2 回答 2

0

您使用的是哪个版本的 HsqlDB?我正在使用 2.2.9 和休眠 4.1.3。我没有看到任何错误..您可以使用用户 SA 尝试此版本。

或者您可以尝试在表和它使用的序列上为您的 PUBLIC 授予权限

于 2012-10-13T12:13:03.837 回答
-1

只是不要使用 2.2.x 系列的 hsqldb。2.0.0 没问题。

于 2012-10-14T05:55:26.537 回答