|
Title :
Integrating Struts 2.0 applications with Hibernate
Author :
Manju
Date : Sat Feb 19th, 2011
Struts 2.0 is one of the popularly used Presentation tier framework for Java web Applications.It is based on the WebWork2 technology.Struts 2.0 framework implements MVC 2 architecture by centralizing the control using a Front Controller strategy. The extensible and flexible nature of Struts 2.0 makes it the favourite choice of Java web developers. The major features of Struts 2.0 are user interface tags, Interceptor, result and validation.
A strong persistence framework is critical to the success and scalability of any application that we develop. Today we have a lot of data access frameworks like Hibernate, JDBC, JPAs, etc available in the market. Sturts can be integrated easily with any of these popularly used data access frameworks.
Title :
Configuring Multiple Databases in Hibernate
Author :
Manju
Date : Sat Dec 11th, 2010
Hibernate is designed to be used with a large set of databases. The details of those databases are configured in an XML file called hibernate.cfg.xml. This configuration files could be given any name and is usually placed in the root of your application class path. There are many configuration parameters available that makes the mapping of domain model to relational model easier. The same configurations can be done from your Java class uning org.hibernate.cfg.Configuration class. If you are beginner in Hibernate, please read our article on Introduction to Hibernate ORM Framework by Raja.
Title :
Developing Applications with JBoss and Hibernate
Author :
PacktPub
Date : Sun Feb 14th, 2010
The JBoss Application Server is a Java EE-certified platform for developing and deploying Java Enterprise applications. JBoss Application Server provides the full range of J2EE 1.5 features as well as extended Enterprise services including clustering, caching, and persistence. This book will show Java EE developers how to develop their applications using the JBoss Application Server. It covers topics such as:
Title :
Spring Persistence with Hibernate
Author :
PacktPub
Date : Wed Dec 9th, 2009
Hibernate allows transparent persistence, which means the application is absolutely isolated from the underlying database storage format. Three players in the Hibernate scene implement this feature: Hibernate dialect, Hibernate types, and HQL. The Hibernate dialect allows us to use a range of different databases, supporting different, proprietary variants of SQL and column types. In addition, HQL allows us to query persisted objects, regardless of their relational persisted form in the database.
Title :
Hibernate Interview Questions
Author :
JavaBeat
Date : Fri Feb 13th, 2009
Hibernate is an object-relational mapping (ORM) library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Hibernate solves Object-Relational impedance mismatch problems by replacing direct persistence-related database accesses with high-level object handling functions. The Hibernate 2.1 framework won a Jolt Award in 2005.
Title :
Hibernate Vs EJB 3.0
Author :
Ramaswamy
Date : Thu Apr 10th, 2008
The J2EE field is agog with excitement about a very popular open-source technology , Hibernate , being elevated to the status of JCP standard. Feedback from J2EE programmers in industry says that knowledge of Hibernate is mandatory for all J2EE aspirants. In this short tutorial , the author attempts to trace the reasons for this new trend and to alert us , to the imminent and dramatic changes in the J2EE landscape.
Title :
Integrating Spring Framework with Hibernate ORM Framework
Author :
Christy
Date : Tue Oct 16th, 2007
Hibernate is a powerful technology for persisting data in any kind of Application. Spring, on the other hand is a dependency injection framework that supports IOC. The beauty of Spring is that it can integrates well with most of the prevailing popular technologies. In this article, we will discuss on how it is possible to integrate Spring with Hibernate. This article assumes that the reader has a basic understanding in both Spring and Hibernate Frameworks.
Title :
Introduction to Hibernate Caching
Author :
VaniShanmugam
Date : Tue Oct 2nd, 2007
While working with Hibernate web applications we will face so many problems in its performance due to database traffic. That to when the database traffic is very heavy . Actually hibernate is well used just because of its high performance only. So some techniques are necessary to maintain its performance. Caching is the best technique to solve this problem. In this article we will discuss about, how we can improve the performance of Hibernate web applications using caching.
Title :
Introduction to Interceptors in Hibernate ORM Framework
Author :
Raja
Date : Sun May 13th, 2007
This article deals with Hibernate Interceptors. Hibernate is an open-source project that provides solution. For more information about Hibernate, novice readers are encouraged to read the articleon javabeat before reading this article.
Title :
Introduction to Hibernate ORM(Object/Relational) Framework
Author :
Raja
Date : Sat May 12th, 2007
Persistent data can be seen anywhere in an application. Managing persistent data is one of the
few challenges that modern technologies/products are facing. A solution called Object-Relational
Mapping (ORM) has gained major popularity over the past few years. ORM is a piece of
software/product for the representation and conversion of data between the database and the
object-oriented programming language. Hibernate is one such ORM solution and it is an open-source
project.
|