ok i have this application using a db called EXAMPLE.
this has been going on for a while. applications uses a kind-of-old version of hibernate.
users' password are stored as org.jasypt.hibernate.type.EncryptedStringType
<typedef name="encryptedString" class="org.jasypt.hibernate.type.EncryptedStringType">
<param name="encryptorRegisteredName">jasyptHibernateEncryptor</param>
</typedef>
<property name="password" type="encryptedString">
<column name="pwd" length="254" not-null="true" />
</property>
i don't know if it's always like this but basically when querying for a user it automatically decrypt his password so i have it clear.
on the very same database now runs a new web application (call it webapp2).
this one encrypts passwords differently and in an undecryptable way.
what i was asked to do is migrate old users to "the new way".
what i did is create a maven project with 3 modules.
- module1 (aka oldie) should just be able to query the database in the old way (so that for every query on the user table i can have the user's password in clear text)
- module2 (aka newie) should just query the database in the new way.
- module3 should have one dummie class (for now it's a junit thingie) that uses UserService from module1 and UserService from module2 respectively for read users password (clear text) and set it back the new way.
THE ISSUE: what i'm facing is a whole lot of issues with module3 having to deal with different versions of hibernate libs and what not.
on my configuration of module3 (they're all spring application) i'm autowiring services and daos from both module1 and module2 making a lot of mess which ends up to troubles.
what look to be happening is that there's a mix of dependencies that makes instantiations of sessionFactories or daos (for now) impossible.
any help will be appreciated