Hibernate is the most common and famous ORM using these days. It has a property called “Dialect” through which we tells Hibernate that we are using ‘this specific’ database. Here in this post you can see the dialect property values which we have to give for different databases. Click here to Read Full Article
Author Archives: Lijin
Commonly used Generators in ‘Hibernate’
Generator Description increment It generates identifiers of type long, short or int that are unique only when no other process is inserting data into the same table. It should not the used in the clustered environment. identity It supports identity columns in DB2, MySQL, MS SQL Server, Sybase and HypersonicSQL. The returned identifier is ofContinue reading “Commonly used Generators in ‘Hibernate’”
Three advantages of integrating Struts into Spring
Three advantages of integrating Struts into Spring There are so many advantages of integrating a Struts application into the Spring framework. These three points I got from Mr.George Franciscus’s article in Developerworks. 1. Spring was explicitly designed to resolve some of the real-world problems of JEE, such as complexity, poor performance, testability, and much more.Continue reading “Three advantages of integrating Struts into Spring”
Three ways to integrate Struts applications with Spring
1. Use Spring’s ActionSupport 2. Override the RequestProcessor 3. Delegate action management to Spring Source : More on this topic visit here Technorati tags: Spring, Struts
