ssh整合(xml配置)

jar包

struts2

在这里插入图片描述

hibernate

spring

在这里插入图片描述
基本的包都导完了,还差一个最重要的包,就是struts2和spring的整合包struts2-spring-plugin-2.3.24.1.jar这个包,还有一些spring里面的插件包,支持aop
在这里插入图片描述
基本的包都导完了,然后就是配置web.xml

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>vote</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <!-- Spring开启Hibernate的OpenSessionView模式 -->
  <filter>
	    <filter-name>OpenSessionInViewFilter</filter-name>
	    <filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
	</filter>
	<filter-mapping>
	    <filter-name>OpenSessionInViewFilter</filter-name>
	    <url-pattern>*</url-pattern>
	</filter-mapping>
  <!-- 过滤器 -->
  <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>*.action</url-pattern>
  </filter-mapping>
  <!-- 指定配置文件位置 -->
  <context-param>
	 <param-name>contextConfigLocation</param-name>
	 <param-value>classpath:spring.xml,classpath:springDao.xml</param-value>
  </context-param>
  <!-- 监听器 -->  
  <listener>
	  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <!-- 防止spring内存溢出监听器 -->
  <listener>
	<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
  </listener>
</web-app>

然后将struts2配置,可以根据自己的需求配置。

 <!DOCTYPE struts PUBLIC
	"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
	"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
   <package name="default" extends="struts-default">
      <action name="*">
          <result name="success">WEB-INF\view\{1}.jsp</result>
      </action>
   </package>
</struts>

配置hibernate的参数可以配置到spring里面,可以根据个人习惯。

<!DOCTYPE hibernate-configuration PUBLIC
	"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
	"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
   <session-factory>
     <!-- 配置数据库连接信息 -->
	<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
	<property name="connection.url">jdbc:mysql://localhost:3306/vote</property>
	<property name="connection.username">root</property>
	<property name="connection.password">100</property>
	
	<!-- c3p0连接池配置 -->
	<!-- 最大连接数 -->
	<property name="hibernate.c3p0.max_size">20</property>
	<!-- 最小连接数 -->
	<property name="hibernate.c3p0.min_size">5</property>
	<!-- 获得连接的超时时间,如果超过这个时间,会抛出异常,单位毫秒 -->
	<property name="hibernate.c3p0.timeout">120</property>
	<!-- 最大的PreparedStatement的数量 -->
	<property name="hibernate.c3p0.max_statements">100</property>
	<!-- 每隔120秒检查连接池里的空闲连接 ,单位是秒-->
	<property name="hibernate.c3p0.idle_test_period">120</property>
	<!-- 当连接池里面的连接用完的时候,C3P0一下获取的新的连接数 -->
	<property name="hibernate.c3p0.acquire_increment">2</property>
	<!-- 每次都验证连接是否可用 -->
	<property name="hibernate.c3p0.validate">true</property>
	
	<!-- 数据库方言 -->
	<property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
	<!-- 在控制台输出sql语句 -->
	<property name="show_sql">true</property>
	<!-- 格式化sql语句 -->
	<property name="format_sql">true</property>
	<!-- 数据库生成策略 -->
	<property name="hibernate.hbm2ddl.auto">update</property>
   </session-factory>
</hibernate-configuration>

spring的配置我分成了二个xml文件来写了,写了springDao.xml,写了一个spring.xml也可以写一个里面。

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	default-autowire="byType"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd">
<!-- action -->
<bean id="LoginAction" class="com.znsd.ssh.ation.LoginAction"></bean>
<!-- dao -->
<bean id="dao" class="com.znsd.ssh.dao.imp.VoteDaoimp"></bean>
<!-- service -->
<bean id="service" class="com.znsd.ssh.Service.imp.VoteServiceimp"></bean>
</beans>
<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-4.2.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">
   <!-- session工厂由spring来管理 -->
	<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean" >
		<!-- 加载数据源对象,spring的配置方式  -->
		<!-- <property name="dataSource"  ref="dataSource"/> -->
		<!-- 读取hibernate配置信息,hibernate配置方式 -->
		<property name="configLocation" value="classpath:hibernate.cfg.xml" />
		<!-- 自动加载映射文件 *表示匹配该文件下的所有映射文件 -->
		<property name="mappingLocations" value="classpath:com/znsd/ssh/vo/*.hbm.xml"></property>
	</bean>
	<!-- 配置事务 -->
	<bean id="txManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
	    <property name="sessionFactory" ref="sessionFactory" />
	</bean>
	<!-- 事务的通知方式 -->
	<tx:advice id="txAdvice" transaction-manager="txManager">
		<tx:attributes>
			<tx:method name="find*" propagation="REQUIRED" read-only="true" />
			<tx:method name="search*" propagation="REQUIRED" read-only="true" />
			<tx:method name="query*" propagation="REQUIRED" read-only="true" />
			
			<tx:method name="add*" propagation="REQUIRED" />
			<tx:method name="submit*" propagation="REQUIRED" />
			<tx:method name="save*" propagation="REQUIRED" />
			<tx:method name="insert*" propagation="REQUIRED" />
			
			<tx:method name="del*" propagation="REQUIRED" />
			<tx:method name="remove*" propagation="REQUIRED" />
			
			<tx:method name="update*" propagation="REQUIRED" />
			<tx:method name="modify*" propagation="REQUIRED" />
			
			<tx:method name="*" propagation="REQUIRED" read-only="false" />
		</tx:attributes>
	</tx:advice>
	<!-- AOP切面拦截事务 -->
	<aop:config>
	    <aop:pointcut id="serviceMethod" expression="execution(* com.znsd.ssh.Service.*.*.*(..))"/>
	    <aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethod" />
	</aop:config>
</beans>

配置基本完成,根据自己的需求写相关的需求即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值