J2EE

  Home  Java Programing  J2EE


“J2EE Interview Questions and Answers will guide us now that Java Platform, Enterprise Edition or Java EE is a widely used platform for server programming in the Java programming language. The Java platform (Enterprise Edition) differs from the Java Standard Edition Platform (Java SE) in that it adds libraries which provide functionality to deploy fault-tolerant, distributed, multi-tier Java software, so learn J2EE with the help of this J2EE Interview Questions with Answers guide”



112 J2EE Questions And Answers

81⟩ What is CDATA?

A predefined XML tag for character data that means "don't interpret these characters," as opposed to parsed character data (PCDATA), in which the normal rules of XML syntax apply. CDATA sections are typically used to show examples of XML syntax.

 173 views

83⟩ What are the components of J2EE application?

A J2EE component is a self-contained functional software unit that is assembled into a J2EE application with its related classes and files and communicates with other components. The J2EE specification defines the following J2EE components:

* Application clients and applets are client components.

* Java Servlet and JavaServer PagesTM (JSPTM) technology components are web components.

* Enterprise JavaBeansTM (EJBTM) components (enterprise beans) are business components.

* Resource adapter components provided by EIS and tool vendors.

 159 views

86⟩ What is authorization?

The process by which access to a method or resource is determined. Authorization depends on the determination of whether the principal associated with a request through authentication is in a given security role. A security role is a logical grouping of users defined by the person who assembles the application. A deployer maps security roles to security identities. Security identities may be principals or groups in the operational environment.

 177 views

87⟩ What is client-certificate authentication?

An authentication mechanism that uses HTTP over SSL, in which the server and, optionally, the client authenticate each other with a public key certificate that conforms to a standard that is defined by X.509 Public Key Infrastructure.

 166 views

88⟩ What is Connector architecture?

An architecture for integration of J2EE products with enterprise information systems. There are two parts to this architecture: a resource adapter provided by an enterprise information system vendor and the J2EE product that allows this resource adapter to plug in. This architecture defines a set of contracts that a resource adapter must support to plug in to a J2EE product-for example, transactions, security, and resource management.

 148 views

89⟩ What is J2EE server?

The runtime portion of a J2EE product. A J2EE server provides EJB or Web containers or both.

 163 views

90⟩ What is business logic?

The code that implements the functionality of an application. In the Enterprise JavaBeans architecture, this logic is implemented by the methods of an enterprise bean.

 163 views

93⟩ What is J2EE application?

Any deployable unit of J2EE functionality. This can be a single J2EE module or a group of modules packaged into an EAR file along with a J2EE application deployment descriptor. J2EE applications are typically engineered to be distributed across multiple computing tiers.

 161 views

94⟩ What is JavaServer Pages (JSP)?

An extensible Web technology that uses static data, JSP elements, and server-side Java objects to generate dynamic content for a client. Typically the static data is HTML or XML elements, and in many cases the client is a Web browser.

 164 views

96⟩ What is Java 2 Platform, Enterprise Edition (J2EE)?

An environment for developing and deploying enterprise applications. The J2EE platform consists of a set of services, application programming interfaces (APIs), and protocols that provide the functionality for developing multitiered, Web-based applications.

 167 views

97⟩ What is JAXR client?

A client program that uses the JAXR API to access a business registry via a JAXR provider.

 168 views

98⟩ What is JavaBeans component?

A Java class that can be manipulated by tools and composed into applications. A JavaBeans component must adhere to certain property and event interface conventions.

 164 views