5
Some companies that work with containers Java EE
say use Application Buses, never worked with such feature and would like to know two things about them:
- what is?
- how they work?
5
Some companies that work with containers Java EE
say use Application Buses, never worked with such feature and would like to know two things about them:
3
As an introduction, it should first be stressed that ESBs are agnostic in terms of technology, being this a premise and even factor that makes large companies with a heterogeneous park of applications sweeten bus services.
Another thing you quoted in the question is application bus, I personally had never heard this term, even searched and found nothing related. The standard is even bus services, services contained in an application
Briefly, the explanation of Wikipedia is quite good, ie service bus is a model of software architecture for designing and implementing mutual communication between applications in a heterogeneous environment in which one seeks a service-oriented architecture.
An interesting point we should point out is that busses by themselves do not deliver service-oriented architectures, but in many cases are essential to compose such an architecture.
I would say that buses are the guys who don’t know the semantic meaning of the messages exchanged, but who know much better than any other application the syntax of the most varied types of information exchange, then they worry about being the abstraction for the correct message exchange, without worrying almost always about specific business rules.
In a corporate environment it is common to have many applications built on the most diverse platforms, each having (or not) different types of data exchanges. Common examples are file exchanges in file system or FTP
, construction of views in databases, message in any messaging service, web services SOAP, end points REST and many other standards and ways to make information available for integration.
Now imagine you have to do the point-to-point integration of each of these applications? If we have 10 applications, which is little in a corporate environment, and each of them has its own integration standard we would have to implement in the nail 100 integrations!!!
It is at this point that the midlewares services bus entry, ie aim to abstract and centralize the heterogeneity found in these corporate environments, providing integration with low coupling and more configurations oriented than coding.
Buses have at least these 4 characteristics, which can be divided into many others:
Very common scenarios in which they are adopted, including also those already mentioned, are these:
Some examples of ESBs are these:
This was a summary of what is and what can make a bus, in the documentation of providers listed above you can see many other features and benefits a corporation can get when it adopts a service bus.
About the term Application Bus, I may have really confused, but the context is an environment where there are several application suppliers, with for example financial institutions and there is a need for communication between such applications and some in particular that coordinate the provision and maintenance of certain data. As I have never worked with this type of technology I can certainly be using the wrong term, I also researched and did not find, but the concept is exactly what ESB offers. Thanks for the reply, I voted on it because so far it is the one that responds.
@Delfino ok, if you have an application scenario it becomes simpler to design an architecture where the solution applies, then I can update the answer.
1
Man, I’ll give you a clear answer, better than copying and pasting here like my friend did there.
Come on, imagine you have an app that consumes one service from another. so far so good ?
Now imagine that you have one application that consumes the service of another, and that one consumes the service of another application to give its answer. It’s getting complex, isn’t it? It will take dozens of interfaces for you to do this, imagine now if you have hundreds of middlewares running doing this crazy thing there ? for the maintenance you will go crazy young
That’s where the bus (ESB) comes in, the idea is that it consumes all the services and does the routing and orchestration of it, it’s able to pick up all the wsdls there fill them with more content at runtime (this is called orchestration), out it will give you translation of msgs and other things, all with just one interface (abstraction of layers).
Type A Component Architecture Facade..?
more or less that guy, the idea is this. And remember, quality always.
Browser other questions tagged software-architecture soa eai esb
You are not signed in. Login or sign up in order to post.
Delfino, what is the direct relationship between work with JEE containers and use ESB? One of the premises of a bus service is exactly being agnostic in terms of technology, so it might be cool for you to edit the question tags, considering using tags like [tag:software-architecture] or even [tag:soa] and [tag:web-service].
– Bruno César
Bruno as I do not know the technology, just listed tags that represent what I have found, I can edit the question, but maybe the ideal is you do it yourself, it is a healthy practice here, I do not care and consider a learning.
– Delfino
Calm down, I’ll draw up an answer for you as soon as I have time and I already see this issue :)
– Bruno César