Tagged Questions

1
vote
1answer
137 views

CMP 2.0 bean auto-generated primary key WAS 6.1

is it possible to map bean's key field with identity primary key column in DB2? Sample table: CREATE TABLE ADDRESS ( ID INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY ( START ...
0
votes
0answers
39 views

Getting strange cast exception while creating CMP entity

I'm getting strange exception: java.lang.ClassCastException: com.jfhs.achievements._Achievement_DynamicStub cannot be cast to java.lang.Long while trying to create simple CMP entity bean. As i ...
0
votes
1answer
48 views

CMP entity bean in OpenEJB (OpenJPA?)

I try to run an old EJB2 system on OpenEJB and it uses Entity Bean to access database. Current status is I can run it and can send SQL to Oracle DB (I can see the session and SQL in Oracle), but the ...
0
votes
1answer
95 views

Adding sun-cmp-mappings.xml file

I am creating CMP beans using Netbeans 6.9.1. Everything worked fine until I added the sun-cmp-mappings.xml file to the conf folder and comment out line 59 in project.properties. I got this error ...
0
votes
1answer
81 views

'Order' entity bean

My database has a table name Order. When I create a new CMP Entity bean, NetBeans 6.9.1 automatically generated a bean with 3 classes name: Order1.java Order1Local.java Order1LocalHome.java I ...