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
49 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 ...
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
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
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
0answers
29 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
298 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
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 ...
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
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
2answers
147 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. ...
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
451 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 ...
0
votes
1answer
177 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 ...
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 ...
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
186 views

ebean, embedded id class can't find <>init() method

I try to create composite key in class for many to many relationship. First class one to many: package model; import javax.persistence.*; import com.avaje.ebean.validation.Length; @Entity @Table ...
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 = ...
2
votes
0answers
64 views

How to turn off EBean enhancement

I have been using Ebean with enhancement for a while. It works most of the time but it's very brittle and really cumbersome to get the configuration right. I hope turning it off could improve the ...
0
votes
0answers
226 views

Play Framework 2.0 + Ebean: RawSQL query fails to load data to aggregate object correctly

First, some words on the scenario: for a university term project, we have to realize an online auction platform such as eBay, not nearly as complex, of course. We have to use the Play framework for ...
0
votes
1answer
144 views

Could not initialize class com.avaje.ebean.Ebean?

I am having a wicket application and I am using Ebean ORM mapping. I have set all the credential in ebean.properties. But I am getting an error message "Could not initialize class ...
0
votes
1answer
139 views

play framework scala get join table attribute

I am using Play framework with Ebean. I have two models, below are the code: public class User extends Model { @Id public Long id; public String name; /* rest of attributes */ ...
1
vote
2answers
160 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(?,?)}") ...
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 ...
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
vote
1answer
213 views

Play! Framework JPA and GroupBy

Play! Framework does not have group by function. This lack of functionality really starts to irritate me. How do I workaround that? I want byRouteId to group by trip_headsign. Simple raw query would ...
0
votes
1answer
257 views

Play - oracle 10g : PersistenceException: ERROR executing DML bindLog[] error[ORA-00001: Unique key constraint violation (PLAY.PK_COMPANY)\n

I'm trying to use oracle 10g and ebeans for the "computer database" sample application of plesk. But when I try to insert a new computer on the database, I get this error : [PersistenceException: ...
1
vote
0answers
63 views

Deleting in cascade with native query

I have a Ebean Entity model with 3 entities related with @OneToMany relationships like this: public class A extends Model { @Id @GeneratedValue public Long id; public String name; ...
0
votes
1answer
75 views

Error in executing a query in play 2.0 framework

I just want to fetch the data with particular id. My method containing query is: public static List getidProducts(Integer id) { List<Products> productsid = Products.find("product_id ...
0
votes
0answers
344 views

Unique index or primary key violation when using H2 and Avaje Ebeans

I've been trying to solve why I get this "Unique index or primary key violation" error when saving relational data using Avaje ebean and H2. I am trying to set up a one-to-one bidirectional mapping of ...
0
votes
1answer
30 views

How can I register objects to a specific datasource in Ebean?

I am using ebean for java persistence and need configure access to multiple databases so I have something like the following in my ebean.properties. datasource.sqlserver.username=test ... ...
0
votes
1answer
102 views

Ebean Search where ManyToMany is empty?

With PlayFramework I'm trying to list all the items where there is no ManyToMany items associated with my model, how can I do that ? Here's my structure : User @ManyToMany ...
1
vote
2answers
222 views

EntityNotFoundException: Bean has been deleted - lazy loading failed

I'm making my first steps with the Play! Framework (v2.1-rc1) with Java and now I've faced my first problem with ebean. I have a navigation entity with a ManyToOne relationship to itself. As soon as I ...
3
votes
1answer
212 views

Play 2.0.4 Problems updating a class that uses @EmbeddedId

I’ve recently come across a problem with a class that has an embedded id. Whenever I want to update an existing entry in the database, I get the error “java.lang.RuntimeException: No ...
0
votes
0answers
52 views

Find where many to many is empty or condition in related not match

Here's my database (simplified) : User @ManyToMany List<Section> sections; public static Model.Finder<Long,User> find = new Model.Finder<Long, User>(Long.class, ...
2
votes
2answers
258 views

Play Framework 2.0 and EBean, wrapping INFORMATION_SCHEMA

Using Play! Framework 2.0.4 and EBean as the persistence layer I am attempting to wrap a databases "meta" information to Java classes. I map the classes in application.conf: ...
3
votes
1answer
171 views

@Embedded object not instantiated automatically if it has no basic datatype fields

Fundamental question: Why aren't @Embedded objects always instantiated? The interesting observation is that Ebean does not instantiate @Embedded objects if those do not contain basic datatypes (int, ...
0
votes
1answer
73 views

Filtering Model objects by a ManytoMany relation in Play! 2.0

I have a simple model with a manytomany relation and a function, rendering Model Pages as you can see below. I want to know if there's a way to filter item pages by categories (ManytoMany field) ...
3
votes
3answers
130 views

Bidirectional OneToOne relationship not symmetric for save?

Is there any difference between saving an entity on the owner side or on the other side if PERSIST cascade type is used on the relation? @Entity public class Slot { @OneToOne(mappedBy = "slot", ...

1 2 3