Skip to content

Latest commit

 

History

History

setup-object

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Object db setup sample

WARNING: base configuration concepts are covered in base setup sample and will not be described here in detail

Demo introduce orient object api. It is very similar (in essence) to jpa (hibernate). Object api is a higher level above document api, but document api could still be used together with object api.

This sample requires only object api, so will work with graph apis excluded:

implementation ('ru.vyarus:guice-persist-orient:4.0.0')
implementation "com.orientechnologies:orientdb-object:3.0.38"
//implementation "com.orientechnologies:orientdb-graphdb:3.0.38"

NOTE: current repositories implementation does not support OresultSet, streams and OVertex and OEdge objects

ObjectDbModule uses special SchemeInitializer (in document demo it was hand-written): PackageSchemeInitializer. It is used to update database model according to model classes (see object mapping docs).

Demo

ObjectDemoApp is almost the same as document demo, just using objects instead of ODocument instances.

See SampleService for object api usage examples. Note that usage of projection or aggregate function in sql will lead to ODocument instances as a result.

Test

Sample spock tests prepared to show test setup using in-memory database.

SampleServiceTest