-
Notifications
You must be signed in to change notification settings - Fork 76
Closed
eclipse-jnosql/jnosql-databases
#301Labels
Description
Which JNoSQL project the issue refers to?
JNoSQL Databases
Bug description
MongoDB implementation provides the following ValueWriter and ValueReader(s):
org.eclipse.jnosql.databases.mongodb.communication.UUIDValueWriterorg.eclipse.jnosql.databases.mongodb.communication.BinaryValueReaderorg.eclipse.jnosql.databases.mongodb.communication.UUIDValueReader
Unfortunately, ValueWriters and ValueReaders are not restricted to a specific database, but are used in the mapping conversions of any other database in the application, as long as jnosql-mongodb is in the classpath.
JNoSQL Version
1.1.4-SNAPSHOT
Steps To Reproduce
- Create an application using
jnosql-mongodbandjnosql-arangodb. - Create an entity class having a
UUIDfield - Save an entity instance to ArangoDB
- Read the saved entity from ArangoDB
(3.) will use org.eclipse.jnosql.databases.mongodb.communication.UUIDValueWriter
(4.) will use org.eclipse.jnosql.databases.mongodb.communication.UUIDValueReader
Expected Results
No response
Code example, screenshot, or link to a repository
No response