Tagged Questions
0
votes
0answers
19 views
PagingList page returning wrong row count in ebean
I am generating a PagingList from a table using RawSql.
I have two entities, TableEntry and TableEntryAvg. The latter is performing a GROUP BY on the first table to average rows together.
My call ...
0
votes
1answer
22 views
Play framework 2 + JPA with multiple persistenceUnit
I'm struggling with Play and JPA in order to be able to use two different javax.persistence.Entity model associated to two different persistence units (needed to be able to connect to different DB - ...
0
votes
1answer
21 views
Ebean ManyToOne Mapping CRUD
I have two Entities Transaction and Category with ManyToOne mapping. So many transaction can fall into have category.
@Entity
class Transaction extends Model{
@Id
public Long id;
...
0
votes
1answer
44 views
Ebean ManyToOne nullable join
I have two models :
@Entity
@Table(name="table_entry")
public class TableEntry extends Model {
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name="clone_id", ...
0
votes
0answers
35 views
Play framework 2 java with spatial/geometry data type?
How to use spatial type in play framework 2 java models?
Seems Ebean does not support this type yet.
0
votes
1answer
52 views
TypedQuery result incompatible using Hibernate and PlayFramework
i'm having this problem when calling this simple method that allows me to get a user by it's Username:
@Entity
public class User {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
...
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 ...
0
votes
1answer
26 views
EnumType.STRING ignored by ebean and Play 2
I have a field definition that is set as an enumeration with EnumType.STRING.
Typically, this works nicely, but on two occasions, it has ignored the EnumType attribute and used the ordinal value for ...
1
vote
1answer
53 views
Marking a pair of @ManyToOne related properties as unique. Possible?
I have the typical example, where a POST has many TAGS, and a TAG has many POSTs.
Instead of using a typical @ManyToMany, I use a domain object in the middle, called TAGPOST, which also allows me to ...
0
votes
0answers
82 views
Weblogic Play2 JPA hibernate setup error
I'm trying to deploy my project on weblogic using JPA hibernate, but something has gone bad with the settings, could anyone help me with the settings?
I have set up a data source in weblogic called ...
0
votes
1answer
113 views
defineing unique constraint in play framework 2
i have a user model which has an Id managed by the framework but also an email attribute
i want the email to be unique and at the moment im doing it using
@Email
@Required
@Column(unique=true)
public ...
1
vote
0answers
69 views
Duplicate property mapping of bitmap$init$0 found when using @MappedSuperclass in a Scala Play 2.0.4 app with Hibernate 3.6.10 JPA
Has anyone seen this exception before and knows how to resolve the issue?
We are having a Scala Play 2.0.4 project and Hibernate 3.6.10 as the JPA backend.
The entity in question is extending a ...
2
votes
1answer
143 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 ...
0
votes
0answers
65 views
javax.persistence.Entity generating NullPoint exception
I am using Hibernate for ORM in play framework 2.0.4. I have a model class called video that is annotated using JPA. However when I run the application I get the following error
...
0
votes
1answer
127 views
Calling a getter method within a JPA entity from a play framework form makes a call to the setter function
I am writing a simple play framework application with authentication where in passwords are hashed using BCrypt.
In simple words, my question is this : I have observed that in JPA entities, when you ...
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
...
0
votes
1answer
214 views
Using hibernate 4.1.7 and c3p0 in playframework
I have a play app (play 2.0.4) that uses a Java jar for all of it's database-related work (JPA/Hibernate 4.1.7/PostgreSQL). Everything worked great until I realized I was using the default connection ...
2
votes
1answer
226 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 ...
0
votes
0answers
37 views
Is it necessary or mandatory to set jpa.default in application.conf?
Is it necessary or mandatory to set jpa.default in application.conf? Specifically when I am accessing each database in my app with EntityManager.get("keyname"), where keyname is neither null nor empty ...
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
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 ...
2
votes
1answer
219 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
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 ...
0
votes
2answers
371 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
786 views
Play! framework - ORM
from the Play! framework docs:
There is no built-in JPA implementation in Play 2.0; you can choose any available implementation. For example, to use Hibernate, just add the dependency to your ...
0
votes
1answer
380 views
playframework: Difference between @Transactional annotation and JPA.withTransaction() method
We normally annotate action methods of controller classes with @Transactional if we are accessing Persistence Objects of JPA, or EBean. The question is when to use @Transactional annotation and when ...
2
votes
1answer
250 views
JPA composite PK is not working with 'finder' in play framework
I have a model called 'UserRoleHolder' like below.
@Entity
public class UserRoleHolder extends Model implements RoleHolder {
private static final long serialVersionUID = 1L;
@EmbeddedId
...
0
votes
1answer
572 views
table or view does not exist when play2 accesses oracle
everyone. I use hibernate jpa in play2.0. First I use H2 and it goes well. Then I use oracle instead, and the jpa create tables for me correctly. But when I send any request to play, it report errors:
...
1
vote
1answer
1k views
JPA and Play Framework: No Persistence provider for EntityManager named update
Using Play! Framework 2.0.2, when I add several items from my java project to my H2 test database I only see one single item in the ITEM table. The single item being the last entry that i've ...
2
votes
1answer
867 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 ...
0
votes
1answer
291 views
Trouble accessing property of child entity within scala template in Play Framework 2.0.1
I am exploring JPA and Ebean within Play Framework 2.0.1 to research what is generated in a local relational database. In my tests, I'm using MariaDB, a fork of MySQL.
So far, I've been able to ...
1
vote
3answers
1k views
Can't create composite primary key with foreign key in PLAY 2.0
This is a situation I want to represent in my PLAY project:
table clients {
client_id (pk),
description
}
table items {
client_id (fk, pk),
item_id (pk)
}
In the 'items' table ...
0
votes
1answer
165 views
How to save a HashSet in a ebean entity?
I want to put an extra set in an entity. But with Ebean seems to not handle it and always gives me null when I read it.
@Entity
public class MyData extends Model {
@ElementCollection
public ...
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 ...
1
vote
1answer
197 views
Setting up play 2.0 tagging using only 2 model objects?
Ok, so I want to implement tags in my play 2.0 app,
Basically what I am thinking to do right now, is to use 3 tables, Questions, Tags and Question_Tags.
Should I just use different model objects ...
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 ...
3
votes
1answer
571 views
How to configure play! framework project to use kundera with Cassadra
I am using play! 2.0 and have problems trying to use Cassandra database. How can I configure the properties of application.conf file to use a high level client like kundera. Do I have to create a ...
2
votes
1answer
340 views
Cannot create EntityManager from valid persistence.xml
I'm trying to use JPA from Play 2.0 Scala application. In my code I have:
val factory = Persistence.createEntityManagerFactory("devcrowd")
I also have persistence.xml in package META-INF:
<?xml ...

