Tagged Questions
1
vote
1answer
367 views
Persisting Objects containing Objects with spring-data-mongodb
Below is a follow-up question to Question 13832188:
I'm using spring-data-mongodb version 1.1.1.RELEASE. I am able to persist an object if all the member variables are primitive types, even if the ...
2
votes
2answers
412 views
PersistenceConstructor argument variable name doesn't match instance variable name
I'm trying to persist the following object with spring-data-mongodb version 1.1.1.RELEASE:
@Document
public static class TestObject {
private final int m_property;
@PersistenceConstructor
...