SSH框架搭建笔记

时间:2021-07-10 07:30:05
1、建立一个web项目,设置编码格式,建立src下的包,建立资源文件夹
2、加入Spring运行必须的jar包(5个jar包)
spring-beans-4.1.4.RELEASE.jar
spring-context-4.1.4.RELEASE.jar
spring-core-4.1.4.RELEASE.jar
spring-expression-4.1.4.RELEASE.jar
commons-logging-1.2.jar
3、建立Spring的配置文件
3.1 applicationContext.xml
3.2 在spring参考文档中找到3.1中需要的配置头信息 4、加入hibernate需要的必须包(required 10个)+jdbc的jar包
4.1 在spring参考文档中的15.3.1(搜Hibernate)查找配置
4.1.1 使用的是dbcp连接池配置 导入dbcp需要的2个jar包:①commons-dbcp.jar ②commons-pool.jar
4.1.2 如果使用c3p0连接池,需要导入3个jar包:①c3p0-0.9.5.jar ②c3p0-oracle-thin-extras-0.9.5.jar ③mchange-commons-java-0.2.9.jar
4.2 修改连接池的配置信息(driver,url,username,password)
4.3 书写javabean的orm映射文件(xxx.hbm.xml) 在hibernate官方文档中查找1.1.3 中的xml配置
4.4 配置hibernate中的sessionfactory
4.4.1 将orm的映射文件写入Spring配置文件中的集合注入中
4.4.2 配置hibernate中的property属性 hibernateProperties
需要加入的jar包:①spring-orm-4.1.4.RELEASE.jar ②spring-tx-4.1.4.RELEASE.jar
对上面的配置进行测试,查看是否配置正确 5、导入struts2需要的jar包(12个) 其中有一个jar是重复的(javassist-3.11.0.GA.jar),不要
5.1导入jar包:①struts2-spring-plugin-2.3.20.jar ②spring-web-4.1.4.RELEASE.jar
5.2 建立struts.xml配置文件 拷贝案例中的struts.xml配置文件中的内容 将工厂交给spring进行管理
5.3修改web.xml文件,添加struts2需要的过滤器 添加监听 上下文参数设置
6、配置事务 需要导入的jar包(4个)
  aopalliance.jar
  aspectjweaver.jar
  spring-aop-4.1.4.RELEASE.jar
  spring-jdbc-4.1.4.RELEASE.jar
5(spring basic)+10(hibernate required)+1(jdbc)+2(dbcp)+2(orm与tx)+11(struts2)+2(web,struts-spring-plugin)+4(事务)=37个jar包

需要的jar包(含有json):

SSH框架搭建笔记

web.xml中的配置:

 <!-- struts2需要的过滤器 -->
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping> <!-- 上下文参数配置 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param> <!-- 设置spring监听器 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

applicationContext.xml配置文件内容:

 <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
<!-- 包含其他的配置文件 -->
<!-- <import resource="inventory.xml"/> --> <!-- 事务管理 -->
<bean id="myTxManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="mySessionFactory"/>
</bean>
<!-- 设置切入点,以及要使用的事务管理实例 -->
<aop:config>
<aop:pointcut id="productServiceMethods" expression="execution(* com.ssh.service..*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="productServiceMethods"/>
</aop:config>
<tx:advice id="txAdvice" transaction-manager="myTxManager">
<tx:attributes>
<tx:method name="add*" propagation="REQUIRED"/>
<tx:method name="del*" propagation="REQUIRED"/>
<tx:method name="upd*" propagation="REQUIRED"/>
<tx:method name="get*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
<!-- dbcp连接池配置 -->
<bean id="myDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"/>
<property name="url" value="jdbc:sqlserver://localhost:1433;databaseName=inventory1"/>
<property name="username" value="sa"/>
<property name="password" value="123456"/>
</bean>
<!-- hibernate相关参数配置:session工厂,映射文件等 -->
<bean id="mySessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="myDataSource"/>
<!-- 采用通配的方式配置实体类的hbm文件位置 -->
<property name="mappingLocations" value="classpath:com/ssh/entity/*.hbm.xml" />
<!--
<property name="mappingLocations">
<list>
<value>classpath:com/ssh/entity1/*.hbm.xml</value>
<value>classpath:com/ssh/entity2/*.hbm.xml</value>
<value>classpath:com/dssh/entity3/*.hbm.xml</value>
</list>
</property>
-->
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.SQLServer2005Dialect</prop>
<prop key="hibernate.show_sql">false</prop>
<prop key="hibernate.format_sql">true</prop>
</props>
</property>
</bean>
</beans>

struts.xml文件配置:

 <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd"> <struts>
<!-- 开启DMI动态调用 -->
<constant name="struts.enable.DynamicMethodInvocation" value="true" />
<constant name="struts.devMode" value="true" /> <!-- 将工厂交给spring进行管理 -->
<constant name="struts.objectFactory" value="spring"/> <package name="default" namespace="/" extends="struts-default"> </package>
</struts>