使用 ant 启动/停止 H2
我在 Windows PC 上安装了 H2。 我将从 ant 启动 H2,以便它可以在测试套件执行期间自动启动/停止。 我怎样才能用蚂蚁做到这一点? 我必须在 ./service 目录中调用 .bat 还是什么? 我找不到任何 H2-ant-tasks 库。
谢谢
I installed H2 on a Windows PC.
I would start H2 from ant so that it can be automatically started/stopped during a test suite execution.
How can I do this with ant?
Have I to call .bat in ./service directory or what?
I can't find any H2-ant-tasks library.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有特定任务,最好的方法可能是使用
任务并调用适当的 .bat 文件。If there's no particular task, probably the best way is to make use of the
<exec>
task and call the appropriate .bat files.