Ebean is an open source Object Relational Mapping tool. It's goal is to provide a simpler alternative to JPA (Java Persistence API) implementations such as Hibernate and Eclipselink.
0
votes
0answers
20 views
PagingList page returning wrong row count in ebean
I am generating a PagingList from a table using RawSql.
I have two entities, TableEntry and TableEntryAvg. The latter is performing a GROUP BY on the first table to average rows together.
My call ...
0
votes
1answer
29 views
Is it possible to cast a SqlQuery results from Ebean to a Model (Bean)?
Using Ebean (via Play Framework 2.1.1), I have to build a home made SQL query, but I'd like it to return directly a List<MyModel>, instead of a List<SqlRow> that I would have to query the ...
1
vote
0answers
32 views
How to log insert, update, delete sqls with ebean ORM in play 2.1
Does anyone know to log insert, update, delete sqls with ebean ORM in play 2.1. I don't want to log any select sqls.
I know turn on it in application.conf
db.default.logStatements=true
...
2
votes
2answers
58 views
Query using play framework brings back related tables without me asking
I've got the following models in Play Framework.
@Entity
public class Parent extends Model {
@Id
public Long id;
public String name;
public List<Child> children = new ...
0
votes
0answers
11 views
EBean “select * ” into bean
I have a complex EBean query - trying to get all values of row with max/min value.
List<SqlRow> latestResults = Ebean.createSqlQuery("select sg.* from TestResult sg join ( select ...
0
votes
1answer
21 views
Ebean ManyToOne Mapping CRUD
I have two Entities Transaction and Category with ManyToOne mapping. So many transaction can fall into have category.
@Entity
class Transaction extends Model{
@Id
public Long id;
...
23
votes
3answers
13k views
Steps needed to use MySQL database with Play framework 2.0
I'm new to Play framework. I'm trying to configure MySQL database as a datasource to be used with Play Ebeans.
Could you some one please explain the steps that are needed to configure MySQL with ...
0
votes
1answer
51 views
Play Framework 2.1 and Ebean: model Finder returns no data
I've been banging my head around this for hours. I have two models:
@Entity
@Table(name = "app_user")
public class AppUser extends Model {
@Id
Long id;
…
@Constraints.Required
...
1
vote
2answers
1k views
Play Framework: 2.0.2 PersistenceException:Cannot register class in Ebean server
First of all, this question may seem much alike:
Play Framework: PersistenceException: The type is not a registered entity? (Ebean) but it's not...
I'm trying to save an entity but it doesn't even ...
0
votes
1answer
33 views
Ebean - Which find to use for multiple results?
I am using Play Framework and thus Ebean, I need to find the information inside the 'value' column by searching for the 'company_id'. However, There will be multiple rows with the same company_id and ...
0
votes
2answers
149 views
Unexpected Generated Evolution Script for Ebean Model with Enum Field Type
I still learning about Ebean ORM with Play Framework. have problem with unexpected evolution script that generated by Play!Framework. I'm using Play!Framework 2.1.1 with JDK 1.7 update 5 64-bit. ...
0
votes
0answers
84 views
Play Framework 2.1 ebean construction
I just started using Play Framework 2.1.1 as a Java developer.
Got some eBeans from an existing database and I'm building a RESTful architecture to serve and save those beans from a RESTful client ...
1
vote
1answer
62 views
Ebean overridden save, update methods are not getting called through cascade save, update
I have a base class:
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
import ...
0
votes
1answer
32 views
Different results between ebean and manually entered SQL query?
I've built a MySQL Query that returns 452 entries when I try it via PhpMyAdmin, here's the query :
SELECT csp.id FROM child_subscription_prices csp
JOIN child_moments cm ON csp.child_moment_id = ...
0
votes
0answers
39 views
Play Error executing DML bindlog column “MULTIPLECHOICE” not found
I use ebeans and the play framework 2.0.4. Everythings works the same way. With singletable inheritation by discriminatorcolumns. While you can see multiplechoice column should really exist in the ...
0
votes
0answers
26 views
Avaje Ebean compoundType
I am using play!framework 2.
I am trying to write an EBean compound type.
I wrote something like
public class A implements CompoundType<A>{
.... implemented all the methods..
}
etc..
...
0
votes
1answer
32 views
How do I find all records matching a list of Ids in ebean and play framework?
I have a model class that has an id per record. And I have a list of id's that I want to search from that table.
Do I need to build a SQL statement dynamically and pass it to the Finder object or is ...
0
votes
0answers
16 views
jackson ignore field on cyclic references
Assuming I have the following two ebean model classes. I need to get a user with all his user movies and all his friends. So far it is working fine. The problem is that I also get all user movies of ...
0
votes
0answers
47 views
Ebean many to many doesn't load everything Play framework
I have an Ebean entity in my Play 2.0.4. application that represents a contract between a user and a client like so:
@Entity
public class Contract extends Model {
@ManyToOne
public User ...
0
votes
1answer
20 views
Ebean Expression icontains List of elements
I have a query like this:
find.where()
.or(Expr.or(Expr.like("isbn", query),
Expr.icontains("book.tags", query)),
...
0
votes
0answers
24 views
Ebean java cascadetypes manual save
I started with play2 and I just can't get my head around this whole save thing with Ebean.
If I have an Object A, which has a List<B> which is a ManyToMany Relationship, then I have to either ...
0
votes
1answer
44 views
Ebean ManyToOne nullable join
I have two models :
@Entity
@Table(name="table_entry")
public class TableEntry extends Model {
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name="clone_id", ...
0
votes
0answers
35 views
Play framework 2 java with spatial/geometry data type?
How to use spatial type in play framework 2 java models?
Seems Ebean does not support this type yet.
1
vote
0answers
62 views
Ebean change Postgres schema at runtime
I discovered ebean with the play framework 2 a few time ago. I really like the way to use the query to access the database. But now I have some problems. I want to write a multi tenancy saas ...
0
votes
1answer
36 views
ebean generates non-mysql-compatible evolutions
I was developing on my machine with Postgres and everything was nice.
But after moving to the server with MySQL and provided in application.conf with:
db.default.driver=com.mysql.jdbc.Driver
...
0
votes
1answer
34 views
How can I keep the database data if the models changed
I'm working on a project with Play framework it uses EBean as an ORM API and I wonder how could i preserve the old data if I needed to change the models after lauching my application to the public ?
...
-1
votes
1answer
31 views
Why does Find All method selects wrong field
public class Userr extends Model{
@Id
public Long id;
@OneToMany
List<Badge> badges;
}
public class Badge extends Model{
@Id
public Long id;
@ManyToOne
Userr ...
0
votes
0answers
12 views
Is it possible to retrieve the named parameters in a Ebean named query?
I have a query defined in orm.xml and can retrieve this with Ebean.createNamedSqlQuery(queryName).
This query has some query parameters that can be set with SqlQuery.setParameter(String paramName, ...
1
vote
1answer
59 views
How to generate ebean model classes from existing MySQL schema (for Play 2.1)?
I've started using the Play 2.1 framework for the first time, and I would like to use ebean for the ORM to a MySQL 5.1 database.
I have successfully configured the DB connection using the Play 2.1 ...
2
votes
1answer
147 views
ebean unidirectional @OneToOne relation with unique constraint
I have a User class:
@Entity
public class User extends Model {
@Id
public Long id;
public String email;
public String name;
public String password;
}
and a driver class
@Entity
public class ...
0
votes
0answers
25 views
Can not delete the OneToMany properties using Ebean
Actually, I have asked the same question on the Ebean's google group
https://groups.google.com/forum/#!topic/ebean/VD1MV2-LrOc
The test case i created ...
1
vote
1answer
114 views
Play!Framework 2 Java model string field length annotations
To achieve best performance and validation convenience, which of these annotations are needed for a String field?
database: MySQL
A field to store district name
@Column(length=50) // ...
0
votes
0answers
54 views
How CallableSQL addModification() method works?
I tried to call stored procedure in postgreSQL using CallableSql and here is the following code:
final CallableSql cs = Ebean.createCallableSql("{call your_stored_procedure(?,?)}")
...
2
votes
2answers
848 views
OptimisticLockException with Ebean and Play Framework 2
I am using Ebean with Play Framework 2 and sometimes it falls with OptimisticLockException of such kind:
play.core.ActionInvoker$$anonfun$receive$1$$anon$1: Execution exception ...
0
votes
0answers
49 views
trouble with ebeans in play framework
hi dudes i am new with play framework and something that i hate the tutorials in google is that they are missing something every time i have problem with the following code any body help me please. ...
0
votes
2answers
201 views
Override Ebean naming convention
In Play 2.0.2 I'm trying to use ebean as the ORM and migrate my existing model classes from play-1.2.4.
All my camelCase fields in the model classes are getting mapped to underscore columns in the ...
0
votes
1answer
77 views
What would the database tables look like if using Ebean ManyToOne relation?
I am using Ebean in the Play 2 framework. Both are quite new to me. I have two models Algorithm and Solution. (An Algorithm can own multiple Solutions.)
@Entity
public class Algorithm extends Model{
...
1
vote
1answer
148 views
Avaje Ebean: Why does it insert object with same ID instead of updating the object?
I am learning ebean, to start I am testing the code of examples on the official site, so I have this code:
ESimple e = new ESimple();
e.setName("test");
e.setDescription("something");
// will ...
2
votes
2answers
983 views
Ebean persistence not working in Play 2.0
To familirise myself with the Play 2.0 Framework, I've been following the Play 2.0 introduction tutorial. Unforunatly, I can't get the Ebean persistence to work. My Task.java looks like this:
package ...
0
votes
0answers
34 views
Use a combined PK in other entity
Hi I have a ManyToMany relationship between two entities, and I have to use this new combined PK in another entity, how can implement it in ebean or JPA ?
0
votes
2answers
108 views
How to set postgres schema in play framework
We are using play framework 2.1 in our web application. We want to explicitly set the database schema(not public schema) in our postgresql database which will be used. How can set it ?
Thanks
0
votes
0answers
34 views
Access alias properties in Ebean when loading initial test data in Play
I'm loading initial test data for my models in Play 2.1.
I would like to access the String property "question" of Question Model.
Here is my initial-data.yml file:
- &q1 !!models.Question
...
3
votes
2answers
101 views
Howo to query tables with onetomany and manytoone relationship using Ebean
I am using playframework 2.1.0, and am having a problem while querying the following scenarios listed below :
I am using Ebeans for persistence.
I have 3 classes which represent tables in the ...
0
votes
0answers
30 views
How to use ebean to concurrently query a MySQL database
I have a server app which has 10 worker threads that get a TCP connection passed to them from the main thread. Each thread should have a separate connection to a MySQL db(so each thread could ...
0
votes
1answer
70 views
Play 2.1 framework not detecting evolution changes
On adding a @ManyToMany join table to two models, in this case User and Article models[1], Play correctly detects these changes and modifies the 1.sql[2] file accordingly:
[1]
+ @ManyToMany
+ ...
0
votes
1answer
309 views
Play Framework 2.1 (Java) eBean @Encrypted Annotation Errors
I'm trying to use the eBean @Encrypted annotation on a String field for the database model. The documentation makes it seem simple enough, but I'm getting a very vague runtime error in the browser ...
2
votes
2answers
230 views
How do I enable Ebean Enhancement in Maven?
I've been using Avaje.org ebean ORM layer for a while, but I don't understand how to enable the byte-code enhancement functionality described in the "Ebean v2.6.0 User Guide" with Maven.
I found a ...
1
vote
2answers
135 views
INSERT with DEFAULT id doesn't work in PostgreSQL
I tried running this statement in Postgres:
insert into field (id, name) values (DEFAULT, 'Me')
and I got this error:
ERROR: null value in column "id" violates not-null constraint
I ended up ...
4
votes
1answer
222 views
ManyToMany Association (BeanList deferred)
I have a ManyToMany-Association like this:
@Entity
public class User extends Model implements RoleHolder {
@ManyToMany(cascade=CascadeType.ALL)
public List<Task> tasks;
}
Then I do that:
...
0
votes
0answers
100 views
Play Framework - Java: Are @ManyToMany associations resource intensive?
Question:
Are associations like @OneToMany or @ManyToMany resource intensive memory-wise? i.e. will the Play! server load everything into memory when retrieving the entity containing the respective ...


