Issue integrating AEM application with Orient DB
Hi All,
I am creating an AEM application, which needs a database for storage of bulk data. I have used OrientDB as the database.
OrientDB has JAVA APIs for doing operations on any data(insert/select/delete etc.)
As per documentation, I have added the below dependency in my Application's POM file:
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-client</artifactId>
<version>2.2.18</version>
</dependency>
<dependency>
<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-community</artifactId>
<version>2.2.18</version>
</dependency>
Here, after building the Application, I am getting the error in bundles as some of the components are not resolved.
In order to resolve the errors, I have installed few more jar files directly from OSGI console. Here, the issue is few more jars are coming in RED as "cannot be resolved".
My query is if anyone has integrated OrientDB with AEM application, please let me know the steps. Also, I wanted to use JAVA API of OrientDB.
Thanks in advance!