Can the primary key in the entity bean be a Java primitive
type such as int?
Answers were Sorted based on User's Feedback
Answer / geetanand
IT SHOULD NOT BE PRIMITIVE. IT SHOULD BE AN OBJECT. AND IN
JAVA WE CAN CREATE OBJECTS OF ANY TYPE USING WRAPPER CLASSES.
SO WE CAN USE THIS WRAPPER CLASS OBJECTS.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / kameshwar
The primary key can't be a primitive type--use the
primitive wrapper classes, instead. For example, you can use
java.lang.Integer as the primary key class, but not int (it
has to be a class, not a primitive)
| Is This Answer Correct ? | 5 Yes | 2 No |
Can EJB made to handle multiple transactions?
What is @enableautoconfiguration?
Explain the concept of connection pooling feature of ejb container?
How to connect to a specific enterprise bean?
How EJB and JDBC/SQLJ are related?
What are the properties in Beans?
What is ejb and its types in java?
Is is possible for an ejb client to marshal an object of class java.lang.class to an ejb?
What is JAR file?
What are the services that a container provides for an entity bean?
What optimization could I use if the ejb container is the only point of write access to the database?
What is stateless code?