跳至主要内容

Data crossstore between Mongo and JPA


Data crossstore between Mongo and JPA

Spring Data Mongo provides another attractive feature, when you mix to use Mongo and JPA in your projects, you can unite the models of Mongo and JPA.

Model

The Conference and Signup are still used as example models,Conference is JPA entity class and Signup is a Mongo Document.
@Entity
public class Conference {
 @Id
 @GeneratedValue(strategy = GenerationType.AUTO)
 @Column(name = "id")
 private Long id;

 
 @RelatedDocument
 private Signup signup;
}
The Signup Document is defined as the following.
@Document
public class Signup {

 @Id
 private String id;

}
@RelatedDocument annotation indicates the signup property of Conference is a reference of Signup Mongo Document. This annotation will be processed by a AspectJ aspect which provided in Spring Data Mongo.
You have to add some code fragments to Spring configuration.
<!-- Mongo cross-store aspect config -->
<bean
 class="org.springframework.data.mongodb.crossstore.MongoDocumentBacking"
 factory-method="aspectOf">
 <property name="changeSetPersister" ref="mongoChangeSetPersister" />
</bean>
 
<bean id="mongoChangeSetPersister"
 class="org.springframework.data.mongodb.crossstore.MongoChangeSetPersister">
 <property name="mongoTemplate" ref="mongoTemplate" />
 <property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
Firstly, this aspect will mark this property as @Transient and prevent JPA recognize it as a persistent property.
Then register a transaction synchronization to entity lifecycle events of the host JPA Entity( Conference ) to synchronize the@RelatedDocument data into Mongo Document.
We also use Junit @Before to initialize the data.
@Before
public void beforeTestCase() {
 log.debug("==================before test case=========================");
 conferenceRepository.save(newConference());
}
The newConference() method is use for create a new Conference object, we also create a new Singup as the value of signup property.
@Test
public void retrieveConference() {
 log.debug("==================enter retrieveConference=========================");

 assertTrue(null != id);

 Conference conf = em.find(Conference.class, id);

 log.debug("conf@@@" + conf);
 assertTrue(null != conf);
 assertTrue(null == conf.getSignup());
}
When you run this Test, pass!
Everything is OK?
Spring Data Mongo provides a LoggingEventListener to tracking the Mongo events.
<bean class="org.springframework.data.mongodb.core.mapping.event.LoggingEventListener" />
After you enable this listener, you should see the Mongo log info about saving Conference. But we run this Test again, we can not see it at all.
Add another line code in the first line of the test method.
em.clear();
Run the Test, failed.
No doubt the Signup was not stored in Mongo when saving Conference object.
As motioned before, the crosssotre synchronization is fired by the entity lifecycle events. If JPA event @PostPersist is not fired in a transaction, the Mongo event will not be fired.
@Before
// @Transactional(propagation = Propagation.REQUIRED)
public void beforeTestCase() {
 log.debug("==================before test case=========================");
 transactionTemplate = new TransactionTemplate(transactionManager);
 transactionTemplate.execute(new TransactionCallback<Void>() {

  @Override
  public Void doInTransaction(TransactionStatus status) {
  }
 }
}
Alternatively, we change the initial codes slightly, and use aTranscationTemplate to process the Conference saving action as an unit of work.
Run this test again, pass.

More ...

If possible store a Collection of data into Mongo like this,
@RelatedDocument
private List<Signup> signups;

Unfortunately, it does not work.
But you wrap the List into standalone Document like.
@Document
public class SignupInfo {

 @Id
 private String id;

 @DBRef
 private List<Signup> signups = new ArrayList<Signup>();
}
And change the relation to SignupInfo.
@RelatedDocument
private SignupInfo signupinfo;
But you have to save the Signup objects in Mongo firstly, because Spring Data Mongo does not support Cascade saving feature like JPA.
I have some wishes for the crossstore.
  1. Store reverse when store a Document.
Update to now, there is no way to do the work reverse. When you store a Mongo Document it does not support to store the related JPA entity into database.
2. Query cross different data storage. Obviously, it is impossible to execute query cross different stores.

Summary

Personally, I think the Mongo and JPA crossstore is only a toy, and the provided feature is too weak. I hope it can be improved in future, and provides seamless integration between different data stores as I expected.

评论

此博客中的热门博文

Create a restful application with AngularJS and Zend 2 framework

Create a restful application with AngularJS and Zend 2 framework This example application uses AngularJS/Bootstrap as frontend and Zend2 Framework as REST API producer. The backend code This backend code reuses the database scheme and codes of the official Zend Tutorial, and REST API support is also from the Zend community. Getting Started with Zend Framework 2 Getting Started with REST and Zend Framework 2 Zend2 provides a   AbstractRestfulController   for RESR API producing. class AlbumController extends AbstractRestfulController { public function getList() { $results = $this->getAlbumTable()->fetchAll(); $data = array(); foreach ($results as $result) { $data[] = $result; } return new JsonModel(array( 'data' => $data) ); } public function get($id) { $album = $this->getAlbumTable()->getAlbum($id); return new JsonModel(array("data" =>

JPA 2.1: Attribute Converter

JPA 2.1: Attribute Converter If you are using Hibernate, and want a customized type is supported in your Entity class, you could have to write a custom Hibernate Type. JPA 2.1 brings a new feature named attribute converter, which can help you convert your custom class type to JPA supported type. Create an Entity Reuse the   Post   entity class as example. @Entity @Table(name="POSTS") public class Post implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name="ID") private Long id; @Column(name="TITLE") private String title; @Column(name="BODY") private String body; @Temporal(javax.persistence.TemporalType.DATE) @Column(name="CREATED") private Date created; @Column(name="TAGS") private List<String> tags=new ArrayList<>(); } Create an attribute convert

Auditing with Hibernate Envers

Auditing with Hibernate Envers The approaches provided in JPA lifecyle hook and Spring Data auditing only track the creation and last modification info of an Entity, but all the modification history are not tracked. Hibernate Envers fills the blank table. Since Hibernate 3.5, Envers is part of Hibernate core project. Configuration Configure Hibernate Envers in your project is very simple, just need to add   hibernate-envers   as project dependency. <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-envers</artifactId> </dependency> Done. No need extra Event listeners configuration as the early version. Basic Usage Hibernate Envers provides a simple   @Audited   annotation, you can place it on an Entity class or property of an Entity. @Audited private String description; If   @Audited   annotation is placed on a property, this property can be tracked. @Entity @Audited public class Signup implements Serializa