what is ejb? what is the importance of ejb?
Answers were Sorted based on User's Feedback
Answer / sivasubramanian.k
Enterprise Java Beans (EJB) is a managed, server-side
component architecture for modular construction of
enterprise applications.
The EJB specification is one of the several Java APIs in
the Java Platform, Enterprise Edition. EJB is a server-side
component that encapsulates the business logic of an
application.
Accordingly, the EJB specification details how an
application server provides:
Persistence
Transaction processing
Concurrency control
Events using Java Message Service
Naming and directory services (JNDI)
Security ( Java Cryptography Extension (JCE) and JAAS )
Deployment of software components in an application server
Remote procedure calls using RMI-IIOP.
Exposing business methods as Web Services.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / srikanth reddy
Enterprise Java Beans (EJB) is given by j2ee technilogy by
sun for remote bussiness serfvices
| Is This Answer Correct ? | 1 Yes | 0 No |
How thread scheduler schedule the task?
How to sort a collection of custom Objects in Java?
In a my eclipse editor if i want to switch from jdk 1.4 to jdk 1.6 how to do that???? Initially i have jdk1.4
explain the concept of virtual method invocation in polymorphism in detail?
different between exception and error? explaim check and uncheck exception
Can we declare static variables in JSP page.
why we use merge option in hybernate pls give a ex snippet
I have a sorting issue with a Hashmap. My constraint is that I MUST use the Hashmap and work with existing code. I do a database query and place the results in a Hashmap. When I iterate thru the Hashmap, it loses the original alphabetical sorting done by the database. So, my problem is that I must sort the results coming out of the Hashmap which is then placed into another class.
Why main() method is public, static and void in java ?
what is difference between class and object?
43 Answers College School Exams Tests, HCL,
What are actual parameters?
What is the differenc between Enemuration interface and iterator interface according to accessing?