Tagged Questions
0
votes
1answer
45 views
Serializer generate a NullPointerException due to a Lazy join in EBean
I have a serializer for a Model, like this :
@Override
public void serialize(MyModel model, JsonGenerator generator, SerializerProvider serializer) throws IOException,JsonProcessingException {
if ...
-3
votes
2answers
140 views
what does this function do in detail?
public static Finder<Long,Task> find = new Finder<Long,Task>(
Long.class, Task.class
);
this is a function of a model in Playframework using EBean Model superclass. i dont ...
0
votes
1answer
191 views
OneToMany returns 1 result when no result should be returned?
I have a 2 Models, the second is mapping to the same first model twice, with specific values (it has the role of a ManyToMany table with added values) :
public class ModelB extend Model {
public ...