S2SH开发中,Hibernate查询多次后无响应解决方法

原文地址:https://blog.csdn.net/zhengsaisai/article/details/54408091

在用hibernate4/3的时候,遇到查询操作反复执行,总是在执行多次无响应,必须要重启tomcat才可以。

在网上查询了一下,有说session未正常关闭,有说要clear一下,还有说pojo类中的属性名和数据库表的列名不一致,各种说法都有


我也一一试过,然而并没有什么用------------------------------------


然后    。。。。。。。。。。。。。。


然后就在CSDN的篇帖子中看到有人回复说是spring的dataSource的配置问题,我的dataSource的class如下(在spring的配置文件:applicationContext.xml中):


[html]  view plain  copy
  1. class="org.apache.commons.dbcp.BasicDataSource" >  

按照帖子中的方法把以上改为了:

[html]  view plain  copy
  1. class="org.springframework.jdbc.datasource.DriverManagerDataSource">   


也就是修改了class 。。。


经过测试问题果然解决了。。

但是  
上网大概查了一下,发现此种配置spring的DataSource方式有一个弊端,就是此种配置未使用连接池,这样就给服务器和数据库造成了很大压力,故现在很少在项目中使用了。

具体可以参考:http://blog.csdn.net/yemou_blog/article/details/50292231


后同事上网查询之后进行了修改,依然使用原来的dataSource配置方式,但是进行了修改,如下:


[html]  view plain  copy
  1. class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">  

在后面增加了
[html]  view plain  copy
  1. destroy-method="close"  

还增加了   


[html]  view plain  copy
  1. <!--hibernate4必须配置为开启事务 否则 getCurrentSession()获取不到-->   
  2.     <bean id="txManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">  
  3.         <property name="sessionFactory" ref="sessionFactory"></property>    
  4.    </bean>  
  5.       
  6.     <tx:advice id="txAdvice" transaction-manager="txManager">  
  7.         <tx:attributes>  
  8.             <tx:method name="*" propagation="REQUIRED" />  
  9.            <!--  <tx:method name="*" read-only="true"/> -->  
  10.         </tx:attributes>  
  11.     </tx:advice>  
  12.       
  13.     <aop:config proxy-target-class="true">  
  14.         <!-- <aop:advisor advice-ref="txAdvice" pointcut="execution(* dao.*.*(..))"/> -->  
  15.         <aop:pointcut expression="execution(* com.howin.dao.impl.*.*(..))" id="pointcut"/>  
  16.         <aop:advisor advice-ref="txAdvice" pointcut-ref="pointcut"/>  
  17.     </aop:config>  

注意此处用了hibernate5 所以必须要导入hibernate5的jar包。

--------------------------------------------------------------------

附上全部的applicationContext.xml文件内容:


[html]  view plain  copy
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans  
  3.     xmlns="http://www.springframework.org/schema/beans"  
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  5.     xmlns:p="http://www.springframework.org/schema/p"  
  6.     xmlns:context="http://www.springframework.org/schema/context"  
  7.     xmlns:aop="http://www.springframework.org/schema/aop"  
  8.      xmlns:tx="http://www.springframework.org/schema/tx"  
  9.      xmlns:jpa="http://www.springframework.org/schema/data/jpa"  
  10.      xmlns:cache="http://www.springframework.org/schema/cache"  
  11.      xsi:schemaLocation="http://www.springframework.org/schema/beans  
  12.      http://www.springframework.org/schema/beans/spring-beans-4.1.xsd  
  13.     http://www.springframework.org/schema/context  
  14.     http://www.springframework.org/schema/context/spring-context-4.1.xsd  
  15.     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd  
  16.     http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa.xsd  
  17.     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd  
  18.     http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd">  
  19.       
  20.     <!-- Spring注解方式注入 -->  
  21.     <context:annotation-config/>  
  22.     <!-- 使用annotation 自动注册bean,并保证@Required,@Autowired的属性被注入   
  23.     <context:component-scan base-package="com.howin"></context:component-scan>  -->  
  24.     <!-- 数据库配置 --><!--org.apache.commons.dbcp.BasicDataSource  -->  
  25.     <!--<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> -->  
  26.     <bean id="dataSource"  
  27.         class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">  
  28.         <property name="driverClassName"  
  29.             value="com.mysql.jdbc.Driver">  
  30.         </property>  
  31.         <property name="url"  
  32.             value="jdbc:mysql://***.***.*.***:3306/***">  
  33.         </property>  
  34.         <property name="username" value="***"></property>  
  35.         <property name="password" value="***"></property>  
  36.     </bean>  
  37.     <bean id="sessionFactory"  
  38.         class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">  
  39.         <property name="dataSource">  
  40.             <ref bean="dataSource" />  
  41.         </property>  
  42.         <property name="hibernateProperties">  
  43.             <props>  
  44.                 <prop key="hibernate.dialect">  
  45.                     org.hibernate.dialect.MySQLDialect  
  46.                 </prop>  
  47.                 <prop key="hibernate.show_sql">true</prop>  
  48.                 <prop key="hibernate.format_sql">true</prop>  
  49.                 <prop key="hibernate.use_sql_comments">true</prop>  
  50.                 <!--   
  51.                 <prop key="hibernate.current_session_context_class">thread</prop>  
  52.                   
  53.                 <prop key="hibernate.cache.use_second_level_cache">true</prop>   
  54.                 <prop key="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</prop> -->  
  55.             </props>  
  56.               
  57.         </property>  
  58.         <property name="mappingResources">  
  59.             <list>  
  60.                 <value>com/howin/pojo/Admin.hbm.xml</value>  
  61.             </list>  
  62.         </property></bean>  
  63.           
  64.         <!--hibernate4必须配置为开启事务 否则 getCurrentSession()获取不到-->   
  65.      <bean id="txManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">  
  66.          <property name="sessionFactory" ref="sessionFactory"></property>    
  67.     </bean>  
  68.        
  69.      <tx:advice id="txAdvice" transaction-manager="txManager">  
  70.          <tx:attributes>  
  71.              <tx:method name="*" propagation="REQUIRED" />  
  72.             <!--  <tx:method name="*" read-only="true"/> -->  
  73.          </tx:attributes>  
  74.      </tx:advice>  
  75.        
  76.      <aop:config proxy-target-class="true">  
  77.          <!-- <aop:advisor advice-ref="txAdvice" pointcut="execution(* dao.*.*(..))"/> -->  
  78.          <aop:pointcut expression="execution(* com.howin.dao.impl.*.*(..))" id="pointcut"/>  
  79.          <aop:advisor advice-ref="txAdvice" pointcut-ref="pointcut"/>  
  80.      </aop:config>  
  81.   
  82.           
  83.         <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>  
  84.           
  85.           
  86.     <bean id="chatDao" class="com.howin.dao.impl.ChatDaoImpl">  
  87.         <property name="sessionFactory" ref="sessionFactory" />  
  88.     </bean>     
  89.     <bean id="chatBiz" class="com.howin.biz.impl.ChatBizImpl">  
  90.         <property name="chatDao" ref="chatDao"/>  
  91.     </bean>  
  92.     <bean id="callCenterPool" class="com.howin.util.CallCenterPool">  
  93.         <property name="chatBiz" ref="chatBiz"/>  
  94.     </bean>  
  95. </beans>  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值