Play2.1: how to remove the "._EBEAN_INTERCEPT" column

308 Views Asked by At

my project has been taken into ebean plugin. and now i want to change the manner of orm to jpa. but after i removed all the jars from the build path and fix the compiling errors, it shows the painful error:

    Column "XXXX0_._EBEAN_INTERCEPT" not found;
where 'XXXX' is the name of the table, every table.

how can i remove the odd 'Column' and fix my project?

1

There are 1 best solutions below

1
On

Remove 'javaEbean' in build.sbt file and replace with 'javaJpa' as below.

libraryDependencies ++= Seq(  
  javaJdbc,  
  javaJpa,  
  cache  
}