标签:ons pass pack coding 标识 mic str 数据库连接 tran
Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
原因:jdbc.properties 文件
url=jdbc:mysql://localhost:3306/testmybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8
解决:将useSSL=true 改为 useSSL=false
useSSL=true 作用:使用JDBC跟你的数据库连接的时候,你的JDBC版本与MySQL版本不兼容,MySQL的版本更高一些,在连接语句后加上“useSSL=‘true’” ,就可以连接到数据库了
Error building SqlSession
原因:UserMapper.xml文件
<select id="getUserList" resultType="User">
select * from testmybatis.user
</select>
方法1:将resultType="User" 改为 resultType="com.zy.pojo.User"
方法2:在mybatis配置文件(我的是mybatis-config.xml)中添加类别名
<typeAliases>
<package name="com.zy.pojo"/>
</typeAliases>
注意写在 <properties>、<settings> 的标签下面,<environments> 标签上面
这里推荐方法2,修改一次就不用再一个一个的写 包路径+实体类 了
原因:因为maven约定大于配置,所以配置文件存在没有被导出或者生效
解决:在pom.xml中添加
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
</build>
properties 属性
settings 设置
typeAliases 类型命名
typeHandlers 类型处理器
objectFactory 对象工厂
plugins 插件
environments 环境
environment 环境变量
transactionManager 事务管理器
dataSource 数据源
databaseIdProvider 数据库厂商标识
mappers 映射器
(必须严格按照这个结构写,不然无法通过)
在 mybatis-config.xml 配置文件中,引入外部配置文件 jdbc.properties 配置环境,方便修改
jdbc.properties:
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/testmybatis?useSSL=false&useUnicode=true&characterEncoding=UTF-8
username=root
password=123456
mybatis-config.xml:
<properties resource="jdbc.properties"></properties>
<typeAliases>
<!--<package name="com.zy.pojo"/>-->
</typeAliases>
<!--配置环境-->
<environments default="mysql">
<!--有多个环境时,通过修改default="id"来实现选择-->
<environment id="mysql">
<!--JDBC事务管理-->
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="${driver}"/>
<property name="url" value="${url}"/>
<property name="username" value="{username}"/>
<property name="password" value="{password}"/>
</dataSource>
</environment>
</environments>
标签:ons pass pack coding 标识 mic str 数据库连接 tran
原文地址:https://www.cnblogs.com/kzyuan/p/12589437.html