While Java FX and other GUI applications called as standard edition (Java SE), I wonder why jsp, servlet, jsf etc. technologies called as enterprise (Java EE)? The word "enterprise" sounds like there always have to be a business based application which is commercial. I think a GUI application can be commercial as well. I couldn't figure out.
Tell me more
×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.
|
closed as unclear what you're asking by Jim G., GlenH7, Bart van Ingen Schenau, MichaelT, user61852 Jul 8 at 14:32
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking.If this question can be reworded to fit the rules in the help center, please edit the question.
Desktop applications (Java SE) are based on client-server architecture while web applications supported by Java EE are based on an architecture that were meant to satisfy enterprise requirements. Java SE now interacts with EJBs and use Context and Dependency Injection to load resources that are served over a Java EE platform. So, it was born for enterprise applications and that's why it's still called Java Enterprise Edition. |
||||
|