I have two different Java Applications A and B. They should use the same Database for user management (If the User has an account in Application A, he also has an account in Application B and vice versa).
Both Application A and B have exactly the same User class. But when I create an User in Application A I can't retrieve this same User in Application B and vice-versa.
I've read in a forum:
db4o is able to do this. Different application can use the same database and access data of others "if you provide refferences" to the projects. I mean if you put your entity in a class library and add it as references to projects it wont be a problem
How could I achieve this?
Thanks in advance for any help.