支持 SOA 的集成脚本
在我们的开发环境中,我们确实有几个相互依赖的服务,需要在使用系统之前部署它们。最好的解决方案是什么。我尝试了 ANT,这似乎不是一个好的解决方案。考虑使用 Maven,但不知道从哪里开始。有什么想法吗?
In our dev environment we do have couple of services that is dependent on each other, which need to be deployed before we use the system. What would be the best solution. I tried ANT which seems like not a good solution. Thinking to use Maven but not sure where to start. Any Idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Maven,您可以在不同的模块中拥有不同的服务,并在运行测试套件等之前将它们全部打包和部署。除了有免费书籍这一事实之外,我没有什么可以更详细地告诉您的帮助您使用 Maven。
当然,您也可以使用 Ant 或其他构建系统来完成所有这些工作。然而,如果您选择 Ant,我肯定至少建议使用像 Ivy 这样的依赖管理系统。
If you use Maven you can have the different services in different modules that and get them all packaged and deployed before you run a test suite or so. There is not much I can tell you in more detail apart from the fact that there are free books around that should help you with Maven usage.
Of course you can also do all that with Ant or other build systems. However I would definitely at least suggest to use a dependency management system like Ivy if you opt for Ant.