CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7
  1. #1
    Join Date
    Jun 2009
    Location
    Israel
    Posts
    126

    Trying to figure out Java EE

    Hi all,
    I am trying to understand what is Java EE and what is the difference between it and Java SE.
    Googling out let me understand that EE is the SE, adding wider API: Mostly for server applications. Am I right?

    Also, I couldn't understand the meaning of Application Server? I sae some servers such as JBOSS and GlassFish but couldn't understand what they are ment for?
    Are they useful? Who is using them?
    Are these just generic servers used for some POCs?

    I am feeling that I am missing here something much deeper.

    Thanks for any clarification,
    Guy

  2. #2
    Join Date
    Jan 2011
    Posts
    24

    Re: Trying to figure out Java EE

    You are right:

    1) J2EE is container based and Application server provides vital services like DB connection pooling, transaction management etc.

    2) J2EE application are mainly web application or ejb application .war or .ear or web services they require application server to run. web application can also run on web server like tomcat.

    3) On broader term J2EE is collection of technology e.g. Servlet, JSP and EJB for building http based application.

  3. #3
    Join Date
    Jun 2009
    Location
    Israel
    Posts
    126

    Re: Trying to figure out Java EE

    Thanks,
    Can you please tell me some more about application servers?
    I understand the goal of, say, web server (Tomcat, IIS, etc.) but not of application server.
    Who is using it? What does it do?
    Can you give me a usage example?

    Thanks,
    Guy

  4. #4
    Join Date
    Nov 2011
    Location
    Vietnam
    Posts
    8

    Re: Trying to figure out Java EE

    application server = web server + container for dynamic server side scripting (JSP, Servlet for Java; C#, ASP.NET for .NET)
    a web server just serves HTTP and pure HTML. In order to execute JSP, Servlet, or C# you need an application server.

  5. #5
    Join Date
    Jun 2009
    Location
    Israel
    Posts
    126

    Re: Trying to figure out Java EE

    Thanks,
    Does that mean that (say) Glassfish can process JSP code?

    Guy

  6. #6
    Join Date
    Apr 2012
    Posts
    4

    Re: Trying to figure out Java EE

    yes tomcat and glassfish can process jsp and servlets

  7. #7
    Join Date
    Jun 2009
    Location
    Israel
    Posts
    126

    Re: Trying to figure out Java EE

    Tanks,
    Now everything is starting to make sense

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured