Flyway 和 Liquibase 通过 Soap、Rest 等 Web 服务进行调用
我已经集成了 liquibase 和与我的应用程序一起飞行。两者都工作正常。两者都有各自的优点和缺点。缺点。现在我关心的是网络服务。 Rest 和 Soap 可以与这些工具一起使用吗?如果是的话可以详细说明一下吗??? 我需要与 hudson 一起使用这些工具,并且可以休息和休息。肥皂被用来称呼liquibase或flyway。提前致谢。
I have integrated both liquibase & flyway with my application. Both are working fine. Both have their pros & cons. Now my concern is with webservices. Can Rest and Soap be used with these tools. If yes then can you please elaborate in details???
I need to use these tools with hudson and can Rest & Soap be used to call liquibase or flyway. Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在具有远程/服务/数据访问层的分层架构中
Flyway 和 Liquibase 都不对所使用的远程技术类型施加限制。
In a layered architecture with Remoting / Services / DataAccess layers
Neither Flyway nor Liquibase impose restrictions on the kind of remoting technology being used.
Liquibase 有一个主要通过 liquibase.Liquibase (http://www.liquibase.org/api/liquibase/Liquibase.html) 访问的 java 接口,可用于以编程方式执行 liquibase 操作。
没有对休息或肥皂的内置支持,但可以轻松创建。
更新:示例代码
Liquibase has a java interface primarily accessed through liquibase.Liquibase (http://www.liquibase.org/api/liquibase/Liquibase.html) which can be used to programatically perform liquibase operations.
There is not built-in support for rest or soap, but either can easily be created.
UPDATE: Example code