Struts2,hibernate,spring Integrated notes (1)
Struts2,hibernate,spring Integrated Notes (2)
Well, struts and hibernate are going to start with spring.
The usual, or import the jar package first
Spring.jar
Aspectjrt.jar
Aspectjwerver.jar
Cglib-nodep-2.1_3.jar
Common-logging.jar
C3p0-0.9.1.jar
After adding the configuration file src directory under Applicationcontext.xml
<?XML version= "1.0" encoding= "UTF-8"?><Beansxmlns= "Http://www.springframework.org/schema/beans"Xmlns:xsi= "Http://www.w3.org/2001/XMLSchema-instance"Xmlns:context= "Http://www.springframework.org/schema/context"Xmlns:tx= "Http://www.springframework.org/schema/tx"xsi:schemalocation= "Http://www.springframework.org/schema/beans http://www.springframework.org/schema/b Eans/spring-beans-2.5.xsd Http://www.springframework.org/schema/context Http://www.springframework.org/schema/context/spring-context-2.5.xsd Http://www.springframework.org/schema/tx HTTP://WWW.SPRINGFRAMEWORK.ORG/SCHEMA/TX /spring-tx-2.5.xsd "> <Context:component-scanBase-package= "Com.spring"></Context:component-scan></Beans>
The way spring uses annotations, set the package on the line.
At this point, the three frameworks have been imported successfully, the next class is to integrate the
Struts2,hibernate,spring Integrated Notes (3)