Tagged Questions
0
votes
1answer
53 views
Play Framework 2.1 and Ebean: model Finder returns no data
I've been banging my head around this for hours. I have two models:
@Entity
@Table(name = "app_user")
public class AppUser extends Model {
@Id
Long id;
…
@Constraints.Required
...
0
votes
1answer
33 views
Ebean - Which find to use for multiple results?
I am using Play Framework and thus Ebean, I need to find the information inside the 'value' column by searching for the 'company_id'. However, There will be multiple rows with the same company_id and ...
1
vote
1answer
63 views
Ebean overridden save, update methods are not getting called through cascade save, update
I have a base class:
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
import ...
0
votes
1answer
32 views
How do I find all records matching a list of Ids in ebean and play framework?
I have a model class that has an id per record. And I have a list of id's that I want to search from that table.
Do I need to build a SQL statement dynamically and pass it to the Finder object or is ...
0
votes
0answers
26 views
Avaje Ebean compoundType
I am using play!framework 2.
I am trying to write an EBean compound type.
I wrote something like
public class A implements CompoundType<A>{
.... implemented all the methods..
}
etc..
...
0
votes
0answers
24 views
Ebean java cascadetypes manual save
I started with play2 and I just can't get my head around this whole save thing with Ebean.
If I have an Object A, which has a List<B> which is a ManyToMany Relationship, then I have to either ...
0
votes
0answers
39 views
Play Error executing DML bindlog column “MULTIPLECHOICE” not found
I use ebeans and the play framework 2.0.4. Everythings works the same way. With singletable inheritation by discriminatorcolumns. While you can see multiplechoice column should really exist in the ...
0
votes
1answer
36 views
ebean generates non-mysql-compatible evolutions
I was developing on my machine with Postgres and everything was nice.
But after moving to the server with MySQL and provided in application.conf with:
db.default.driver=com.mysql.jdbc.Driver
...
0
votes
1answer
34 views
How can I keep the database data if the models changed
I'm working on a project with Play framework it uses EBean as an ORM API and I wonder how could i preserve the old data if I needed to change the models after lauching my application to the public ?
...
1
vote
1answer
60 views
How to generate ebean model classes from existing MySQL schema (for Play 2.1)?
I've started using the Play 2.1 framework for the first time, and I would like to use ebean for the ORM to a MySQL 5.1 database.
I have successfully configured the DB connection using the Play 2.1 ...
-1
votes
1answer
31 views
Why does Find All method selects wrong field
public class Userr extends Model{
@Id
public Long id;
@OneToMany
List<Badge> badges;
}
public class Badge extends Model{
@Id
public Long id;
@ManyToOne
Userr ...
1
vote
1answer
117 views
Play!Framework 2 Java model string field length annotations
To achieve best performance and validation convenience, which of these annotations are needed for a String field?
database: MySQL
A field to store district name
@Column(length=50) // ...
0
votes
0answers
34 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
2answers
108 views
How to set postgres schema in play framework
We are using play framework 2.1 in our web application. We want to explicitly set the database schema(not public schema) in our postgresql database which will be used. How can set it ?
Thanks
0
votes
1answer
310 views
Play Framework 2.1 (Java) eBean @Encrypted Annotation Errors
I'm trying to use the eBean @Encrypted annotation on a String field for the database model. The documentation makes it seem simple enough, but I'm getting a very vague runtime error in the browser ...
0
votes
0answers
100 views
Play Framework - Java: Are @ManyToMany associations resource intensive?
Question:
Are associations like @OneToMany or @ManyToMany resource intensive memory-wise? i.e. will the Play! server load everything into memory when retrieving the entity containing the respective ...
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 ...
0
votes
2answers
162 views
one to many for same entity class in play framework
Good day!
I am triing to save my Entity model by always get an error
Error inserting bean [class models.CategoryEntity] with unidirectional relationship. For inserts you must use cascade save on the ...
1
vote
1answer
88 views
Play Framework Ebean BigDecimal fraction
I am using the Play Framework with Ebean and H2 database.
The problem is, the BigDecimal results in the DB script as:
sum decimal(38),
but what I want is:
sum ...
1
vote
1answer
65 views
cassandra-jdbc and Ebean, can they work together?
Admitting I am not a Avaje Ebean expert or a JDBC expert either. I use play framework and Ebean in the "normal" use cases (H2 and mySQL basically) and they perform fine for me.
I found recently about ...
0
votes
1answer
131 views
Play Framework 2.1 and NewSQL
This is more a curiosity question:
I have an application developed using Ebean and mySQL that works just peachy bot in "production" (evolutions turned off) and dev mode (DDL and evo On). I came ...
0
votes
2answers
149 views
Unexpected Generated Evolution Script for Ebean Model with Enum Field Type
I still learning about Ebean ORM with Play Framework. have problem with unexpected evolution script that generated by Play!Framework. I'm using Play!Framework 2.1.1 with JDK 1.7 update 5 64-bit. ...
0
votes
1answer
455 views
Play Framework 2.1.0 - Using Ebean to query existing database tables
I am having trouble with returning data from a existing database table (SQL Server 2008 R2). I can successfully authenticate and connect to the database, I have a model created that I attempted to ...
0
votes
1answer
152 views
Play Framework 2.0, update date, Ebeam cause Data has changed error
I am trying to do unit testing on my Play 2.0 application.
I have a class called patient, below is a simplified version of my class:
public class Patient extends Model{
@Id
public Long id;
...
1
vote
0answers
212 views
play framework ebean RawSql paging
Should it be possible to use Paging with a custom SQL ebean query? For example, when I set up this query:
String sql =
"SELECT q.event_id AS event_id,"
+ " ...
1
vote
2answers
67 views
static Finder from parent class
I'm annoyed of adding static Finders to all my Model classes.
Why isn't it possible to do this:
@MappedSuperclass
public class MyModel<T> extends Model {
public static ...
0
votes
1answer
188 views
Getting specific column in Ebean play framework 2.0
I am trying to get a list of unique names from the name column in my table.
List<String> li = Ebean.find(User.class).where().?
How would I go about this?
For example if my table looked ...
2
votes
1answer
149 views
ebean unidirectional @OneToOne relation with unique constraint
I have a User class:
@Entity
public class User extends Model {
@Id
public Long id;
public String email;
public String name;
public String password;
}
and a driver class
@Entity
public class ...
2
votes
1answer
383 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 ...
0
votes
1answer
178 views
Fetching data from mysql with play framework using ebean
I am trying to fetch data from my mysql server using Play! my approach is like this:
in /application.conf:
db.default.driver=com.mysql.jdbc.Driver
...
0
votes
1answer
418 views
Play 2 framework unit tests - java.lang.RuntimeException: DataSource user is null?
I trying to run unit tests in Play 2 application using H2 database in MySQL compatibility mode. I configured it in @Before as follow:
@Before
public void startApp() throws Exception {
...
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 ...
0
votes
0answers
227 views
Play Framework 2.0 + Ebean: RawSQL query fails to load data to aggregate object correctly
First, some words on the scenario: for a university term project, we have to realize an online auction platform such as eBay, not nearly as complex, of course. We have to use the Play framework for ...
0
votes
1answer
139 views
play framework scala get join table attribute
I am using Play framework with Ebean. I have two models, below are the code:
public class User extends Model {
@Id
public Long id;
public String name;
/* rest of attributes */
...
0
votes
0answers
133 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;
...
2
votes
1answer
169 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 ...
1
vote
2answers
162 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, ...
1
vote
2answers
135 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 ...
2
votes
1answer
127 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
214 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
489 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 ...
1
vote
1answer
106 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
258 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: ...
0
votes
1answer
75 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 ...
0
votes
0answers
58 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
38 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
1answer
311 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) {
...
1
vote
2answers
224 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
173 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
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 ...



