Top "Ebean" questions

Ebean is an open source Object Relational Mapping tool.

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. …

java playframework playframework-2.0 ebean
Getting NullPointerException when trying to stream().filter().collect(Collectors.toList())) on Java list

I got a problem while trying to search a specific Java object in a list. Actually i got the search …

java list lambda nullpointerexception ebean
Difference between JPA and EBean Play Framework

I'm relatively new to Play framework, I tried following the cookbook but it seems to be already outdated. Anyways I …

java jpa playframework ebean
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 …

ebean
EBean is not doing updates! it's trying to do inserts and failing

i have a simple User model like this: package models; import java.util.*; import javax.persistence.*; import play.db.ebean.*; @…

playframework playframework-2.0 ebean
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 …

logging playframework-2.0 ebean
Ebean Query by OneToMany Relationship

I'm using Ebean with the Play 2 Framework and got two models: a user model and a book model. The user …

java playframework playframework-2.0 ebean
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 …

playframework playframework-2.0 ebean
Inner joins in Ebean?

I read https://archive-avaje-org.github.io/ebean/introquery_joinquery.html looking at Example A, I noticed there's no specification of …

playframework playframework-2.0 ebean
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, …

database playframework-2.0 ebean