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.

learn more… | top users | synonyms

0
votes
0answers
152 views

Play framework - find model and create page with join tables

I am using the Play framework 2.0.4 with Ebean, and I have two models, Admin and User Below is my model code: public class User extends Model { @Id public Long id; public String name; ...
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 ...
2
votes
1answer
185 views

How to exclude ebeans from Play 2.0?

I'm using Play 2.0 with Scala and JPA/Hibernate. Hibernate creates the DB structure automatically and inserts strange columns like bitmap$init$0 what should be due to ebean (as far as I know). I ...
0
votes
0answers
47 views

ebean does not generate methods for inhereted annotated fields?

This works: @MappedSuperclass public class ExtendableTranslation extends Model { public String label; } @Entity public class LeagueT extends ExtendableTranslation { @Id public Integer ...
1
vote
1answer
111 views

Ebean optimistic locking - version column vs all columns?

I see that Ebean supports both ways but what are the real world differences between using @version or all approach? Any reason not to use @version everywhere with Ebean? http://www.avaje.org/occ.html ...
1
vote
2answers
205 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
56 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
182 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
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 ...
2
votes
1answer
160 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
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
605 views

How to update a many to many relationship in Play framework 2 and ebean?

How do I update a many to many relationship in Play framework 2 and ebean? I keep getting errors like this: [PersistenceException: org.postgresql.util.PSQLException: ERROR: duplicate key value ...
2
votes
1answer
162 views

avaje.org/ very often down

I started using Ebean and I like it. But for the beginning I need access to documentation and stuff like that. Now I wanted to download the source of Ebean to integrate it in Eclipse. But the website ...
0
votes
1answer
49 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
135 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
316 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
85 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
39 views

Setup IntelliJ project for two Play 2.0 apps and a shared entities repo?

I'm hoping to start using IntelliJ for my two apps based on Play 2.0.4, and one repo that holds the shared database entities both apps use. What's the best way to get all that into one project in ...
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
1answer
82 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 ...
2
votes
1answer
83 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 ...
0
votes
0answers
59 views

Bug with persistence exception using Play 2.0

I have the following hierarchy of package : - analytics.Models - store.models All my models inherit from a FLModel class I have created. analytics.Models is mapped to a ebean server, and ...
0
votes
0answers
39 views

Distinguish between no results and no results due to query errors?

Using eBeans on Play 2 framework, how can one distinguish whether there was simply no result because no matching entries exist or there was no result because a database/query error occured? eBeans ...
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 ...
2
votes
1answer
381 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 ...
0
votes
1answer
153 views

sqlexception index out of bounds with correct sql-statement

i've got an sql statement that works pretty well. but on implementing in my webapp working with play 2.1 i get this error: javax.persistence.PersistenceException: Query threw SQLException:Column Index ...
1
vote
1answer
127 views

Playframework2: Ebean and OptimisticLockException

I have a problem with Ebean and update. Everything what I need is something like this: public static Result cancelOrder(Long id){ Order order = Order.findByID(id); if(order != null){ ...
0
votes
1answer
369 views

Error executing MySQL query via ebean using RawSql

In a Play! 2.x application, I'm trying to send a simple query to a MySQL server using ebean. My complete class looks as follows: public static List<Venue> search(String query) { ...
4
votes
1answer
603 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 ...
1
vote
1answer
192 views

How to force Ebean to do a Left join, not a join?

With PlayFramework, I use Ebean to make a query where the OneToMany are null, but Ebean generate a simple "JOIN" query, that returns no rows. If a change it to "LEFT JOIN" in MySQL, it works, but I ...
0
votes
1answer
100 views

How do I make use of findIterate in eBean with a raw sql query?

Let's say I have the following code: String sql = "select c.id, c.name from Company c left join Tag t on c.id=t.company_id where c.state='PUBLISHED'"; List<SqlRow> sqlRows = ...
1
vote
2answers
147 views

PlayFramework, how to register a BeanPersistListener?

I discovered the BeanPersistListener that I'd like to register to some of my models, but I didn't find any documentation, from Ebean nor PlayFramework on how to integrate it. From the documentation : ...
1
vote
0answers
112 views

Notify when property change on Ebean's models in PlayFramework?

I'd like to add in an History model all the changes events occurred to a specific model, for that, here's what I did : class MyModel extends Model { @Id private Long Id; private String ...
1
vote
1answer
154 views

How do I fetch more than 100000 rows with Ebean and mysql

In my Company table I have 2 million rows that I want to fetch and perform some operations on. I have written a service class and a method for extracting ids. But it only fetches 100000 rows by ...
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 ... ...
1
vote
2answers
298 views

How do I do select in list with Ebean createSqlQuery

I'm building a Play2 app with Ebean. I have created a service class with a method for getting venues by a list of ids: public static List<Venue> getVenuesForIds(List<Long> list){ ...
1
vote
2answers
138 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
256 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 ...
1
vote
1answer
181 views

Play Framework 2 - enum issue in multiple database configuration

I've ran into some strange issue trying to configure access to two oracle databases. Here is what my config file looks like: db.default.url="jdbc:oracle:thin:@db1:1521:DB1" ...
3
votes
1answer
237 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 ...
1
vote
1answer
56 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, ...
0
votes
1answer
196 views

How to create custom index for ebean?

I'm using ebean, it's very easy to use but I don't know create my custom index. @Entity @Table(name="users") public class User { public String name; // how to create index for this column? ...
2
votes
2answers
283 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
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, ...
0
votes
1answer
76 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) ...
0
votes
1answer
312 views

Ebean filter findList result with other table

While retrieving a list of objects, I want to filter the results based on another table which I only have the ID of.The objects are NOT linked in the ORM-model, but instead just contain a UUID. Ie: ...
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 ...
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 ...