|
-
March 25th, 2012, 02:36 PM
#1
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
-
March 26th, 2012, 04:57 AM
#2
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.
-
March 26th, 2012, 11:06 AM
#3
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
-
April 1st, 2012, 10:19 AM
#4
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.
-
April 3rd, 2012, 12:10 AM
#5
Re: Trying to figure out Java EE
Thanks,
Does that mean that (say) Glassfish can process JSP code?
Guy
-
April 5th, 2012, 05:18 AM
#6
Re: Trying to figure out Java EE
yes tomcat and glassfish can process jsp and servlets
-
April 5th, 2012, 12:45 PM
#7
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|