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.
1
vote
1answer
191 views
How to traverse 2 unidirectional Ebean rels @ManyToOne and @OneToOne
Didn't find the answer around here. I have 3 objects (only showing relevant parts):
@Entity
class Module {
}
@Entity
class FeaturedModule {
@OneToOne(optional = false)
public Module ...
2
votes
0answers
110 views
Generate short id in ebean prior save entity to database
I want to get id of entity before it saved to database. If i have EbeanEntity with:
@Id private UUID id;
and call
Ebean.nextId(EbeanEntity.class);
return value is very ...
1
vote
0answers
298 views
Ebean 2.7.3 / Play Framework 2.0.4 - OptimisticLockException / NullPointerException while using @Embedded
I have got a problem with Ebean 2.7.3 integrated in the Play Framework 2.0.4.
Let me explain how it works in the framework first. When I want to create a new object I call a function, which creates ...
0
votes
1answer
160 views
storing textarea content in ebean database
I think the question might be a bit stupid - I am working on my first Play project and thus I am still in train to try to gain an overview over the software ;)
Well, I have a page containing a ...
0
votes
1answer
94 views
Embedded Classes/DB structure
I'm trying to store my multi-tier menu in the database. I have a class HorizontalMenu which contains a List<MenuItem> for its items. My MenuItem class contains a String for the text, a String ...
2
votes
0answers
361 views
Play 2.0.4 / Ebean 2.7.3 - DB primary key sequencing
I have got a problem with Play Framework 2.0.4.
I have models managed through the Ebean ORM. These models have numerical primary key IDs (int) with sequence auto generator. Underlying database is ...
2
votes
1answer
96 views
Play! 2.0 Overwrite “Invalid Value” Message [duplicate]
Possible Duplicate:
What are the i18n message ids for field infos and errors?
Using Annotations like @Required on a @Entity-class, a message attribute can be set easily. But how to set / ...
2
votes
1answer
265 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
266 views
How to execute sql file in play framework 2.0?
I have an .sql file that needs to be run every day on scheduler. I found that schedulers are done via Akka. Now how to execute an sql file in play framework 2? Ebean only allows me to execute single ...
1
vote
1answer
91 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 ...
1
vote
2answers
174 views
Maven test fails within install phase but is ok within test phase
I have an empty java test with Spring and Ebean
protected static ApplicationContext ctx;
@BeforeClass
public static void initSpringContext() {
ctx = new ...
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:
...
0
votes
1answer
129 views
How to persist non-trivial fields in Play Framework
I am trying to persist complex objects using Ebeans in Play Framework (2.03). In particular, I've created a class that contains a field of type weka.classifier.Classifier (Weka is a popular machine ...
0
votes
1answer
423 views
Creating a unidirectional OneToMany relationship with Join table
I have a user table and interest table, the number of rows in interest table are finiate and i'm trying to model the senario that each user has a set of interests this is my code:
@Entity
...
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 ...
0
votes
0answers
67 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 ...
1
vote
1answer
216 views
Ebean on duplicate key update
is there anyway to do an 'on duplicate entry update' for an ebean save? Thanks.
0
votes
1answer
413 views
play 2.0 how to define a finder with multiple keys
Assume that there is a Model bean with a unique contraint combining two columns (as composite primary keys) like this:
@Entity
@Table(uniqueConstraints = { @UniqueConstraint(columnNames = { "key1", ...
-2
votes
1answer
176 views
Ebean play2 delete javax.persistence.PersistenceException … Unknown column
i already done somme delete with my model but one use wrong column name
GroupeCours gc = GroupeCours.find
.where()
.eq("id",id)
.findUnique();
GroupeCours gc2 = ...
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 ...
0
votes
1answer
356 views
Play 2 Framework dropdown List gives Null Point Exception
am using play 2 framework with java and ebean for data management. I have a problem with my drop down list. the drop down list is populated with data from mySQL database. It was working but looks like ...
0
votes
1answer
160 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 ...
3
votes
2answers
825 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
2answers
271 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 ...
1
vote
2answers
1k views
Play Framework: 2.0.2 PersistenceException:Cannot register class in Ebean server
First of all, this question may seem much alike:
Play Framework: PersistenceException: The type is not a registered entity? (Ebean) but it's not...
I'm trying to save an entity but it doesn't even ...
5
votes
1answer
530 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. ...
0
votes
2answers
240 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 ...
2
votes
1answer
523 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 ...
0
votes
1answer
276 views
Ebean ManyToMany to same entity
I'm trying to map a many to many releationship where every user has a set of friends, which also are users. In the database table this is solved using a assosiation table called user_friend. The ...
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 ...
0
votes
1answer
168 views
Can Ebean generate Microsoft SQL Server DDL correctly?
I successfully connected with Windows Azure DB using Microsoft's driver and in general, communication works, however I found that DDL generated by Ebean is not compatible with MS's specification for ...
0
votes
0answers
88 views
ebean case in order
How translate the following SQL to Ebean (Ebean Introduction) format?
SELECT * FROM `tableName` ORDER BY CASE
WHEN someValue > 100 THEN 1
WHEN someValue < 50 THEN 2
ELSE 3
END, ...
1
vote
2answers
880 views
Using Ebean/JPA in my Play application, how can I delete an object in a OneToOne relationship?
I have the following classes:
import play.db.ebean.Model;
import javax.persistence.*;
@Entity
public class A extends Model {
@Id
private int id;
/* Other irrelevant properties */
...
2
votes
0answers
201 views
How does one do instance level model validation in Play 2?
I need some complex validation logic which would be across multiple fields. Is there a way to do this every time save() or update() on a model is called? I m currently using Ebean as my ORM. The only ...
1
vote
1answer
88 views
Ebean: weird results
this is my Topic's data members:
public class Topic extends Model {
@Id
protected long id;
public String title;
public String content;
@ManyToOne
@JoinColumn(name = "forumId")
public ...
2
votes
2answers
232 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 ...
1
vote
0answers
165 views
Ebean complex join
I get Ebean for the most part but how would I do this:
select s.id, s.name, s.city, b.date
from seat s
left join booking b on (s.id = b.listing_id)
and b.date >= '2011-09-05'
If it wasn't for ...
0
votes
1answer
178 views
Ebean finder returns ExpressionList
I followed this tutorial:
http://www.playframework.org/documentation/2.0/JavaEbean
according to the tutorial Finder should return a List<E>.
I tried it, but instead it returns ...
0
votes
2answers
372 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
2answers
367 views
(playframework 2.0.2-java) EBean - No ScalarType registered error when querying with enum values
I have Role entity class:
@Entity
public class Role extends Model {
@Id
@Constraints.Required
public Integer id;
@Constraints.Required
@Formats.NonEmpty
...
0
votes
1answer
129 views
Import xx.sql file to execute by using Ebean
Is there any way to execute SQLs directly read from SQL files(xx.sql) in Ebean?
For example, if I had a SQL file including several SQL statements (values already written in the file), is there any ...
1
vote
1answer
209 views
Play framework, inserting initial-data more than 20 items per one Model
In the development mode of Play framework, I inserted my initial-data.yml through Global.java. However, if one model has more than 20 items, autu-generated IDs is going crazy.
For example, if I had:
...
1
vote
2answers
151 views
Java, Generics and Classe<Generic> problems
A code being more explicit as a thousands words :
Here's my Model's parent :
abstract public class ApiModel extends Model {
public static <T extends Model> ExpressionList<T> find() {
...
0
votes
1answer
45 views
Serializer generate a NullPointerException due to a Lazy join in EBean
I have a serializer for a Model, like this :
@Override
public void serialize(MyModel model, JsonGenerator generator, SerializerProvider serializer) throws IOException,JsonProcessingException {
if ...
4
votes
2answers
696 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 ...
0
votes
1answer
748 views
Exceptions with Ebean OneToMany
Am Using Ebeans with Play2.0.2
I have two Models like this :
@Entity
@Table(name="GRP_MST")
public class GroupMst extends Model {
@Id
@Constraints.Required
@Formats.NonEmpty
public String groupid;
...
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 ...
2
votes
1answer
249 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();
...
0
votes
0answers
73 views
where can I find/modify the default precision of mysql floats?
I ran into an issue where it seems that mysql 5.1.63 (on a debian) stores 2/3 as
0.666666666666667 and on mysql 5.5.21 (on a mac) as
0.6666666666666667
as I happen to use Ebean to manage my database ...
3
votes
1answer
387 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 ...

