identity « Seam « JPA Q&A





1. JPA Oracle Dialect does not support identity key generation...    seamframework.org

Anybody please provide some help.I have a table in Oracle database, like this: CREATE TABLE "CONTENT_WK" ( "ID" varchar2(32) DEFAULT rawtohex(sys_guid()) NOT NULL ENABLE, "CONTENT" VARCHAR2(255 BYTE) NOT NULL ENABLE )And here is my entity class:/** * ContentWk generated by hbm2java */@Entity@Table(name = "CONTENT_WK")public class ContentWk implements java.io.Serializable { ...