Tagged Questions
0
votes
2answers
156 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. ...
1
vote
2answers
376 views
(playframework 2.0.2-java) EBean - No ScalarType registered error when querying with enum values
I have Role entity class:
@Entity
public class Role extends Model {
@Id
@Constraints.Required
public Integer id;
@Constraints.Required
@Formats.NonEmpty
...
1
vote
1answer
727 views
Store enum name, not value in database using EBean
I have this enum :
public enum DocumentTypes {
PDF("PDF Document"), JPG("Image files (JPG)"), DOC("Microsoft Word documents");
private final String displayName;
DocumentTypes(final ...