Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can anybody explain these words.Presentation Tier .Business Tier .Integration Tier in java EE with example?

What are these in Java EE .Presentation Tier .Business Tier .Integration Tier

I like to know what are these patterns with example

like image 895
giri Avatar asked Dec 02 '22 06:12

giri


1 Answers

  • Presentation tier: what the users see, typically a web application.
  • Business tier: where all the logic for your application is performed.
  • Integration tier: what connects the system to other systems (through database connections, JMS, web services, etc).
like image 55
Kaleb Brasee Avatar answered Dec 05 '22 08:12

Kaleb Brasee