日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

ssm 使用中的一些问题

發布時間:2025/6/15 编程问答 21 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ssm 使用中的一些问题 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1.問題:[org.mybatis.spring.SqlSessionUtils] - Creating a new SqlSession?
[org.mybatis.spring.SqlSessionUtils] -?SqlSession[org.apache.ibatis.session.defaults.DefaultSqlSession@1a714e6e]?was not registered for synchronization because synchronization is not active?
[org.springframework.jdbc.datasource.DataSourceUtils] - Fetching JDBC Connection from DataSource?
[org.mybatis.spring.transaction.SpringManagedTransaction] -?JDBC Connection?[jdbc: mysql://localhost:3306/iot, UserName=root@localhost, MySQL Connector Java]* will not be managed by Spring*
[com.haoyifen.mySSMTemplate.dao.UserMapper.selectByPrimaryKey] - ==> Preparing: select ID, USER_ID, USER_NAME, SEX, ADDRESS, PHONE_NUMBER, MAIL_BOX from user where ID = ??
[com.haoyifen.mySSMTemplate.dao.UserMapper.selectByPrimaryKey] - ==> Parameters: 1(Integer)?
[com.haoyifen.mySSMTemplate.dao.UserMapper.selectByPrimaryKey] - <== Total: 1?
[org.mybatis.spring.SqlSessionUtils] -?Closing non transactional SqlSession[org.apache.ibatis.session.defaults.DefaultSqlSession@1a714e6e]

?

原因:重復掃描事務配置所致,spring-mybatis中掃描了一遍service

<context:component-scan base-package="cn.yzh" >

  <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />

</context:component-scan>

spring-mvc中又掃描了一遍

<context:component-scan base-package="cn.yzh"?>

spring如果要使事務生效,就需要cglib為userService生成代理子類,在spring.xml中已經生成了代理類,而在spring-mvc.xml中,又重新掃描了一遍,使得原先cglib生成的代理子類失效,從而事務攔截也失效。

解決:

于是在spring-mvc中改成<context:component-scan base-package="cn.yzh.controller"?> 只讓它掃描controller,而spring-mybatis不掃描controller就好了

參考:https://blog.csdn.net/haoyifen/article/details/51172647

?

2.報錯:

java.lang.AbstractMethodError: Method com/mchange/v2/c3p0/impl/NewProxyPreparedStatement.isClosed()
解決:在pom中更新c3p0 jar包版本

?

3.

java.sql.SQLException: The server time zone value '???ú±ê×??±??' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.

解決:jdbc中加上&serverTimezone=UTC,以此來解決亂碼問題

?

轉載于:https://www.cnblogs.com/maidouerer/p/8919001.html

總結

以上是生活随笔為你收集整理的ssm 使用中的一些问题的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。