如何防止 hibernate3-maven-plugin HBM2DDL 打印到控制台
我使用 hibernate3-maven-plugin 自动创建一个 SQL 脚本,我可以使用它在新数据库中创建数据库架构。我通过 hbm2ddl 工具执行此操作。我认为,当我指示它将 SQL 写入文件时,它不会再用 50 页 SQL 搞乱我的 Maven 构建。无论如何要让它停止写入控制台而只写入文件?找不到答案!
I used the hibernate3-maven-plugin to automatically create a SQL script I can use to create a database schema in a new database. I do this via the hbm2ddl tool. I thought that when I instructed it to write the SQL to a file it would stop cluttering up my maven builds with 50 pages of SQL. Anyway to make it stop writing to the console and only write to the file? Can't find the answer!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其添加到该插件的配置中:
Add this to the config for this plugin:
有一个属性叫做“console”,你只需要把它设置为“false”
There is a property called "console", you just need to set it as "false"