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

link|improve this question

17% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I wouldn't try to use both versions of Hibernate at the same time. You could

  • extract both encryption/decryption parts in a small utility class, and just use JDBC to decrypt using the old way and encrypt using the new way.
  • or just run a first pass with the first module to extract all the passwords in clear text and put them in a file or in a dedicated database table, then run a second pass with the second module to extract the clear text passwords and store them in the entities to encrypt them using the new method.
link|improve this answer
second the opinion, provided you have liberty to do that. – sudmong Oct 11 '11 at 17:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.