Siena is a persistence API for Java inspired by the Google App Engine Python Datastore trying to draw a bridge between SQL and NoSQL worlds. It provides a Java Object-DB mapping designed following the ActiveRecord pattern which brings a simple and intuitive approach to manage your Java objects with ...
0
votes
1answer
27 views
persisting with json in Siena
Anyone persisted use the JSON format in Sinea?
http://www.sienaproject.com/documentation-json.html
I need to persist collection fields where the collection is relatively small and contains only ...
1
vote
1answer
39 views
Is there a way *not* to persist a field with Siena
I use siena with google engine.
I have a model class with a field (named secret) that I don't want to be persisted.
(I don't want the column to be created in the google datastore)
Something along ...
2
votes
1answer
119 views
Play Framework's Siena module is erroring out while binding to a @Text field in Cloud SQL on Google App Engine
I am attempting to rewrite Play! framework's YABE tutorial so that it can run on Google App Engine using the Siena module. I am using the following versions of play and modules:
Play 1.2.5
crudsiena ...
0
votes
0answers
51 views
persisting embedded hash map
The value '.2F' below is not persisted. I get no errors, but only null is returned. Can you please suggest a correction or improvements on the following code? I'm trying to persist this in the GAE ...
0
votes
0answers
32 views
How does Siena handle GeoPt from GAE?
I am building a simple web application using Play + Siena + GAE modules.
public class Shop extends siena.Model {
@Id(Generator.AUTO_INCREMENT)
public Long id;
public String name;
public GeoPt ...
0
votes
1answer
115 views
Play Framework With Google appengine Model update
I have a Play application which is deployed on Google Appengine. I use Play 1.2.4 with modules:
crudsiena 2.0.1
gae-1.6
secure
siena 2.0.5
My problem is the followings:
I have deployed the ...
-1
votes
1answer
29 views
how to mark something unstored [duplicate]
In the Siena is a persistence API for Java, how would one annotate that a field is not persisted??
See https://github.com/mandubian/siena/wiki/Manuals
0
votes
0answers
98 views
Play Framework 1.1 application with CRUD module to be deployed on Google App Engine, not working
I am using Play Framework 1.1:
Since JPA is not supported by Google app engine, I am using modules-
siena (version 1.3) & gae (version 1.4)
Also I would like to use CRUD.
but, I am unable to ...
0
votes
0answers
52 views
How to get random data with Siena from GAE datastore?
I use Play Framework + GAE + Siena for my project. I need to get random data from datastore. How can I do this with Siena ? I mean what is siena alternative of SQL ORDER BY RAND() query?
Thanks in ...
0
votes
0answers
58 views
File upload in Play! Siena
I am trying to allow a user to upload a picture using a form. I managed to do the form, butI was wondering if there was an equivalent to the Lob JPA class in siena in order to store the file on my db. ...
1
vote
1answer
88 views
InvalidObjectException when getting from SignedObject
I am sending an object encased in a Message object encase in a SignedObject over a TCP connection using an ObjectInputStream. Here's the basic code:
Send
Object data = someObject;
ObjectOutputStream ...
0
votes
1answer
336 views
How to reduce the memory usage of Appstats on Google App Engine Java
This is related to question Java Appengine APPSTATS causing java out of memory error.
Appstats seems to cause a java.lang.OutOfMemoryError on 128MB instances and I wonder whether there are ways to ...
0
votes
1answer
342 views
Uploading a file to GAE with Play! Framework
What is the best way of uploading files to Google App Engine Blobstore with Play! Framework, using Siena and GAE module?
I have tried declaring a Blob field in my Model:
public Blob image;
And a ...
4
votes
2answers
99 views
Siena / Play / GAE parses boolean field wrong: 0 = true
I'm having a hard time working with booleans in Siena 2.0.7 and Play 1.2.4.
In the constructor of my class I set the boolean to FALSE. Then I save the object. In the datastore viewer I can see the ...
0
votes
2answers
294 views
From Siena on GAE using Play framework 1.X to which database/api/module on Heroku using Play 2.0?
I've really enjoyed using Play framework 1.X on Google App Engine with Siena for data storing.
Now I'm looking into using Play framework 2.0 for a new project. As Play isn't ready for GAE I'm going ...
0
votes
1answer
98 views
Denormalized data modeling with Siena
I am trying to create a simple app on GAE/J. The data model consists of a list of notes, each with a few tags.
In the relational world, this would be a many-to-many - since each note can have several ...
0
votes
1answer
45 views
How to write unittests when using Siena on GAE
I'm writing a webapp which uses Wicket and Siena/gae as datastore.
Now I want to write some decent unittests for my services.
Is there already a toolset or classes that make the mocking of siena ...
0
votes
1answer
406 views
Playframework Siena Filtering and Ordering
This is my first question on any of these websites so pardon my unprofessionalism.
I use playframework with SIENA module (with GAE) and I came accross the following problem:
Given 3 entities:
public ...
0
votes
2answers
161 views
how to parse/see the data in siena datastore?
While playing around with playframework yabe-siena-gae, I noticed a datastore file created for the sample data.
Does any tool exist or is there some way to view the data inside the datastore file ...
1
vote
1answer
348 views
How to define one to many relation in Siena and GAE?
Suppose I have two domain models Author and Book. So Author can have one or many books.
From the documentation for Siena, it seems to suggest something like:
public class Author extends Model {
...
-1
votes
1answer
208 views
GAE & Siena - abstract classes and instantiation exceptions
I am building my first GAE app using the Play! Framework and I am having issues with Siena and abstract classes.
A feature within the app is to allow a user to upload a post on which other users can ...
0
votes
1answer
306 views
Build siena query using date comparation in playframework+gae
I'm using siena in a playframework app, also with google app engine. I would like to build a query to get entities filtering with a field "date" of type java.util.Date, if it's possible.
I've tried ...
0
votes
1answer
311 views
java.lang.AbstractMethodError when trying to use Siena with the Play Framework
Okay, so I've been banging my head against this problem for a couple of days now, and I just don't know what I'm missing to get it to work. I've also tried numerous searches here and on Google, but ...
0
votes
2answers
79 views
With Siena, what is the best way to know if an entity doesn't exist in GAE?
Actually:
return all().filter("name", name).count() == 0;
May be a better way ?
1
vote
1answer
329 views
Cannot configure crudsiena module for play framework 1.2.2
i'm trying to create basic application on Play Frramework(1.2.2) + siena (2.0.2) + crudsiena(2.0.1) + gae(1.4). all of these i got from play's dependency management system.
I was follwing sample in ...
4
votes
3answers
601 views
How define the result type of this method?
How do I define the method return type in the following case:
working code
def deleteInstance(model: String, uid: Long) = model match {
case "menu" => Model.all(classOf[Menu]).filter("uid", ...
2
votes
1answer
581 views
How does siena query search work?
I'm looking for a documentation on how to do a query in siena that returns all the elements which contains a string. I tried something like
return all().search("nome", query).fetch();
but it ...
1
vote
1answer
69 views
Can't get a string field from an object in another object in siena
I'm having trouble getting a field which is in an object which is inside another object. I can get some fields, but others no.
This is the test I created to reproduce this error.
public void ...
0
votes
1answer
141 views
Is possibile in siena to order by a calculated field?
I'm trying to get a query returned ordered on a filed which is calculated in Play.
This is the query I'm using.
return all().order("points").fetch();
where points is defined as
public Integer ...
0
votes
1answer
471 views
Multiple relationship on play with siena
I'm creating a an entity with 2 one-to-many relationships. An Event has a User field and a Place field. I'm trying to use the automatic-query, but this code always returns an empty list.
User ...
1
vote
1answer
191 views
Play Gae persistence not working for Set<Long>
This is my User class
public class User extends Model {
@Id
public Long id;
public String nome;
public String email;
public String webId; //ID of the user in the provider website
public String ...
20
votes
5answers
4k views
How mature is Ebean or Siena?
In the last time I heard a lot of complaining about hibernate. And indeed I have some painful experiences with hibernate too. So I read about Ebean and Siena.
Both have interesting approaches. ...
9
votes
2answers
1k views
How can I do paging with @OneToMany collections
Suppose I have a Post entity and a Comment entity and a one to many relationship:
@Entity class Post {
...
@OneToMany
List<Comment> comments;
...
}
How can I achieve paging ...
3
votes
2answers
1k views
Play! + Siena + GAE + JUnit
I am trying to get some basic unit tests up and running on the Play! framework using the Siena persistence library with GAE as the intended deployment target.
I have the project configured properly ...