SlideShare uma empresa Scribd logo
1 de 8
Baixar para ler offline
International
OPEN ACCESS Journal
Of Modern Engineering Research (IJMER)
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 52 |
Integration of Struts & Spring & Hibernate for Enterprise
Applications
Deepak Kasgar1
, Harish Chandra Maurya2
¹(Department of Computer Science and Engineering,Bhagwant University, India
²(Department of Computer Science and Engineering, Bhagwant University, India
I. Introduction
Frameworks are abstraction layer on existing technology. If developer’s directly works on technologies
of java then project development time and cost will increase time to time.Non Invasive Frameworks does not
force a developer to extend this class from a framework specific class or implement a framework specific
interface.Spring framework is a complete and a modular framework. It means complete application can be
developed using spring framework or some selective operations of the project can be developed using this
modular framework.Even though java enterprise is widely used, it has some limitations such as transaction
support, security, distributed computing [1],[5].Spring framework has few advantages over other frameworks
like:
1) Simplicity using POJO
2) Testability without using 3rd
party servers or container
3) Dependency Injection
Spring framework has a layered architecture so when an E-commerce application is developed using
spring framework it has clear separation of presentation layer, business layer, persistence layer. The layered
architecture of spring framework allows users to select about which of its components users can use.
II. Related Work
2.1 Architecture of Spring Framework
The architecture of spring has seven modules. The modules are as follows [2]:
 Core Container
 Spring Context
 Spring AOP
 Spring DAO
 Spring ORM
 Spring Web
 Spring MVC
ABSTRACT: The proposal of this paper is to present Spring Framework which is widely used in
developing enterprise applications. Considering the current state where applications are developed using
the EJB model, Spring Framework assert that ordinary java beans(POJO) can be utilize with minimal
modifications. This modular framework can be used to develop the application faster and can reduce
complexity. This paper will highlight the design overview of Spring Framework along with its features that
have made the framework useful. The integration of multiple frameworks for an E-commerce system has
also been addressed in this paper. This paper also proposes structure for a website based on integration of
Spring, Hibernate and Struts Framework.
Keywords- Spring Framework, IOC, Struts, Hibernate, E-commerce
Integration of Struts & Spring & Hibernate for Enterprise Applications
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 53 |
Fig 1 Architecture of Spring Framework
2.2Features of spring framework
Spring is open source development framework that offers a lot of functions to programmers. A member
of EJB team called Rod Thomson, has started company with name Interface21, and started experiment on
ordinary java classes (POJO) to provide enterprise services to industry applications. Finally he succeeded in
process of creating complex enterprise java application model as Spring Framework. The features of Spring
Framework are the Inversion of Control, Aspect oriented programming and Spring MVC.
Aspect oriented Programming: This module provides separation of business logic services from the business
operation. If services are implemented as part of business method then the following problem will arise [10].
 Boiler Plate code of Service
 Business class becomes complex.
 Managing business service become complex.
Example: consideringanexample of Banking System.
The various types of services such as Security, login, Transactions, Business operations are common in every
transaction.Then the normal system for this would be as follows [6]:
Inversion of Control: The central part of Spring Framework is Spring Container. It manages how beans
are created configured and managed in a spring container. This module provides the functional/basics part of the
spring framework called Dependency Injection.
The same system with the help of AOP can be drawn as follows: All the four functionalities are provided to one
class named as service [6].
Integration of Struts & Spring & Hibernate for Enterprise Applications
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 54 |
2.3 Spring MVC Model
The Spring Framework provides its own MVC model. The major components of Spring MVC are as follows
[3]:
DispatcherServlet- DispatcherServlet uses HandlerMapping and forwards the request to concerned controller.
Controller- It handles the request and is created by user. They are objects that can respond to the actions a user
takes like form filling or clicking a link.
View- It can be imagined as method of presenting the output to the users.
ModelAndView- Model means data which is accessible in that view. Model is the data in the form of key/value
pair
ViewResolver- ViewResolver is a bean which finds an appropriate view for the logical name set for
ModelAndView object.
HandlerMapping- Whenever DispatcherServlet receives incoming requests it associates the request to individual
controllers with the help of this component.
The MVC model of Spring Framework can be shown as below [6]:
2.4Spring and xml
XML stands for Extensible Markup Language. XML is widely used in frameworks for configuring
information. The information can be processed by parsers. Xml files can be modified and the change can be
seen throughout the application. Xml files need not to be complied so time needed in deployment to servers can
be saved. There are three types of xml files:
 web.xml file
 applicationContext.xml file
 DispatcherServlet.xml file
web.xml:
Whenever a request is made by a user then web.xml file forwards the request to DispatcherServlet which is
being specified in the web.xml file. The web.xml file specifies the xml version number and name of
DispatcherServlet [3].
The DispatcherServlet can be configures as shown:
<servlet>
<servlet-name>dispatcher</servlet-name><servlet-class>
org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
The name of servlet is given as “dispatcher” and load-on-startup indicates that it should be the first to execute
when called.
The type of URLs that can be handled by the DispatcherServlet can be shown using
<url-pattern> element.
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
Integration of Struts & Spring & Hibernate for Enterprise Applications
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 55 |
<url-pattern>/send/*</url-pattern>
</servlet-mapping>
ApplicationContext.xml:
ApplicationContext containers can provide multiples functionality like AOP, Messaging, Scheduling, Event
Handling, and Internationalization [3].
<bean id="superClass" class="packagename.SuperClass" />
<bean id ="subClass" class=" packagename.SubClass">
</bean>
<property name="superClass" ref="superClass"/>
</beans>
This file loads the bean of SuperClass.java and SubClass.java.
DispatcherServlet.xml:
When a request is sent from a browser front controller servlet of spring MVC called DispatcherServlet traps the
given request. DispatcherServlet takes the help of Handler Mapping class to find a suitable controller for
handling the request[3].
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/views/</value></property>
<property> name="suffix"><value>.jsp</value></property>
</bean>
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props><prop key ="/*">dispatchController</prop>
</props>
</property>
</bean>
<bean id="dispatchController" class=" packagename.DispatchController"></bean>
</beans>
2.5 E-Commerce System Using Spring and other frameworks
This modular framework can be used with many other frameworks for making of an E-commerce
application such as struts and hibernate.
Struts framework: This framework divides web system into three layers: Model, View and Controller. Model
consists of JavaBeans, EJB; View consists of JSP files; Controller is carried out by Actions [4].
The architecture of struts can be shown as below [2]:
Integration of Struts & Spring & Hibernate for Enterprise Applications
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 56 |
The structure of Hibernate can be shown as below [2]:
Fig 6 Structure of Hibernate
Hibernate framework: This framework minimize thecomplications and difficulty of writing the SQL
statements. It charts Java classes to database tables efficiently. It is mainly associated with databases [3],[4].
Integration of Struts, Spring and Hibernate
Struts, Spring and Hibernate frameworks can be integrated together to develop an E-commerce
applications The struts framework with an efficient MVC can help in developing the presentation tier. The
Spring framework can take care about business logic. The Hibernate framework can help in persisting dataand
retrieving the data to and from database respectively.
The architecture based on integration of above frameworks can be shown as below [1]:
Fig 7 Architecture based on Spring, Struts and Hibernate.
Hibernate
Integration of Struts & Spring & Hibernate for Enterprise Applications
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 57 |
III. PROPOSED SYSTEM
Spring framework which is modular and having a multitier architecture can be used with multiple other
frameworks such as Struts, Hibernate. Although spring has its own MVC which can be used in developing the
entire application.
The proposed system can be considered here with the help of a website such as that of a Shopping Cart where
user requests items and buys items. It generally has three layer i.e. presentation layer, business layer and
database layer.
A. Presentation layer:
The Presentation Tier is generally responsible for displaying the output on screen in a look and feel
appearance. User Interface is the user sees when they open a web page in the browser. It is what is presented to
the user on the client side within their web browser. It is responsible for handling requests and forwarding the
response back to client. It provides with the views that can be provided to the users such as Jsp, HTML
documents. The presentation layer can be done using either spring MVC or struts.
B. Business layer:
The business layer is also called as functional Process Logic, Business Rules and all the logic related to
functionality can be kept in Business layer. In this layer we can typically define POJO, beans, interfaces,
classes, functions, procedures, properties file. The business layer can be handled using spring framework
because it has various features such as scheduling, dependency injection, internationalization, distributed
transactions.
C. Data Access layer:
The data access layer or persistence layer can used for connectivity with any database. It can handle several
operations called by user including creation of databases.
The general architecture for the three tier can be as follows:
The proposed architecture for the website consisting of the three layers is as follows:
Integration of Struts & Spring & Hibernate for Enterprise Applications
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 58 |
The above architecture can be explained as follows in terms of model, view and controller.
A) Responsibilities of Model
 Reads data sent by a controller.
 Apply business logic for the given data.
 If required store/read data from database
 Returns the result of business operation back to controller.
B) Responsibilities of View
 Read the data produced by a model.
 Apply presentation required for data.
 Render the response to browser.
C) Responsibilities of Controller
 Accept the request send by a client.
 Find suitable model for a request.
 Calls appropriate model component.
 Gets the result from model.
 Call suitable view to display the result.
Form Field Validation- Struts provide two ways of validations:
 Client Side.
 Server Side.
Now day’s struts framework is used in presentation layer of application but there are many other competitor for
it like: Spring Framework which has its own MVC, Stripes, and Wicket. But Struts has its own limitations
which can be stated as:
1) Testing is impossible without server.
2) Struts version 1.x supports less number of views as compared to Spring MVC.
3) Documentation is not properly organized so difficulty arises for developers.
Benefits of Spring MVC over Struts are as follows-
1) Spring MVC uses interface approach which avoids concrete inheritance between action and form objects.
2) Using Spring IOC testing of objects without server is possible.
Although Spring MVC has its own added advantages it also comes with some limitations such-
1) Spring MVC requires extensive XML configuration files which can become tedious.
2) Spring MVC does not support AJAX-Asynchronous JavaScript which is a newer trend in developing web
application
3) The Spring framework acts as a good contender for the middle tier because of its Aspect Oriented
Programming and Inversion of Control.
The main approach of developing application using Spring Framework is as follows:
1) The Spring framework provides its own MVC. Developers sometime feel more comfortable with some other
framework such as Struts so spring easily get integrated with such frameworks.
2) The Spring framework has the main functionality as Inversion of Control and Aspect Oriented Programming
which can be effectively used to handle the business objects.
3) The Spring framework can also be easily integrated with other ORM tool such as Hibernate, iBATIS.
The ORM tool is a tool that performs mapping from Object to relational tables. Hibernate is one such ORM tool.
The spring framework follows DAO module which can be helpful to connect any ORM tool.
The Hibernate ORM tool can be easily integrated with spring with the help of XML mapping. The spring
framework when used with Hibernate for data access and Struts for Web presentation can help in developing
web application in an efficient manner.
IV. Discussion
The spring framework has MVC model. Struts framework which is used for presentation tier also has
MVC model. But there are some differences between the two with regards to the MVC model. The differences
can be explained as follows[17]:
1) The Spring MVC supports more number of views than that of the struts1.x such as struts1.x only supports
JSP and Tiles, but spring MVC supports Velocity, PDF, excel in addition to JSP and Tiles.
2) Spring MVC is well organized as compared to struts.
3) Struts framework has been around for long time, so it is easy for use as compared to spring because
documentation of spring has to be read before using it.
4) Spring MVC web tier are easier to test because the testing can be performed without server.
Integration of Struts & Spring & Hibernate for Enterprise Applications
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 59 |
5) With the help of spring MVC all tiers can be used, but struts can only be used for web tier.
The above differences between struts web tier and spring MVCare minimal. Making comparison between struts
2.x and spring both of them are very much same with the arrival of changes from struts 1.x to struts 2.x
The spring framework has its own JDBC module for data access but it can be compared with Hibernate based on
how connection is done between database and application.
JDBC vs Hibernate
1) If developer go with JDBC connection he has to write code to map object into relational tables, Hibernate
map object into relational tables using the xml files so developers needs to write the code to map java classes to
database tables.
2) Scalability of Hibernate is very good for high performance applications as compared to JDBC.
V. Architectural Benefits Of Spring
There are multiple architectural benefits of spring framework. They can be described as following [3]:
1) Spring Framework can be efficientlyintegrate with other frameworks such as struts, hibernate.
2) Spring provides easy access to database by using hibernate framework and avoiding the handling of error
mechanism.
3) Applications developed using spring framework depends on few APIs.
4) Due to its Inversion of Control feature the amount of time needed for testing the code is less.
5) Because Spring is a layered architecture users can select which of its components can be used.
6) The Spring Web MVC framework isflexible,robustand well designed for rapidly developing web
applications.
7) Spring Framework can work effectively with J2EE for developing applications in an effective manner.
VI. Conclusions
Being a modular framework spring is a powerful framework for developing enterprise applications. It
can also be easily integrated with hibernate, struts and frameworks for developing complete enterprise
applications thereby reducing the coupling and clear separation of layers. Due to its lightweight feature it is easy
to use. Web servers such as Tomcat can also be used during integration of spring with other frameworks.
Considering the present scenario wherein there is struts2 framework that can be implemented for web tier spring
framework can be used effectively for all the three tiers to build an efficient enterprise application. The spring
framework can be easily be integrated with any ORM tool such as Hibernate, iBATIS.
REFERENCES
[1] Chunsheng Zhao, Mai Jiang, Zhiyong He,” The Design of E-Commerce System Architecture Based on Struts2, Spring and
Hibernate”, IEEE Transaction Paper Dated 2010.
[2] JiyaJiang , Tong Liu , Yu Liu,”The Construction of E-Business Portal Based on Struts, Spring and Hibernate”, IEEE
Transaction Paper Dated 2009.
[3] Praveen Gupta, Prof. M.C. Govil,” Spring Web MVC Framework for rapid open source J2EE application development: a
case study”, International Journal of Engineering Science and Technology, Vol. 2(6), 2010, 1684-1689
[4] Praveen Gupta, Prof. M.C. Govil,” MVC Design Pattern for the multi framework distributed applications using XML,
spring and struts framework” , International Journal on Computer Science and Engineering, Vol. 02, No. 04, 2010, 1047-
1051
[5] Rod Johnsonet,” Professional Java Development with the Spring Framework”, Publications John Wiley & Sons 2005
[6] Craig Walls with Ryan Breidenbach, ” Spring in Action” , Publications Manning 2008
[7] Introduction to the Spring framework accessed from: http://www.ibm.com/developerworks/web/library/wa-Spring1/
[8] Model-View-controller Accessed from: http://en.wikipedia.org/wiki/Model-view-controller
[9] Hao, Xiafei, Tang, Hongxi. ”Struts+Spring+Hibernate Integrated Framework and its Use in Log Accounting and analyzing
System”, International Conference Dated 2010.
[10] KeJu, Jiang Bo,” Applying IoC and AOP to the Architecture of Reflective Middleware”, International Conference Dated
2007.
[11] “Research of Structure Integration based on Struts and Hibernate”, IEEE Conference 2010.
[12] Erxiang Chen Personnel department “Research and Design on Library Management System Based on Struts and Hibernate
Framework”, IEEE Conference 2009.
[13] Hui Li, Jingjun Zhang, Lei Wang,” The Research and Application of Web-Based System with Aspect-Oriented Features”,
IEEE International Conference Dated 2010.
[14] DipankarMajumdar, “Migration from Procedural Programming to Aspect Oriented Paradigm”, IEEE International
Conference Dated 2009.
[15] Hui Li ,GuiJun Xu , Mingji Zhou, Lingling Si, “Aspect-oriented Programming for MVC Framework” , IEEE Paper Dated
2010.
[16] Robert J. Walker, Elisa L.A. Baniassad and Gail C. Murphy, “An Initial Assessment of Aspect-oriented Programming”,
ACM Paper Dated 2009.

Mais conteúdo relacionado

Mais procurados

IRJET- Lightweight MVC Framework in PHP
IRJET- Lightweight MVC Framework in PHPIRJET- Lightweight MVC Framework in PHP
IRJET- Lightweight MVC Framework in PHPIRJET Journal
 
Struts Interview Questions
Struts Interview QuestionsStruts Interview Questions
Struts Interview Questionsjbashask
 
Design patterns fast track
Design patterns fast trackDesign patterns fast track
Design patterns fast trackBinu Bhasuran
 
2016 state of industrial internet application development
2016 state of industrial internet application development2016 state of industrial internet application development
2016 state of industrial internet application developmenteraser Juan José Calderón
 
Spring framework
Spring frameworkSpring framework
Spring frameworkKani Selvam
 
IRJET- Design of Closed Loop PI Controller Based Hybrid Z-Source DC-DC Conver...
IRJET- Design of Closed Loop PI Controller Based Hybrid Z-Source DC-DC Conver...IRJET- Design of Closed Loop PI Controller Based Hybrid Z-Source DC-DC Conver...
IRJET- Design of Closed Loop PI Controller Based Hybrid Z-Source DC-DC Conver...IRJET Journal
 
Railsplitter: Simplify Your CRUD
Railsplitter: Simplify Your CRUDRailsplitter: Simplify Your CRUD
Railsplitter: Simplify Your CRUDFlurry, Inc.
 
IRJET- MVC Framework: A Modern Web Application Development Approach and Working
IRJET- MVC Framework: A Modern Web Application Development Approach and WorkingIRJET- MVC Framework: A Modern Web Application Development Approach and Working
IRJET- MVC Framework: A Modern Web Application Development Approach and WorkingIRJET Journal
 
Hibernate Interview Questions
Hibernate Interview QuestionsHibernate Interview Questions
Hibernate Interview QuestionsSyed Shahul
 
Web application development with laravel php framework version 4
Web application development with laravel php framework version 4Web application development with laravel php framework version 4
Web application development with laravel php framework version 4Untung D Saptoto
 
Template based framework for rapid fast development
Template based framework for rapid fast developmentTemplate based framework for rapid fast development
Template based framework for rapid fast developmenteSAT Publishing House
 
Template based framework for rapid fast development of enterprise applications
Template based framework for rapid fast development of enterprise applicationsTemplate based framework for rapid fast development of enterprise applications
Template based framework for rapid fast development of enterprise applicationseSAT Journals
 
Oracle E Business Suite Security Made Easy - Menus, Functions, Responsibiliti...
Oracle E Business Suite Security Made Easy - Menus, Functions, Responsibiliti...Oracle E Business Suite Security Made Easy - Menus, Functions, Responsibiliti...
Oracle E Business Suite Security Made Easy - Menus, Functions, Responsibiliti...Louise Abdulkader
 
Type Adoption in xCP 2.1 Applications
Type Adoption in xCP 2.1 ApplicationsType Adoption in xCP 2.1 Applications
Type Adoption in xCP 2.1 ApplicationsHaytham Ghandour
 
Error isolation and management in agile
Error isolation and management in agileError isolation and management in agile
Error isolation and management in agileijccsa
 
Spring framework Introduction
Spring framework  IntroductionSpring framework  Introduction
Spring framework IntroductionAnuj Singh Rajput
 
Open Framework for the Dynamic Reconfiguration of Component-Based Software
Open Framework for the Dynamic Reconfiguration of Component-Based SoftwareOpen Framework for the Dynamic Reconfiguration of Component-Based Software
Open Framework for the Dynamic Reconfiguration of Component-Based SoftwareMadjid KETFI
 

Mais procurados (18)

IRJET- Lightweight MVC Framework in PHP
IRJET- Lightweight MVC Framework in PHPIRJET- Lightweight MVC Framework in PHP
IRJET- Lightweight MVC Framework in PHP
 
Struts Interview Questions
Struts Interview QuestionsStruts Interview Questions
Struts Interview Questions
 
Design patterns fast track
Design patterns fast trackDesign patterns fast track
Design patterns fast track
 
2016 state of industrial internet application development
2016 state of industrial internet application development2016 state of industrial internet application development
2016 state of industrial internet application development
 
Peoplesoft technical consultant interview questions
Peoplesoft technical consultant interview questionsPeoplesoft technical consultant interview questions
Peoplesoft technical consultant interview questions
 
Spring framework
Spring frameworkSpring framework
Spring framework
 
IRJET- Design of Closed Loop PI Controller Based Hybrid Z-Source DC-DC Conver...
IRJET- Design of Closed Loop PI Controller Based Hybrid Z-Source DC-DC Conver...IRJET- Design of Closed Loop PI Controller Based Hybrid Z-Source DC-DC Conver...
IRJET- Design of Closed Loop PI Controller Based Hybrid Z-Source DC-DC Conver...
 
Railsplitter: Simplify Your CRUD
Railsplitter: Simplify Your CRUDRailsplitter: Simplify Your CRUD
Railsplitter: Simplify Your CRUD
 
IRJET- MVC Framework: A Modern Web Application Development Approach and Working
IRJET- MVC Framework: A Modern Web Application Development Approach and WorkingIRJET- MVC Framework: A Modern Web Application Development Approach and Working
IRJET- MVC Framework: A Modern Web Application Development Approach and Working
 
Hibernate Interview Questions
Hibernate Interview QuestionsHibernate Interview Questions
Hibernate Interview Questions
 
Web application development with laravel php framework version 4
Web application development with laravel php framework version 4Web application development with laravel php framework version 4
Web application development with laravel php framework version 4
 
Template based framework for rapid fast development
Template based framework for rapid fast developmentTemplate based framework for rapid fast development
Template based framework for rapid fast development
 
Template based framework for rapid fast development of enterprise applications
Template based framework for rapid fast development of enterprise applicationsTemplate based framework for rapid fast development of enterprise applications
Template based framework for rapid fast development of enterprise applications
 
Oracle E Business Suite Security Made Easy - Menus, Functions, Responsibiliti...
Oracle E Business Suite Security Made Easy - Menus, Functions, Responsibiliti...Oracle E Business Suite Security Made Easy - Menus, Functions, Responsibiliti...
Oracle E Business Suite Security Made Easy - Menus, Functions, Responsibiliti...
 
Type Adoption in xCP 2.1 Applications
Type Adoption in xCP 2.1 ApplicationsType Adoption in xCP 2.1 Applications
Type Adoption in xCP 2.1 Applications
 
Error isolation and management in agile
Error isolation and management in agileError isolation and management in agile
Error isolation and management in agile
 
Spring framework Introduction
Spring framework  IntroductionSpring framework  Introduction
Spring framework Introduction
 
Open Framework for the Dynamic Reconfiguration of Component-Based Software
Open Framework for the Dynamic Reconfiguration of Component-Based SoftwareOpen Framework for the Dynamic Reconfiguration of Component-Based Software
Open Framework for the Dynamic Reconfiguration of Component-Based Software
 

Destaque

EWIL: description of the training approach
EWIL: description of the training approachEWIL: description of the training approach
EWIL: description of the training approachEWIL_EU
 
Driver Fatigue Monitoring System Using Eye Closure
Driver Fatigue Monitoring System Using Eye ClosureDriver Fatigue Monitoring System Using Eye Closure
Driver Fatigue Monitoring System Using Eye ClosureIJMER
 
Stress Analysis of Precast Prestressed Concrete Beams during Lifting
Stress Analysis of Precast Prestressed Concrete Beams during  LiftingStress Analysis of Precast Prestressed Concrete Beams during  Lifting
Stress Analysis of Precast Prestressed Concrete Beams during LiftingIJMER
 
Implementation of High Throughput Radix-16 FFT Processor
Implementation of High Throughput Radix-16 FFT ProcessorImplementation of High Throughput Radix-16 FFT Processor
Implementation of High Throughput Radix-16 FFT ProcessorIJMER
 
Variant High Origin of the Posterior Tibial Artery
Variant High Origin of the Posterior Tibial ArteryVariant High Origin of the Posterior Tibial Artery
Variant High Origin of the Posterior Tibial ArteryIJMER
 
Performance Analysis of Routing Metrics for Wireless Sensor Networks
Performance Analysis of Routing Metrics for Wireless Sensor NetworksPerformance Analysis of Routing Metrics for Wireless Sensor Networks
Performance Analysis of Routing Metrics for Wireless Sensor NetworksIJMER
 
Ax32739746
Ax32739746Ax32739746
Ax32739746IJMER
 
Bk2421742180
Bk2421742180Bk2421742180
Bk2421742180IJMER
 
Artificial Intelligence based optimization of weld bead geometry in laser wel...
Artificial Intelligence based optimization of weld bead geometry in laser wel...Artificial Intelligence based optimization of weld bead geometry in laser wel...
Artificial Intelligence based optimization of weld bead geometry in laser wel...IJMER
 
Bk31212217
Bk31212217Bk31212217
Bk31212217IJMER
 
Bull vision VA
Bull vision VABull vision VA
Bull vision VABull
 
Seasonal Variational Impact of the Physical Parameters On Mohand Rao River F...
Seasonal Variational Impact of the Physical Parameters On  Mohand Rao River F...Seasonal Variational Impact of the Physical Parameters On  Mohand Rao River F...
Seasonal Variational Impact of the Physical Parameters On Mohand Rao River F...IJMER
 
A Survey of User Authentication Schemes for Mobile Device
A Survey of User Authentication Schemes for Mobile DeviceA Survey of User Authentication Schemes for Mobile Device
A Survey of User Authentication Schemes for Mobile DeviceIJMER
 
To make a biogas energy from different sources & creating awareness between h...
To make a biogas energy from different sources & creating awareness between h...To make a biogas energy from different sources & creating awareness between h...
To make a biogas energy from different sources & creating awareness between h...IJMER
 
Skyline Query Processing using Filtering in Distributed Environment
Skyline Query Processing using Filtering in Distributed EnvironmentSkyline Query Processing using Filtering in Distributed Environment
Skyline Query Processing using Filtering in Distributed EnvironmentIJMER
 
An Enhance PSO Based Approach for Solving Economical Ordered Quantity (EOQ) P...
An Enhance PSO Based Approach for Solving Economical Ordered Quantity (EOQ) P...An Enhance PSO Based Approach for Solving Economical Ordered Quantity (EOQ) P...
An Enhance PSO Based Approach for Solving Economical Ordered Quantity (EOQ) P...IJMER
 
The everlasting gospel
The everlasting gospelThe everlasting gospel
The everlasting gospelRobert Taylor
 
Seismic Behavior of Two Layers of Drum And Up To the Mouth of the Mouth Dept...
Seismic Behavior of Two Layers of Drum And Up To the Mouth of  the Mouth Dept...Seismic Behavior of Two Layers of Drum And Up To the Mouth of  the Mouth Dept...
Seismic Behavior of Two Layers of Drum And Up To the Mouth of the Mouth Dept...IJMER
 
Management operation system techniques (MOST) replaces PERT and CPM in constr...
Management operation system techniques (MOST) replaces PERT and CPM in constr...Management operation system techniques (MOST) replaces PERT and CPM in constr...
Management operation system techniques (MOST) replaces PERT and CPM in constr...IJMER
 

Destaque (20)

EWIL: description of the training approach
EWIL: description of the training approachEWIL: description of the training approach
EWIL: description of the training approach
 
Driver Fatigue Monitoring System Using Eye Closure
Driver Fatigue Monitoring System Using Eye ClosureDriver Fatigue Monitoring System Using Eye Closure
Driver Fatigue Monitoring System Using Eye Closure
 
Stress Analysis of Precast Prestressed Concrete Beams during Lifting
Stress Analysis of Precast Prestressed Concrete Beams during  LiftingStress Analysis of Precast Prestressed Concrete Beams during  Lifting
Stress Analysis of Precast Prestressed Concrete Beams during Lifting
 
Implementation of High Throughput Radix-16 FFT Processor
Implementation of High Throughput Radix-16 FFT ProcessorImplementation of High Throughput Radix-16 FFT Processor
Implementation of High Throughput Radix-16 FFT Processor
 
Variant High Origin of the Posterior Tibial Artery
Variant High Origin of the Posterior Tibial ArteryVariant High Origin of the Posterior Tibial Artery
Variant High Origin of the Posterior Tibial Artery
 
Test
TestTest
Test
 
Performance Analysis of Routing Metrics for Wireless Sensor Networks
Performance Analysis of Routing Metrics for Wireless Sensor NetworksPerformance Analysis of Routing Metrics for Wireless Sensor Networks
Performance Analysis of Routing Metrics for Wireless Sensor Networks
 
Ax32739746
Ax32739746Ax32739746
Ax32739746
 
Bk2421742180
Bk2421742180Bk2421742180
Bk2421742180
 
Artificial Intelligence based optimization of weld bead geometry in laser wel...
Artificial Intelligence based optimization of weld bead geometry in laser wel...Artificial Intelligence based optimization of weld bead geometry in laser wel...
Artificial Intelligence based optimization of weld bead geometry in laser wel...
 
Bk31212217
Bk31212217Bk31212217
Bk31212217
 
Bull vision VA
Bull vision VABull vision VA
Bull vision VA
 
Seasonal Variational Impact of the Physical Parameters On Mohand Rao River F...
Seasonal Variational Impact of the Physical Parameters On  Mohand Rao River F...Seasonal Variational Impact of the Physical Parameters On  Mohand Rao River F...
Seasonal Variational Impact of the Physical Parameters On Mohand Rao River F...
 
A Survey of User Authentication Schemes for Mobile Device
A Survey of User Authentication Schemes for Mobile DeviceA Survey of User Authentication Schemes for Mobile Device
A Survey of User Authentication Schemes for Mobile Device
 
To make a biogas energy from different sources & creating awareness between h...
To make a biogas energy from different sources & creating awareness between h...To make a biogas energy from different sources & creating awareness between h...
To make a biogas energy from different sources & creating awareness between h...
 
Skyline Query Processing using Filtering in Distributed Environment
Skyline Query Processing using Filtering in Distributed EnvironmentSkyline Query Processing using Filtering in Distributed Environment
Skyline Query Processing using Filtering in Distributed Environment
 
An Enhance PSO Based Approach for Solving Economical Ordered Quantity (EOQ) P...
An Enhance PSO Based Approach for Solving Economical Ordered Quantity (EOQ) P...An Enhance PSO Based Approach for Solving Economical Ordered Quantity (EOQ) P...
An Enhance PSO Based Approach for Solving Economical Ordered Quantity (EOQ) P...
 
The everlasting gospel
The everlasting gospelThe everlasting gospel
The everlasting gospel
 
Seismic Behavior of Two Layers of Drum And Up To the Mouth of the Mouth Dept...
Seismic Behavior of Two Layers of Drum And Up To the Mouth of  the Mouth Dept...Seismic Behavior of Two Layers of Drum And Up To the Mouth of  the Mouth Dept...
Seismic Behavior of Two Layers of Drum And Up To the Mouth of the Mouth Dept...
 
Management operation system techniques (MOST) replaces PERT and CPM in constr...
Management operation system techniques (MOST) replaces PERT and CPM in constr...Management operation system techniques (MOST) replaces PERT and CPM in constr...
Management operation system techniques (MOST) replaces PERT and CPM in constr...
 

Semelhante a Integration of Struts & Spring & Hibernate for Enterprise Applications

Spring tutorials
Spring tutorialsSpring tutorials
Spring tutorialsTIB Academy
 
Getting Started with Spring Framework
Getting Started with Spring FrameworkGetting Started with Spring Framework
Getting Started with Spring FrameworkEdureka!
 
Building Enterprise Application with J2EE
Building Enterprise Application with J2EEBuilding Enterprise Application with J2EE
Building Enterprise Application with J2EECalance
 
IT 8003 Cloud ComputingFor this activi.docx
IT 8003 Cloud ComputingFor this activi.docxIT 8003 Cloud ComputingFor this activi.docx
IT 8003 Cloud ComputingFor this activi.docxvrickens
 
IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...
IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...
IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...IRJET Journal
 
spring framework ppt by Rohit malav
spring framework ppt by Rohit malavspring framework ppt by Rohit malav
spring framework ppt by Rohit malavRohit malav
 
Developing microservices with Java and applying Spring security framework and...
Developing microservices with Java and applying Spring security framework and...Developing microservices with Java and applying Spring security framework and...
Developing microservices with Java and applying Spring security framework and...IRJET Journal
 
Introduction to ejb and struts framework
Introduction to ejb and struts frameworkIntroduction to ejb and struts framework
Introduction to ejb and struts frameworks4al_com
 
Spring Book – Chapter 1 – Introduction
Spring Book – Chapter 1 – IntroductionSpring Book – Chapter 1 – Introduction
Spring Book – Chapter 1 – IntroductionTomcy John
 
IRJET- Training and Placement Database Management System
IRJET- Training and Placement Database Management SystemIRJET- Training and Placement Database Management System
IRJET- Training and Placement Database Management SystemIRJET Journal
 
MVC Architecture: A Detailed Insight to the Modern Web Applications Developme...
MVC Architecture: A Detailed Insight to the Modern Web Applications Developme...MVC Architecture: A Detailed Insight to the Modern Web Applications Developme...
MVC Architecture: A Detailed Insight to the Modern Web Applications Developme...CrimsonpublishersPRSP
 
A report on mvc using the information
A report on mvc using the informationA report on mvc using the information
A report on mvc using the informationToushik Paul
 
Introduction to j2 ee frameworks
Introduction to j2 ee frameworksIntroduction to j2 ee frameworks
Introduction to j2 ee frameworksMukesh Kumar
 
Repository Pattern in MVC3 Application with Entity Framework
Repository Pattern in MVC3 Application with Entity FrameworkRepository Pattern in MVC3 Application with Entity Framework
Repository Pattern in MVC3 Application with Entity FrameworkAkhil Mittal
 
Spring Framework Tutorial | VirtualNuggets
Spring Framework Tutorial | VirtualNuggetsSpring Framework Tutorial | VirtualNuggets
Spring Framework Tutorial | VirtualNuggetsVirtual Nuggets
 
Framework adoption for java enterprise application development
Framework adoption for java enterprise application developmentFramework adoption for java enterprise application development
Framework adoption for java enterprise application developmentClarence Ho
 
Spring Framework
Spring Framework  Spring Framework
Spring Framework tola99
 

Semelhante a Integration of Struts & Spring & Hibernate for Enterprise Applications (20)

Spring tutorials
Spring tutorialsSpring tutorials
Spring tutorials
 
Getting Started with Spring Framework
Getting Started with Spring FrameworkGetting Started with Spring Framework
Getting Started with Spring Framework
 
Building Enterprise Application with J2EE
Building Enterprise Application with J2EEBuilding Enterprise Application with J2EE
Building Enterprise Application with J2EE
 
IT 8003 Cloud ComputingFor this activi.docx
IT 8003 Cloud ComputingFor this activi.docxIT 8003 Cloud ComputingFor this activi.docx
IT 8003 Cloud ComputingFor this activi.docx
 
IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...
IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...
IRJET- A Repository Application Developed using .Net MVC and Angularjs for In...
 
spring framework ppt by Rohit malav
spring framework ppt by Rohit malavspring framework ppt by Rohit malav
spring framework ppt by Rohit malav
 
Developing microservices with Java and applying Spring security framework and...
Developing microservices with Java and applying Spring security framework and...Developing microservices with Java and applying Spring security framework and...
Developing microservices with Java and applying Spring security framework and...
 
Introduction to ejb and struts framework
Introduction to ejb and struts frameworkIntroduction to ejb and struts framework
Introduction to ejb and struts framework
 
MVC
MVCMVC
MVC
 
Struts Ppt 1
Struts Ppt 1Struts Ppt 1
Struts Ppt 1
 
Spring Book – Chapter 1 – Introduction
Spring Book – Chapter 1 – IntroductionSpring Book – Chapter 1 – Introduction
Spring Book – Chapter 1 – Introduction
 
IRJET- Training and Placement Database Management System
IRJET- Training and Placement Database Management SystemIRJET- Training and Placement Database Management System
IRJET- Training and Placement Database Management System
 
Java Spring Framework
Java Spring FrameworkJava Spring Framework
Java Spring Framework
 
MVC Architecture: A Detailed Insight to the Modern Web Applications Developme...
MVC Architecture: A Detailed Insight to the Modern Web Applications Developme...MVC Architecture: A Detailed Insight to the Modern Web Applications Developme...
MVC Architecture: A Detailed Insight to the Modern Web Applications Developme...
 
A report on mvc using the information
A report on mvc using the informationA report on mvc using the information
A report on mvc using the information
 
Introduction to j2 ee frameworks
Introduction to j2 ee frameworksIntroduction to j2 ee frameworks
Introduction to j2 ee frameworks
 
Repository Pattern in MVC3 Application with Entity Framework
Repository Pattern in MVC3 Application with Entity FrameworkRepository Pattern in MVC3 Application with Entity Framework
Repository Pattern in MVC3 Application with Entity Framework
 
Spring Framework Tutorial | VirtualNuggets
Spring Framework Tutorial | VirtualNuggetsSpring Framework Tutorial | VirtualNuggets
Spring Framework Tutorial | VirtualNuggets
 
Framework adoption for java enterprise application development
Framework adoption for java enterprise application developmentFramework adoption for java enterprise application development
Framework adoption for java enterprise application development
 
Spring Framework
Spring Framework  Spring Framework
Spring Framework
 

Mais de IJMER

A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...IJMER
 
Developing Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingDeveloping Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingIJMER
 
Study & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreStudy & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreIJMER
 
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)IJMER
 
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...IJMER
 
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...IJMER
 
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...IJMER
 
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...IJMER
 
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationStatic Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationIJMER
 
High Speed Effortless Bicycle
High Speed Effortless BicycleHigh Speed Effortless Bicycle
High Speed Effortless BicycleIJMER
 
Microcontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemMicrocontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemIJMER
 
On some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesOn some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesIJMER
 
Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...IJMER
 
Natural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningNatural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningIJMER
 
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessEvolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessIJMER
 
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersMaterial Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersIJMER
 
Studies On Energy Conservation And Audit
Studies On Energy Conservation And AuditStudies On Energy Conservation And Audit
Studies On Energy Conservation And AuditIJMER
 
An Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLAn Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLIJMER
 
Discrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyDiscrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyIJMER
 
Application of Parabolic Trough Collectorfor Reduction of Pressure Drop in Oi...
Application of Parabolic Trough Collectorfor Reduction of Pressure Drop in Oi...Application of Parabolic Trough Collectorfor Reduction of Pressure Drop in Oi...
Application of Parabolic Trough Collectorfor Reduction of Pressure Drop in Oi...IJMER
 

Mais de IJMER (20)

A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...
 
Developing Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingDeveloping Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed Delinting
 
Study & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreStudy & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja Fibre
 
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
 
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
 
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
 
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
 
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
 
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationStatic Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
 
High Speed Effortless Bicycle
High Speed Effortless BicycleHigh Speed Effortless Bicycle
High Speed Effortless Bicycle
 
Microcontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemMicrocontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation System
 
On some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesOn some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological Spaces
 
Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...
 
Natural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningNatural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine Learning
 
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessEvolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
 
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersMaterial Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
 
Studies On Energy Conservation And Audit
Studies On Energy Conservation And AuditStudies On Energy Conservation And Audit
Studies On Energy Conservation And Audit
 
An Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLAn Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDL
 
Discrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyDiscrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One Prey
 
Application of Parabolic Trough Collectorfor Reduction of Pressure Drop in Oi...
Application of Parabolic Trough Collectorfor Reduction of Pressure Drop in Oi...Application of Parabolic Trough Collectorfor Reduction of Pressure Drop in Oi...
Application of Parabolic Trough Collectorfor Reduction of Pressure Drop in Oi...
 

Último

S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxSCMS School of Architecture
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"mphochane1998
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdfKamal Acharya
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwaitjaanualu31
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdfKamal Acharya
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptxJIT KUMAR GUPTA
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...drmkjayanthikannan
 
kiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal loadkiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal loadhamedmustafa094
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxSCMS School of Architecture
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayEpec Engineered Technologies
 
Computer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersComputer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersMairaAshraf6
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network DevicesChandrakantDivate1
 

Último (20)

S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
kiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal loadkiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal load
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
Computer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersComputer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to Computers
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 

Integration of Struts & Spring & Hibernate for Enterprise Applications

  • 1. International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 52 | Integration of Struts & Spring & Hibernate for Enterprise Applications Deepak Kasgar1 , Harish Chandra Maurya2 ¹(Department of Computer Science and Engineering,Bhagwant University, India ²(Department of Computer Science and Engineering, Bhagwant University, India I. Introduction Frameworks are abstraction layer on existing technology. If developer’s directly works on technologies of java then project development time and cost will increase time to time.Non Invasive Frameworks does not force a developer to extend this class from a framework specific class or implement a framework specific interface.Spring framework is a complete and a modular framework. It means complete application can be developed using spring framework or some selective operations of the project can be developed using this modular framework.Even though java enterprise is widely used, it has some limitations such as transaction support, security, distributed computing [1],[5].Spring framework has few advantages over other frameworks like: 1) Simplicity using POJO 2) Testability without using 3rd party servers or container 3) Dependency Injection Spring framework has a layered architecture so when an E-commerce application is developed using spring framework it has clear separation of presentation layer, business layer, persistence layer. The layered architecture of spring framework allows users to select about which of its components users can use. II. Related Work 2.1 Architecture of Spring Framework The architecture of spring has seven modules. The modules are as follows [2]:  Core Container  Spring Context  Spring AOP  Spring DAO  Spring ORM  Spring Web  Spring MVC ABSTRACT: The proposal of this paper is to present Spring Framework which is widely used in developing enterprise applications. Considering the current state where applications are developed using the EJB model, Spring Framework assert that ordinary java beans(POJO) can be utilize with minimal modifications. This modular framework can be used to develop the application faster and can reduce complexity. This paper will highlight the design overview of Spring Framework along with its features that have made the framework useful. The integration of multiple frameworks for an E-commerce system has also been addressed in this paper. This paper also proposes structure for a website based on integration of Spring, Hibernate and Struts Framework. Keywords- Spring Framework, IOC, Struts, Hibernate, E-commerce
  • 2. Integration of Struts & Spring & Hibernate for Enterprise Applications | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 53 | Fig 1 Architecture of Spring Framework 2.2Features of spring framework Spring is open source development framework that offers a lot of functions to programmers. A member of EJB team called Rod Thomson, has started company with name Interface21, and started experiment on ordinary java classes (POJO) to provide enterprise services to industry applications. Finally he succeeded in process of creating complex enterprise java application model as Spring Framework. The features of Spring Framework are the Inversion of Control, Aspect oriented programming and Spring MVC. Aspect oriented Programming: This module provides separation of business logic services from the business operation. If services are implemented as part of business method then the following problem will arise [10].  Boiler Plate code of Service  Business class becomes complex.  Managing business service become complex. Example: consideringanexample of Banking System. The various types of services such as Security, login, Transactions, Business operations are common in every transaction.Then the normal system for this would be as follows [6]: Inversion of Control: The central part of Spring Framework is Spring Container. It manages how beans are created configured and managed in a spring container. This module provides the functional/basics part of the spring framework called Dependency Injection. The same system with the help of AOP can be drawn as follows: All the four functionalities are provided to one class named as service [6].
  • 3. Integration of Struts & Spring & Hibernate for Enterprise Applications | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 54 | 2.3 Spring MVC Model The Spring Framework provides its own MVC model. The major components of Spring MVC are as follows [3]: DispatcherServlet- DispatcherServlet uses HandlerMapping and forwards the request to concerned controller. Controller- It handles the request and is created by user. They are objects that can respond to the actions a user takes like form filling or clicking a link. View- It can be imagined as method of presenting the output to the users. ModelAndView- Model means data which is accessible in that view. Model is the data in the form of key/value pair ViewResolver- ViewResolver is a bean which finds an appropriate view for the logical name set for ModelAndView object. HandlerMapping- Whenever DispatcherServlet receives incoming requests it associates the request to individual controllers with the help of this component. The MVC model of Spring Framework can be shown as below [6]: 2.4Spring and xml XML stands for Extensible Markup Language. XML is widely used in frameworks for configuring information. The information can be processed by parsers. Xml files can be modified and the change can be seen throughout the application. Xml files need not to be complied so time needed in deployment to servers can be saved. There are three types of xml files:  web.xml file  applicationContext.xml file  DispatcherServlet.xml file web.xml: Whenever a request is made by a user then web.xml file forwards the request to DispatcherServlet which is being specified in the web.xml file. The web.xml file specifies the xml version number and name of DispatcherServlet [3]. The DispatcherServlet can be configures as shown: <servlet> <servlet-name>dispatcher</servlet-name><servlet-class> org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> The name of servlet is given as “dispatcher” and load-on-startup indicates that it should be the first to execute when called. The type of URLs that can be handled by the DispatcherServlet can be shown using <url-pattern> element. <servlet-mapping> <servlet-name>dispatcher</servlet-name>
  • 4. Integration of Struts & Spring & Hibernate for Enterprise Applications | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 55 | <url-pattern>/send/*</url-pattern> </servlet-mapping> ApplicationContext.xml: ApplicationContext containers can provide multiples functionality like AOP, Messaging, Scheduling, Event Handling, and Internationalization [3]. <bean id="superClass" class="packagename.SuperClass" /> <bean id ="subClass" class=" packagename.SubClass"> </bean> <property name="superClass" ref="superClass"/> </beans> This file loads the bean of SuperClass.java and SubClass.java. DispatcherServlet.xml: When a request is sent from a browser front controller servlet of spring MVC called DispatcherServlet traps the given request. DispatcherServlet takes the help of Handler Mapping class to find a suitable controller for handling the request[3]. <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix"> <value>/WEB-INF/views/</value></property> <property> name="suffix"><value>.jsp</value></property> </bean> <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> <property name="mappings"> <props><prop key ="/*">dispatchController</prop> </props> </property> </bean> <bean id="dispatchController" class=" packagename.DispatchController"></bean> </beans> 2.5 E-Commerce System Using Spring and other frameworks This modular framework can be used with many other frameworks for making of an E-commerce application such as struts and hibernate. Struts framework: This framework divides web system into three layers: Model, View and Controller. Model consists of JavaBeans, EJB; View consists of JSP files; Controller is carried out by Actions [4]. The architecture of struts can be shown as below [2]:
  • 5. Integration of Struts & Spring & Hibernate for Enterprise Applications | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 56 | The structure of Hibernate can be shown as below [2]: Fig 6 Structure of Hibernate Hibernate framework: This framework minimize thecomplications and difficulty of writing the SQL statements. It charts Java classes to database tables efficiently. It is mainly associated with databases [3],[4]. Integration of Struts, Spring and Hibernate Struts, Spring and Hibernate frameworks can be integrated together to develop an E-commerce applications The struts framework with an efficient MVC can help in developing the presentation tier. The Spring framework can take care about business logic. The Hibernate framework can help in persisting dataand retrieving the data to and from database respectively. The architecture based on integration of above frameworks can be shown as below [1]: Fig 7 Architecture based on Spring, Struts and Hibernate. Hibernate
  • 6. Integration of Struts & Spring & Hibernate for Enterprise Applications | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 57 | III. PROPOSED SYSTEM Spring framework which is modular and having a multitier architecture can be used with multiple other frameworks such as Struts, Hibernate. Although spring has its own MVC which can be used in developing the entire application. The proposed system can be considered here with the help of a website such as that of a Shopping Cart where user requests items and buys items. It generally has three layer i.e. presentation layer, business layer and database layer. A. Presentation layer: The Presentation Tier is generally responsible for displaying the output on screen in a look and feel appearance. User Interface is the user sees when they open a web page in the browser. It is what is presented to the user on the client side within their web browser. It is responsible for handling requests and forwarding the response back to client. It provides with the views that can be provided to the users such as Jsp, HTML documents. The presentation layer can be done using either spring MVC or struts. B. Business layer: The business layer is also called as functional Process Logic, Business Rules and all the logic related to functionality can be kept in Business layer. In this layer we can typically define POJO, beans, interfaces, classes, functions, procedures, properties file. The business layer can be handled using spring framework because it has various features such as scheduling, dependency injection, internationalization, distributed transactions. C. Data Access layer: The data access layer or persistence layer can used for connectivity with any database. It can handle several operations called by user including creation of databases. The general architecture for the three tier can be as follows: The proposed architecture for the website consisting of the three layers is as follows:
  • 7. Integration of Struts & Spring & Hibernate for Enterprise Applications | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 58 | The above architecture can be explained as follows in terms of model, view and controller. A) Responsibilities of Model  Reads data sent by a controller.  Apply business logic for the given data.  If required store/read data from database  Returns the result of business operation back to controller. B) Responsibilities of View  Read the data produced by a model.  Apply presentation required for data.  Render the response to browser. C) Responsibilities of Controller  Accept the request send by a client.  Find suitable model for a request.  Calls appropriate model component.  Gets the result from model.  Call suitable view to display the result. Form Field Validation- Struts provide two ways of validations:  Client Side.  Server Side. Now day’s struts framework is used in presentation layer of application but there are many other competitor for it like: Spring Framework which has its own MVC, Stripes, and Wicket. But Struts has its own limitations which can be stated as: 1) Testing is impossible without server. 2) Struts version 1.x supports less number of views as compared to Spring MVC. 3) Documentation is not properly organized so difficulty arises for developers. Benefits of Spring MVC over Struts are as follows- 1) Spring MVC uses interface approach which avoids concrete inheritance between action and form objects. 2) Using Spring IOC testing of objects without server is possible. Although Spring MVC has its own added advantages it also comes with some limitations such- 1) Spring MVC requires extensive XML configuration files which can become tedious. 2) Spring MVC does not support AJAX-Asynchronous JavaScript which is a newer trend in developing web application 3) The Spring framework acts as a good contender for the middle tier because of its Aspect Oriented Programming and Inversion of Control. The main approach of developing application using Spring Framework is as follows: 1) The Spring framework provides its own MVC. Developers sometime feel more comfortable with some other framework such as Struts so spring easily get integrated with such frameworks. 2) The Spring framework has the main functionality as Inversion of Control and Aspect Oriented Programming which can be effectively used to handle the business objects. 3) The Spring framework can also be easily integrated with other ORM tool such as Hibernate, iBATIS. The ORM tool is a tool that performs mapping from Object to relational tables. Hibernate is one such ORM tool. The spring framework follows DAO module which can be helpful to connect any ORM tool. The Hibernate ORM tool can be easily integrated with spring with the help of XML mapping. The spring framework when used with Hibernate for data access and Struts for Web presentation can help in developing web application in an efficient manner. IV. Discussion The spring framework has MVC model. Struts framework which is used for presentation tier also has MVC model. But there are some differences between the two with regards to the MVC model. The differences can be explained as follows[17]: 1) The Spring MVC supports more number of views than that of the struts1.x such as struts1.x only supports JSP and Tiles, but spring MVC supports Velocity, PDF, excel in addition to JSP and Tiles. 2) Spring MVC is well organized as compared to struts. 3) Struts framework has been around for long time, so it is easy for use as compared to spring because documentation of spring has to be read before using it. 4) Spring MVC web tier are easier to test because the testing can be performed without server.
  • 8. Integration of Struts & Spring & Hibernate for Enterprise Applications | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 5 | Iss.4| Apr. 2015 | 59 | 5) With the help of spring MVC all tiers can be used, but struts can only be used for web tier. The above differences between struts web tier and spring MVCare minimal. Making comparison between struts 2.x and spring both of them are very much same with the arrival of changes from struts 1.x to struts 2.x The spring framework has its own JDBC module for data access but it can be compared with Hibernate based on how connection is done between database and application. JDBC vs Hibernate 1) If developer go with JDBC connection he has to write code to map object into relational tables, Hibernate map object into relational tables using the xml files so developers needs to write the code to map java classes to database tables. 2) Scalability of Hibernate is very good for high performance applications as compared to JDBC. V. Architectural Benefits Of Spring There are multiple architectural benefits of spring framework. They can be described as following [3]: 1) Spring Framework can be efficientlyintegrate with other frameworks such as struts, hibernate. 2) Spring provides easy access to database by using hibernate framework and avoiding the handling of error mechanism. 3) Applications developed using spring framework depends on few APIs. 4) Due to its Inversion of Control feature the amount of time needed for testing the code is less. 5) Because Spring is a layered architecture users can select which of its components can be used. 6) The Spring Web MVC framework isflexible,robustand well designed for rapidly developing web applications. 7) Spring Framework can work effectively with J2EE for developing applications in an effective manner. VI. Conclusions Being a modular framework spring is a powerful framework for developing enterprise applications. It can also be easily integrated with hibernate, struts and frameworks for developing complete enterprise applications thereby reducing the coupling and clear separation of layers. Due to its lightweight feature it is easy to use. Web servers such as Tomcat can also be used during integration of spring with other frameworks. Considering the present scenario wherein there is struts2 framework that can be implemented for web tier spring framework can be used effectively for all the three tiers to build an efficient enterprise application. The spring framework can be easily be integrated with any ORM tool such as Hibernate, iBATIS. REFERENCES [1] Chunsheng Zhao, Mai Jiang, Zhiyong He,” The Design of E-Commerce System Architecture Based on Struts2, Spring and Hibernate”, IEEE Transaction Paper Dated 2010. [2] JiyaJiang , Tong Liu , Yu Liu,”The Construction of E-Business Portal Based on Struts, Spring and Hibernate”, IEEE Transaction Paper Dated 2009. [3] Praveen Gupta, Prof. M.C. Govil,” Spring Web MVC Framework for rapid open source J2EE application development: a case study”, International Journal of Engineering Science and Technology, Vol. 2(6), 2010, 1684-1689 [4] Praveen Gupta, Prof. M.C. Govil,” MVC Design Pattern for the multi framework distributed applications using XML, spring and struts framework” , International Journal on Computer Science and Engineering, Vol. 02, No. 04, 2010, 1047- 1051 [5] Rod Johnsonet,” Professional Java Development with the Spring Framework”, Publications John Wiley & Sons 2005 [6] Craig Walls with Ryan Breidenbach, ” Spring in Action” , Publications Manning 2008 [7] Introduction to the Spring framework accessed from: http://www.ibm.com/developerworks/web/library/wa-Spring1/ [8] Model-View-controller Accessed from: http://en.wikipedia.org/wiki/Model-view-controller [9] Hao, Xiafei, Tang, Hongxi. ”Struts+Spring+Hibernate Integrated Framework and its Use in Log Accounting and analyzing System”, International Conference Dated 2010. [10] KeJu, Jiang Bo,” Applying IoC and AOP to the Architecture of Reflective Middleware”, International Conference Dated 2007. [11] “Research of Structure Integration based on Struts and Hibernate”, IEEE Conference 2010. [12] Erxiang Chen Personnel department “Research and Design on Library Management System Based on Struts and Hibernate Framework”, IEEE Conference 2009. [13] Hui Li, Jingjun Zhang, Lei Wang,” The Research and Application of Web-Based System with Aspect-Oriented Features”, IEEE International Conference Dated 2010. [14] DipankarMajumdar, “Migration from Procedural Programming to Aspect Oriented Paradigm”, IEEE International Conference Dated 2009. [15] Hui Li ,GuiJun Xu , Mingji Zhou, Lingling Si, “Aspect-oriented Programming for MVC Framework” , IEEE Paper Dated 2010. [16] Robert J. Walker, Elisa L.A. Baniassad and Gail C. Murphy, “An Initial Assessment of Aspect-oriented Programming”, ACM Paper Dated 2009.