Oliver: need to open a jira issue?
Type: Posts; User: stefano.cancedda; Keyword(s):
Oliver: need to open a jira issue?
Any help?
I'm stucked here. It's seems strange that cross-store persistence is working bad in that way :-(
Hi,
Still trying to integrate Spring data JPA and mongo with crossstore functionalities, but without success until now :(
My simplest case is to save a map of String/String in a Object (very...
Hi Oliver,
I'm using SNAPSHOTs because of Spring Data-JPA compatibility
spring-data-commons-core-1.3.0.BUILD-20120401.083328-106.jar
spring-data-jpa-1.1.0.BUILD-20120401.083329-267.jar
...
Using @RelatedDocument on a list like these
@Entity
public class Product extends AbstractPersistentEntity {
@NotEmpty
private String code;
I've noticed that the entity (in this case Address) has been weaved with DocumentBacked interface and not the @Document bean itself (SpatialInfo), but probably it's correct while document must be...
Accessing an "hibrid" entity (part JPA e part mongoDB) obtained from a persistence context throw a null pointer exception when i try to read its mongoDb field using accessor method:
...
Solution (very simple ... ):
JPA entity mapping annotations were on getter methods while Spring data mongo were on fields. Moving jpa's on fields too solved my problem.
Hi all,
I'm integrating mongoDb in my project that still use JPA persistence. The entities are in another project that my business layer project import as a maven dependency. The "data project"...