Strategies For Integrating Hibernate Into Legacy Java Code– Part 1

Strategies For Integrating Hibernate Into Legacy Java Code– Part 1

If you’re like me, you invest a lot of time dealing with tradition code that, for whatever factor, does not take benefit of contemporary methods and libraries. These days, the de facto approach includes Hibernate and DAOs, generally handled by Spring.

The secret with this refactorization is to get the existing company reasoning code (Struts Actions, JSPs, Delegate classes, Business Service classes, and so on) to access the datastore utilizing Hibernate, handled by Spring, without by hand altering any of that code straight. Part 1 will consist of developing the Hibernate information object classes, DAOs, and refactoring the existing code to work with these freshly produced types.

Of all, we require to produce our Hibernate design and DAO classes. I advise an Eclipse Plugin for producing and preserving the Hibernate artifacts (Google “Hibernate Eclipse Plugin” to get begun). The structure and requirements for producing Hibernate classes and config files are well recorded in other places, so I will not go into information here.

Now we have java classes (POJOs) which map to our database tables, however none of the existing code utilizes these brand-new information object classes. State we have a tradition class called AccountInfo which corresponds to the ACCOUNT database table. Of course, do this with each things design class.

You’re about to if you never ever recognized why OOP languages are so excellent. Now we’re going to refactor the code so that all of the existing tradition can be hooked into the brand-new Hibernate design classes rather of the tradition ones. Continuing with the AccountInfo example, produce a brand-new class– you’ll most likely wish to produce a brand-new plan for this action– called Account that extends the Hibernate POJO for Account and carries out the brand-new IAccount user interface.

This is since the IAccount user interface most likely defies a lot of techniques that are not executed in the Hibernate Account POJO. To deal with these, we generally desire the brand-new Account class to entrust to its produced superclass whenever required to please its agreement as an IAccount type. As a genuine world example from the application I was working on, the tradition AccountInfo class specified a getter/setter set for a residential or commercial property called username, whereas the matching column in the ACCOUNT table was really LOGIN _.

To complete up the information design layer, modify the proper Hibernate and Spring setup submits to refer to these brand-new item design classes. The application now has the capability to map database records to Java things through Hibernate, and the tradition code which refers to these classes has actually not needed any modifying by hand.

The secret with this refactorization is to get the existing organisation reasoning code (Struts Actions, JSPs, Delegate classes, Business Service classes, and so on) to access the datastore utilizing Hibernate, handled by Spring, without by hand altering any of that code straight. Part 1 will consist of producing the Hibernate information object classes, DAOs, and refactoring the existing code to work with these recently developed types. I suggest an Eclipse Plugin for producing and preserving the Hibernate artifacts (Google “Hibernate Eclipse Plugin” to get begun). Now we’re going to refactor the code so that all of the existing tradition can be hooked into the brand-new Hibernate design classes rather of the tradition ones. The application now has the capability to map database records to Java things through Hibernate, and the tradition code which refers to these classes has actually not needed any modifying by hand.