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.
23
votes
3answers
13k views
Steps needed to use MySQL database with Play framework 2.0
I'm new to Play framework. I'm trying to configure MySQL database as a datasource to be used with Play Ebeans.
Could you some one please explain the steps that are needed to configure MySQL with ...
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. ...
18
votes
1answer
701 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 ...
12
votes
2answers
539 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 ...
11
votes
3answers
1k views
Today's options for an easier migration path to Play 2
I'm new to Scala and to Play, and I'm considering using them for a new project.
I see the development on Play 2 is coming along nicely, although the stable version is still 1.x. And there are ...
7
votes
2answers
1k 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 ...
6
votes
1answer
736 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 ...
5
votes
2answers
3k views
Play Framework 2.0 and Ebean SQL logging
I want to examine what SQL statements are generated by Ebean to find out why certain exceptions (related to SQL syntax) are occurring in my Play 2.0 application. Is there a way to log the SQL ...
5
votes
1answer
1k views
Play Framework: PersistenceException: The type is not a registered entity? (Ebean)
I'm following the Play Framework 2.0 tutorial for Java and get this error when trying to save an ebean Model (task.save()).
[PersistenceException: The type [class models.Task] is not a
...
5
votes
2answers
178 views
Play 2.0 Framework - find all that haven't expired
I'm trying to figure out how I can go about finding members of a list - but only ones that haven't past their expired date - which is one of the properties of the model.
Right now I have:
public ...
5
votes
2answers
169 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 ...
5
votes
1answer
528 views
Unable to use multiple ebean databases in Play 2
We are setting up a slightly complicated project using Play Framework 2.0.3.
We need to access several databases (pre-existing) and would like to do it using the frameworks built-in facilities (ie. ...
4
votes
1answer
509 views
PlayFramework 2 + Ebean - raw Sql Update query - makes no effect on db
I have a play framework 2.0.4 application that wants to modify rows in db.
I need to update 'few' messages in db to status "opened" (read messages)
I did it like below
String sql = " UPDATE ...
4
votes
1answer
152 views
How can we improve Ebean's remote performance?
(Disclaimer: this is very open question, what's more I think that there will be not only one correct answer, anyway don't close it please, also consider adding the answers to community wiki)
We are ...
4
votes
2answers
693 views
Play Framework 2 Ebean and InheritanceType as JOINED
After some research on Google, I haven't found anyone who has my problem that's why I'm posting it here.
In my application I have three entities : User (abstract), Customer, Agency.
Customer and ...
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 ...
4
votes
1answer
221 views
ManyToMany Association (BeanList deferred)
I have a ManyToMany-Association like this:
@Entity
public class User extends Model implements RoleHolder {
@ManyToMany(cascade=CascadeType.ALL)
public List<Task> tasks;
}
Then I do that:
...
4
votes
1answer
133 views
How to use different implementation for ebean SqlLimiter in playframework
I am using ebean as ORM and SQL Server in the back.
I got an exception of SQL syntax error when I try to setMaxRows. The generated sql has something like
select .... from ... where ... LIMIT 5
...
3
votes
5answers
193 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 ...
3
votes
2answers
512 views
How to create custom INSERT INTO query in Ebean?
I need to fill a table with large amount of data so I don't want to find related objects, but just put numeric values of them. For this I'd build a simple query ie:
INSERT INTO article_category ...
3
votes
2answers
818 views
How can I define 'TEXT' type using eBean in Play! framework?
When I define a variable in Model class as a String, it is converted as 'VARCHAR(255)' in DB.
However, I want to save more than 255 because this data is very long text consisting of several ...
3
votes
3answers
2k views
Play Framework: Error getting sequence nextval using H2 in-memory database
As the title suggests, I get an error running Play 2.0.1 Tests using a FakeApplication w/ H2 in memory.
I set up a basic unit test:
public class ModelTest {
@Test
public void ...
3
votes
4answers
543 views
Is it possible to use @PrePersist and @PreUpdate with eBean and Play! 2.0?
I want to know if is it possible to use @PrePersist and @PreUpdate with Ebean and Play! 2.0. If so how is this feature activated. I've seen that there was a pull request adding this feature a month ...
3
votes
1answer
384 views
filterMany for Play 2 returns all results
I am using Play 2.0.2 with ebean.
In Info class, I defined
@ManyToMany(fetch=FetchType.EAGER)
private Set<MemberInfo> members;
private Date createdDate = new Date();
And MemberInfo has ...
3
votes
1answer
303 views
Why Ebean returns null for no reason?
Using Play Framework, I have a model like this :
class MyModel extends Model {
// Some columns
@ManyToOne
public OtherModel other;
public OtherModel getOther() {
return ...
3
votes
2answers
992 views
Ebean and playframework
In play 2.0 Ebean should become the default persistence layer. And
after a few days of hibernate frustration I started a look on Ebean. I
found the yabe example really impressive. However I had a ...
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", ...
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 ...
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
...
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 ...
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, ...
3
votes
2answers
269 views
Using Ebean with Play Framework on Heroku
I'm using Ebean in Play Framework 2 for storing some basic information. This application is pushed to Heroku. Everything seems fine, I can write/read with Ebean, but after few hours, when I access ...
3
votes
0answers
268 views
Play 2.0 Attempting to obtain a connection from a pool that has already been shutdown
I have AKKA actors running in Play 2 application. There are a list of POJO objects retrieved from database and pass along in a message to actors. When an actor starts processing these objects, it will ...
2
votes
2answers
848 views
OptimisticLockException with Ebean and Play Framework 2
I am using Ebean with Play Framework 2 and sometimes it falls with OptimisticLockException of such kind:
play.core.ActionInvoker$$anonfun$receive$1$$anon$1: Execution exception ...
2
votes
2answers
983 views
Ebean persistence not working in Play 2.0
To familirise myself with the Play 2.0 Framework, I've been following the Play 2.0 introduction tutorial. Unforunatly, I can't get the Ebean persistence to work. My Task.java looks like this:
package ...
2
votes
1answer
868 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 ...
2
votes
2answers
2k views
Play framework 2.0 : H2 DB evolution with a simple model
I have tried to create a simple controller/model (based on the samples code of play 2.0)
and got a message concerning evolution of DB:
Database 'default' needs evolution!
An SQL script will be run ...
2
votes
1answer
519 views
Ebean using OR in query
I'm trying to make a query where I want to check if either the email or name of a user starts with a given string. In a sql query I would write this using
name like 'queryString%' or email like ...
2
votes
2answers
230 views
How do I enable Ebean Enhancement in Maven?
I've been using Avaje.org ebean ORM layer for a while, but I don't understand how to enable the byte-code enhancement functionality described in the "Ebean v2.6.0 User Guide" with Maven.
I found a ...
2
votes
1answer
449 views
Play Framework, Ebean and Akka Promises
We are studying to use Play! Framework in a new project. We picked Play! because of it's productivity, Scala support and non-blocking architecture.
After stress testing the (Java) Computer-database ...
2
votes
1answer
592 views
[PersistenceException: Error getting sequence nextval]
i am getting this error while trying to save data into model in db.
@Entity
public class User extends Model {
@Required
public String name;
@Email
public String email;
@Required ...
2
votes
1answer
815 views
How to use blob with ebean & play 2?
This is the entity contains blob type:
@Entity
@Table(name="image_info")
public class ImageInfo extends Model {
.......
@Constraints.Required
private Blob image;
.......
}
$ play ...
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 ...
2
votes
1answer
379 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
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 ...
2
votes
1answer
66 views
how to properly extend class from abstract class
Hello I have something like this
@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public abstract class Person extends Model {
@Id
public int id;
public String name;
public ...
2
votes
1answer
286 views
compound key in ebean and play framework
I've just started using Play Framework. After I finished tutorials (covering basic functions) I try setup connection between database and play. One of my relations has schema:
CREATE TABLE IF NOT ...
2
votes
1answer
220 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:
...
2
votes
1answer
248 views
Query language in Play Framework 2
How do I select from a table by another unique column other than id
im looking a replacement for
String fbid=<some facebookId>
User user = User.findBy("facebookId",fbid).first();
...
2
votes
1answer
1k views
How to handle unidirectional many-to-many relations with Ebean
I have a problem with Ebean. I have the usual Objects PsecUser, PsecRoles and PsecPermission.
A user can have many Permissions or Roles and a Role can have many Permission.
Here the code (extract):
...


