0
votes
1answer
35 views

Ebean lazy load to see if resource exists

I am creating a REST API using play framework. I want to use lazy loading ( finder.ref(id) or Ebean.getReference(id) ) to see if an enity with a specific id exists in database. If it doesn't exist, I ...
0
votes
1answer
47 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
0answers
36 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
0answers
32 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
75 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>> ...
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
146 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 ...
0
votes
1answer
48 views

How to raise Play's max_fetch_depth?

I am getting NullPointerException when accessing member fields only 3 levels deep in my view template: @tfz.modelTfzTyp.simulierteTfzTyp.typ If I use getter functions instead, it works. But it is ...
1
vote
1answer
134 views

Can't fetch certain types of nested objects in Ebean

I'm trying to fetch nested objects in Ebean, but it isn't working. I get the User. It has Addresses. The Addresses each have a House. But the House only has an id. All other properties are null. ...
0
votes
1answer
32 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 ... ...
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 ...
1
vote
1answer
66 views

MentaBean: Using OR instead of AND to load a list of beans

I am loading a list of male users belonging to city 235. Ok, that's easy. But now how do I load a list of male users belonging to city 235 or 236? BeanManager beanManager = new BeanManager(); User ...
6
votes
2answers
187 views

Generate “on delete cascade” using Ebean

I am using Ebean and I need to end up getting "on delete cascade" as DDL (data definition language) - which annotation does that? I tried @OneToMany(cascade=CascadeType.REMOVE) but that gives "on ...
1
vote
1answer
284 views

Play 2.1-Snapshot: Ebean database updates and deletions don't work in Junit test cases

I have a weird problem. I'm using play 2.1-SNAPSHOT with ebeans (=> mysql). I have a very small (test) setup and for some reason database updates and deletions don't work. Items are created in the ...
0
votes
0answers
70 views

DataBase singleton

What is the best way to store singleton object in database using JPA. I don't think this is good idea from position of RDBMS, but in some small cases keeping single object in DB simplifying things a ...
12
votes
3answers
596 views

findRowCount doesn't work when bean has property with @Formula annotation

I have following class: @Entity @Table(name = "clients") public class Client extends Model { @Id public int id; @Formula(select = "inv.some_data", join = "left join (select ...
0
votes
1answer
178 views

How to append custom data to ebean entity?

Suppose I have following class @Entity public class Customer extends Model { @Id public int id; public String email; @ManyToOne public List<Order> orders; public ...
0
votes
1answer
1k views

Play! framework + Ebean

So I followed this official tutorial in order to integrate Ebean with my project: http://www.playframework.org/documentation/2.0/JavaEbean I tried to use byId method of Finder (to retrieve an object ...
0
votes
1answer
562 views

Using MySQL “SET” column with Ebean ORM

I'm trying to recreate one of our web apps using Play 2.0 with Ebean and I've hit a road block. I can't figure out how to map MySQL's SET type to a field in the model. I've gotten ENUM columns working ...
18
votes
1answer
737 views

Ebean looks for wrong sequence name in Play Framework 2

I have an id: @Column(name = "device") @GeneratedValue(strategy = GenerationType.AUTO, generator = "device_gen") @SequenceGenerator(name = "device_gen", sequenceName = "device_id") @Id public Integer ...
20
votes
5answers
4k views

How mature is Ebean or Siena?

In the last time I heard a lot of complaining about hibernate. And indeed I have some painful experiences with hibernate too. So I read about Ebean and Siena. Both have interesting approaches. ...