What is a J2EE component? List out all the component?
Answer Posted / rajashree
There are four types of J2EE component:
Enterprise Applications:-
These components provide a top-level
structure which contains any number of other J2EE
components (except other J2EE Enterprise Applications). The
JAR file holding an enterprise application has the
suffix .ear, so Enterprise Applications are frequently
referred to as EARs.
Web Applications:-
These J2EE components may contain Servlets,
Java ServerPages, Tag Library Definitions and plain Java
classes or resources as required for proper operation. The
documents and Java classes of Web Applications frequently
create markup language (HTML, WML, XML, etc.) responses to
requests from web browsers or business applications. The
JAR file holding a Web application has the suffix .war, so
WebApps are frequently referred to as WARs.
Enterprise JavaBean Applications:-
These components hold server-side business
logic packaged within Enterprise JavaBeans.
Resource Applications:-
These J2EE components hold Java classes that
act as drivers or communication gateways to Enterprise
Information Systems (EISs). It is highly likely that the
manufacturer of an EIS packages its driver into a J2EE
resource archive (RAR).
| Is This Answer Correct ? | 27 Yes | 9 No |
Post New Answer View All Answers
What is static variable with example?
What is java util collection?
What is a class variable?
How thread scheduler schedule the task?
Write a method that will remove given character from the string?
What data type is string java?
How to change the priority of thread or how to set the priority of thread?
How can an exception be thrown manually by a programmer?
What is the difference between abstract class and interface1? What is an interface?
What is an interface in java? Explain
How do you declare a variable?
How can you share data between two thread in Java?
What is generics in java interview questions?
How is abstraction implemented in java ?
What do you mean by global variable?