I am working on a web Application using Spring, Hibernate and JPA. In my application, data has to be processed in Source database and encrypted data has to be copied in Target database which is done by Masking Engine.
If the application is created and while doing the masking if database schema is changed, then it has to be handled.
Currently I am using SchemaCrawler for schema comparison. But it has significant impact on performance.
So is there any alternate solution for doing schema Comparison in Java?