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
19 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 ...
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
...
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;
...
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
...
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 ...
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
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 ...
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
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
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
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 ...
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
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
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.
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 ?
...
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 ...
-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
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
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
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{
...
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
107 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
...
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 ...
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 ...
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 ...
1
vote
2answers
42 views
add field to association table
Hello I have a relation beetwen two tables (Message, Person) many to many (m:n)
Now in this table (mm table) I have two fields. Message_id and person_id. I want to add there field with date so I have ...
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
1answer
26 views
EnumType.STRING ignored by ebean and Play 2
I have a field definition that is set as an enumeration with EnumType.STRING.
Typically, this works nicely, but on two occasions, it has ignored the EnumType attribute and used the ordinal value for ...
0
votes
0answers
32 views
Why Ebean replace a column by t0.null in createQuery()?
I have three models :
@Table(name = "meals")
public class Meal extends Model {
@Id
private Long id;
private String name;
@ManyToMany(targetEntity=Allergy.class, mappedBy="meals")
...
0
votes
0answers
43 views
Java EBean Not Equal
I have a query I would like to run which will return matches but I do not want to include the object itself being queried as a match in the result.
public static List<Journey> findMatch(String ...
0
votes
1answer
105 views
Java Tree with Ebean (parent child relation in same table)
I am completely stuck with retrieving a parent child structure from the database. I cannot create a descent Model that will work with Ebean evolutions because the parent relationship is not recognized ...
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 ...
1
vote
0answers
54 views
EBean Error reading annotations with composite key
Following this link
I would like to use OneToMany instead ManyToMany annotation, having middle class with composite key in it. Using Ebean. I ended up with this error:
java.lang.RuntimeException: ...
0
votes
2answers
161 views
one to many for same entity class in play framework
Good day!
I am triing to save my Entity model by always get an error
Error inserting bean [class models.CategoryEntity] with unidirectional relationship. For inserts you must use cascade save on the ...
0
votes
0answers
24 views
“no suitable constructor found” Compilation error in case of varargs
I continuously have the same error of
error: no suitable constructor found for FootballCriterionSet(String,FootballCriterion,FootballCriterion)
in case of constructor with varargs:
public ...
1
vote
1answer
88 views
Play Framework Ebean BigDecimal fraction
I am using the Play Framework with Ebean and H2 database.
The problem is, the BigDecimal results in the DB script as:
sum decimal(38),
but what I want is:
sum ...
0
votes
1answer
53 views
Ebean/idIn Parameter not set
I am having a weird problem with Ebean.
Code:
static <T> ImmutableMap<Long, T> getFromIdToItemMap(Iterable<SqlRow> rows,
Callable<Model.Finder<Long, T>> ...
1
vote
1answer
65 views
cassandra-jdbc and Ebean, can they work together?
Admitting I am not a Avaje Ebean expert or a JDBC expert either. I use play framework and Ebean in the "normal" use cases (H2 and mySQL basically) and they perform fine for me.
I found recently about ...
0
votes
1answer
131 views
Play Framework 2.1 and NewSQL
This is more a curiosity question:
I have an application developed using Ebean and mySQL that works just peachy bot in "production" (evolutions turned off) and dev mode (DDL and evo On). I came ...



