-
Hi there,
This is from using the samples (except I've changed the entity name from Sampel to Tag). After updating an existing Tag entity, I get the following exception (I'm using the in-memory datast…
-
Hi,
I build a small control panel for my website to control my Minecraft server. I like JSONAPI, its vary good documented and easy to use!
But the bad news is that my server keeps crashing since I us…
-
Having entities:
``` java
@MappedSuperclass
@Entity
@Table(name = "animals")
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name = "species")
abstract class Animal {
…
ghost updated
11 years ago
-
I am using Ebean (v 3.1) as packaged in Play! Framework 2.1.0. Perhaps this has been fixed in head, but I can't find the references in the source. Perhaps this is even the desired functionality, but …
-
When using ebean with a SQLite database, the generated ddl scripts seem to be incorrect.
The generated ddl looks something like:
create table call_note (
id bigint AUTOINCREMENT pr…
-
Due to recent changes Ebean is now using jsr303 validation annotations to generate databases, unfortunately it ignores validation groups.
Jsr303 has the concept of groups which may be used to introdu…
ghost updated
11 years ago
-
I am trying to get the HelloWorld sample app shipped with Play 2.1 to build as a WAR file.
When I deploy the WAR file in Tomcat and navigate to localhost:8080/hw/, I get a blank page.
Some info:
``…
harid updated
11 years ago
-
Demonstrate `bukkit` bundle in Karaf in an Active state, with all dependencies met by other bundles.
-
Add a TransactionUtil of some sort, that will create a transaction, have queries appended to it, and add retry logic to its execution
Each request should start a new transaction, execute it at the en…
-
The generated equals() and hashCode() methods don't work when ebean uses subclass enhancement, since they do an equals comparison on getClass(), so if I take the demo ebean project, update it to the l…