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 ...
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
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
60 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

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
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
81 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
38 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
48 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
2answers
105 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
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
301 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 ...
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
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
2answers
160 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 ...
0
votes
1answer
52 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
79 views

Play 2.0. Ebean. OneToMany orphan removal broken

I need some help. I have two classes with onetomany relationship: @Entity public class Parent extends Model{ @Id public Long id; @OneToMany(fetch = FeatchType.LAZY, cascade = CascadeType.ALL, ...
0
votes
1answer
452 views

Play Framework 2.1.0 - Using Ebean to query existing database tables

I am having trouble with returning data from a existing database table (SQL Server 2008 R2). I can successfully authenticate and connect to the database, I have a model created that I attempted to ...
1
vote
0answers
163 views

Play framework 2.0, delete in oneToOne cascade cause persistence exception

I am using Play 2.0 framework, I have three classes, Patient, Visit and Puberty. Patient and Visit have ManyToOne relationship, whereas Visit and Puberty have a one to one relationship (I know, it's ...
0
votes
1answer
151 views

Play Framework 2.0, update date, Ebeam cause Data has changed error

I am trying to do unit testing on my Play 2.0 application. I have a class called patient, below is a simplified version of my class: public class Patient extends Model{ @Id public Long id; ...
1
vote
2answers
67 views

static Finder from parent class

I'm annoyed of adding static Finders to all my Model classes. Why isn't it possible to do this: @MappedSuperclass public class MyModel<T> extends Model { public static ...
2
votes
1answer
144 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
1answer
178 views

Fetching data from mysql with play framework using ebean

I am trying to fetch data from my mysql server using Play! my approach is like this: in /application.conf: db.default.driver=com.mysql.jdbc.Driver ...
1
vote
1answer
247 views

java - How to do unidirectional one-to-many relationship in Ebean

I have a unidirectional relationship where one entity has a list of another entity (one to many) . I have set cascade type to CascadeType.ALL, And i am getting error [PersistenceException: Error ...
2
votes
1answer
114 views

Ebean and ManyToOne Advies

Hi I could need a little help understanding how I should approach following: Just for information I'm working with play framework 2.0 and Ebeans version ~2.7 I have a model projects and a model ...
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 ...
1
vote
1answer
117 views

play framework 2 ManyToMany relationships

I have two classes : public class Tag { @Id public int id; @ManyToMany(cascade=CascadeType.ALL) public static List<Article> articles; public static Finder<Long, Tag> find = new ...
0
votes
0answers
79 views

Play framework 2.0 + Ebean auto generated number that isnt a primary key (Java)

one of my tables requires an automatically incremented number as one of its fields, but it seems that A: only one generated number is allowed per table (mysql) and B: it has to be the id (i am already ...
0
votes
0answers
41 views

Strange schema generated by Play 2.0 with Ebean

I have a model with following: @JsonSerialize(using = DateTimeSerializer.class, include = JsonSerialize.Inclusion.NON_NULL) private DateTime startTime; @JsonSerialize(using = ...
0
votes
1answer
417 views

Play 2 framework unit tests - java.lang.RuntimeException: DataSource user is null?

I trying to run unit tests in Play 2 application using H2 database in MySQL compatibility mode. I configured it in @Before as follow: @Before public void startApp() throws Exception { ...
4
votes
1answer
305 views

How do I tell Play Framework 2 and Ebean to save null fields?

I'm using Play Framework 2 and Ebean. When a user submits a form to edit an existing object in the database, it doesn't save null values. I guess this is to prevent overwriting fields that aren't in ...
2
votes
0answers
125 views

Play 2.0 multiple Akka futures to modify same database record

I am using Play 2.0.4 Java. There are two apis, one is to remove member detail from a channel object and the other is to add. Both APIs are using Akka.future(). How can I avoid the ebean exception ...
2
votes
1answer
169 views

How to exclude ebeans from Play 2.0?

I'm using Play 2.0 with Scala and JPA/Hibernate. Hibernate creates the DB structure automatically and inserts strange columns like bitmap$init$0 what should be due to ebean (as far as I know). I ...
0
votes
0answers
44 views

ebean does not generate methods for inhereted annotated fields?

This works: @MappedSuperclass public class ExtendableTranslation extends Model { public String label; } @Entity public class LeagueT extends ExtendableTranslation { @Id public Integer ...
1
vote
1answer
82 views

Ebean optimistic locking - version column vs all columns?

I see that Ebean supports both ways but what are the real world differences between using @version or all approach? Any reason not to use @version everywhere with Ebean? http://www.avaje.org/occ.html ...
1
vote
2answers
161 views

Dynamically create Date in play framework

I've just started using the Play framework, and I have some questions... Some background info. I am using Play 2.0.4, with Ebean to store Entities. My User Entity has 2 fields, one called created_on, ...
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(?,?)}") ...
3
votes
1answer
115 views

How to make OneToOne relationship using join on secondary key?

I have two classes: @Entity @Table(name = "clients") public class Client extends Model { @Id public int id; public String name; @OneToOne public Contact contact; } @Entity ...
2
votes
1answer
126 views

How to eager load a collection in ebean?

What is the correct way to eager fetch a nested collection in ebean and Play Framework 2? I tried this: Registration registration = find .fetch("participants") ...

1 2 3 4