1
vote
2answers
39 views

How to construct a JPA assossiation: person has a relation to other persons (friends)

I have an entity Person which has friends, so a assosiation to other Persons: @Entity public class Person extends Model { @Id @Constraints.Required @Formats.NonEmpty public Long id; ...
0
votes
1answer
37 views

How to sava a many-to-many association

I'm trying to save a attribute with a many-to-many association in an entity: public static void addPost(Conversation conversation, Post post) { conversation.posts.add(post); ...
0
votes
0answers
63 views

Optimistic Lock when deleting Play! Framework

My app is based on Play! Framework + PostgreSQL. I can't get rid out of this optimistic lock exception, happening when I loop on a list of objects retrieved fro the database. 175 ...
0
votes
0answers
42 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
50 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

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
50 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
1answer
201 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
37 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 ?
3
votes
2answers
128 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
34 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
1answer
252 views

Getting specific column in Ebean play framework 2.0

I am trying to get a list of unique names from the name column in my table. List<String> li = Ebean.find(User.class).where().? How would I go about this? For example if my table looked ...
2
votes
1answer
188 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 ...
2
votes
1answer
489 views

Playframework POST a list to controller

All I am trying to achieve is this Sample app : ~\play-2.1.0\samples\java\forms Updated Latest Code : my question.scala.html looks like : @(questionForm: Form[Question]) @import helper._ @import ...
2
votes
0answers
75 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
153 views

Ebean.delete() creates wrong SQL, throws 'unknown column in where clause' Exception

I have two simple Entities Issue and Tag, and a many-to-many relation between them. Everything works find except when I want to delete an Issue using Ebean.delete(Issue.class, id) which results in ...
0
votes
0answers
75 views

JPA session, is it rudiment comparing to Session Less' architecture

If follow the idea of Session Less' architecture, does it mean that JPA session is rudiment in JPA/Hibernate? Usually, in web-development, we use very short-lived session /unit of work, just to ...
3
votes
1answer
147 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 ...
1
vote
1answer
253 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
27 views

What does Stateless bean operate with EntityManageer that could resolve the issue with “user-think-time”

Reading these notes. On the EBean site page. There is a paragraph that contains: "The natural way to manage the EntityManager with a EJB3 container is to use a Stateful Session Bean." Also ...
0
votes
0answers
360 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 ...
3
votes
1answer
205 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, ...
3
votes
3answers
138 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", ...
3
votes
5answers
251 views

Why use java.util.List instead of java.util.Set for relations in Ebean

I see that many examples use List for "many" relations, however, Set seems to better fulfil the role since lookup can happen in O(1) while the list search is O(N/2). Is there any reason why List is ...
2
votes
1answer
250 views

Play 2.0 creating a finder when using a composite (embeded) key: not working correctly

I have a model called Totals @Entity public class Totals extends Model{ @EmbeddedId private TotalsPK id; public Totals(TotalsPK key, Integer _count) { id = key; count = _count; } public ...
2
votes
1answer
315 views

Play! framework with Ebean: PersistenceException

I have a Topic class which extends Model. creating the first record of table topics is fine, but it is failing to create another record: [PersistenceException: ERROR executing DML bindLog[] ...
1
vote
1answer
99 views

Ebean generates sql with undercase_notation not CamelCase as expected

I'm setting up a Play! 2 application with an already existing db. The entities have been ported to the new app. When running the application I get a PersistenceException since the sql generated by ...
2
votes
1answer
238 views

single table inheritance (with Ebean + Play! framework)

I'm using the concept of single table inheritance because of OOP considerations of course. for example, PostLike and TopicLike inherit from Like class. I see two problems with this methodology: ...
0
votes
2answers
248 views

Play framework 2.0 Error when attempting to cascade delete “Parameter ”#1“ is not set; SQL statement: delete ”

the full error line from my example is "[PersistenceException: org.h2.jdbc.JdbcSQLException: Parameter "#1" is not set; SQL statement: delete from class4 where (class3_id) in (?) [90012-158]]" this ...
0
votes
2answers
419 views

JPA foreign key - id or reference

I got two classes: Forum and Topic. I previously told I should have Forum attribute (in Topic), something like that: @ManyToOne @JoinColumn(name = "forum") protected Forum forum; ...
1
vote
1answer
307 views

Exception thrown with OneToMany annotation

In my Play 2.0 application using the EBean ORM I have the following class: @Entity public class User extends Model { @Id public Long id; @Constraints.Required public String ...
1
vote
1answer
548 views

How to do unidirectional one-to-many relationship on the same entity class?

How to do unidirectional one-to-many relationship on the same entity class? @Entity public class User extends Model { @Id private Long id; .... @OneToMany(cascade = ...
2
votes
1answer
932 views

Avaje Ebean. ManyToMany deferred BeanSet

I am writing small app, using Play Framework 2.0 which uses Ebean as ORM. So I need many-to-many relationship between User class and UserGroup class. Here is some code: @Entity public class User ...
0
votes
1answer
180 views

How to save a HashSet in a ebean entity?

I want to put an extra set in an entity. But with Ebean seems to not handle it and always gives me null when I read it. @Entity public class MyData extends Model { @ElementCollection public ...
1
vote
0answers
85 views

Set of enumerator values in a class with EBean and Postgres

I'm using Play Framework 2.0.1 and the build in EBean to access my DB data. I have an enumerator Temperature which holds values like: HOT, WARM, COLD, etc. I have a class which is mapped to a ...
7
votes
2answers
2k views

Mapping Collection of String and Enum with Ebean (Play 2.0)

I have problems mapping a Collection of Strings and Enums in my entities. I have followed different advices, but nothing seem to work. I am using PlayFramework 2.0 and the provided Ebean as ORM. Here ...
1
vote
1answer
341 views

JPA @ManyToMany relationship without primary compound key on join table

I have an entity A with has a m:n relationship to an entity B, however for every A there can not only be multiple B, but in addition multiple of the exact same B. I tried defining the relation like ...
0
votes
2answers
683 views

How to let ebean not generate any value for the ID?

I'm using Ebean, and define such a model: @Entity @Table(name = "users") public class User extends Model { @Id public String id; public String email; public String name; } You ...
1
vote
1answer
198 views

Setting up play 2.0 tagging using only 2 model objects?

Ok, so I want to implement tags in my play 2.0 app, Basically what I am thinking to do right now, is to use 3 tables, Questions, Tags and Question_Tags. Should I just use different model objects ...
6
votes
1answer
787 views

Duplicate columns when using EmbeddedId with a ManyToOne mapping with Ebean

I have a model called "EventCheckin" which has a ManyToOne mapping to an "Event" and a "User". The PrimaryKey of the "EventCheckin" table is the id of the user and the id of the event. I'm trying to ...