Spring集成的可行性
我是 Spring Integration 的新手。我有一些关于 Spring Integration 的问题,
- 其中有哪些实时场景 哪个 Spring 集成可以 实施的 ?
- 创建一个有什么好处 额外的弹簧集成层?
- 如果没有邮件系统 spring 实现,可以 spring 积分仍可用于 一体化 ?
是不是像Spring Integration一样可以连接用两种不同语言开发的两个系统?
I am new to Spring Integration .There a few questions I have regarding spring integration
- What are some real time scenarios in
which spring integration can be
implemented ? - What is the advantage of creating an
extra spring integratio layer ? - If a mailing system is not
implemented in spring , can spring
integration still be used for
integration ?
Is it something like spring integration can connect two systems developed in two different languages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
哪些实时场景可以实现spring集成?
创建额外的 spring 集成层有什么好处?
如果邮件系统不是用spring实现的,还可以使用spring集成进行集成吗?
像Spring Integration这样的东西可以连接用两种不同语言开发的两个系统吗?
What are some real time scenarios in which spring integration can be implemented ?
What is the advantage of creating an extra spring integratio layer ?
If a mailing system is not implemented in spring , can spring integration still be used for integration ?
Is it something like spring integration can connect two systems developed in two different languages?
而且,您还可以查看 https ://spring.io/blog/2011/02/24/green-beans-getting-started-with-spring-integration 介绍了 Spring Integration 以及基本范例。它会帮助您开始,然后您就可以开始理解示例等等。
And, also, you might check out https://spring.io/blog/2011/02/24/green-beans-getting-started-with-spring-integration which introduces Spring Integration as well as the basic paradigms. It'll get you started and then you can start to make sense of the samples and so on.
真实的场景不胜枚举。 Spring Integration 是一个框架,允许您基于企业集成模式构建消息驱动系统。
请注意,当我说消息传递时,我并不是指 JMS 等远程消息传递或类似的东西。消息传递首先是一种架构范例(模式),它允许您构建松散耦合且可扩展的系统,例如此处描述的系统:http://blog.springsource.com/2010/03/18/eip-loan-broker-reference-implementation-part- 1/
Spring Integration 还提供远程适配器(TCP、HTTP、MAIL 等)来与远程系统集成。我们有许多示例,您可以查看以获取更多详细信息 http ://blog.springsource.com/2010/09/29/new-spring-integration-samples/
我想通过阅读这些文章你会明白“优势是什么”。我现在想说的是,在我看来,优势在于框架本身。通过使用它,您将无需编写集成代码。
“如果一个邮件系统不是用spring实现的,还可以用spring集成进行集成吗?” - 我不确定我是否理解这个问题。 Spring Integration 使用 JavaMail API 与电子邮件服务器进行通信(发送和接收)。您能详细说明一下吗?
The real scenarios are to many to mention. Spring Integration is a framework that allows you to architect message-driven systems based on Enterprise Integration Patterns.
Note, when I say Messaging I am not implying remote messaging such as JMS or anything like that. Messaging first and foremost is an is an architectural paradigm (pattern) which allows you to build loosely coupled and scalable systems such as the one described here: http://blog.springsource.com/2010/03/18/eip-loan-broker-reference-implementation-part-1/
Spring Integration also provides remote adapters (TCP, HTTP, MAIL etc.) to integrate with remote systems. We have many samples that you can go through to get more details http://blog.springsource.com/2010/09/29/new-spring-integration-samples/
I think by going through the articles you'll get the sense of "what is the advantage". ALl I want to state now is that IMO the advantage is the framework itself. By using it you'll spare yourself from writing integration code.
"If a mailing system is not implemented in spring , can spring integration still be used for integration ?" - I am not sure I understand the question. Spring Integration is using JavaMail API to communicate with emails servers (both send and receive). Could you please elaborate?