Use Orientdb Graphics Mode in a Spring MVC Project

I am trying to use OrientDB in my Spring MVC project.

I tried using the spring -data-orientdb project, but GraphDB mode support is not supported.

Then I found a sample project on GitHub, but it uses OrientDB in Object mode, which makes it easy to map POJOs in documents.

But instead, I need OrientDB mode Earl , so I can perform queries on the traverse.

What is the best way to do this? Should I write the mapping code between Edge / Vertex and my domain model?

+4
source share

Source: https://habr.com/ru/post/1615392/


All Articles