Mybatis错误引起的程序启动卡死
mybatis xml 错误引起的程序启动卡死(没有任何报错信息,控制台卡死)排除方法
解决办法
把日志级别提高到debug,查看日志是否有异常信息
新建一个类,继承 org.mybatis.spring.SqlSessionFactoryBean 类,重载 buildSqlSessionFactory 方法,捕获 NestedIOException 异常,并打印异常,如下:
public class MySqlSessionFactoryBean extends SqlSessionFactoryBean {
protected SqlSessionFactory buildSqlSessionFactory() throws IOException {
try {
return super.buildSqlSessionFactory();
} catch (NestedIOException e) {
//- XML有错误时打印异常
e.printStackTrace();
throw new NestedIOException("Failed to parse mapping resource: " + e);
}
}
}
修改 mybatis 配置文件 把org.mybatis.spring.SqlSessionFactoryBean 替换为新建的类,再次启动可以在控制台输出mybatis异常信息。
原因分析
Spring解析mapper.xml文件时,执行SqlSessionFactoryBean.buildSqlSessionFactory()到断点时,抛出的异常被spring处理,但是没有输出日志信息,
Mybatis启动错误
今天在复习mybatis的基础的时候出现了错误信息,
具体报错如下
Exception in thread "main" org.apache.ibatis.binding.BindingException: Type interface com.hxb.mapper.AccountMapper is not known to the MapperRegistry.
at org.apache.ibatis.binding.MapperRegistry.getMapper(MapperRegistry.java:47)
at org.apache.ibatis.session.Configuration.getMapper(Configuration.java:745)
at org.apache.ibatis.session.defaults.DefaultSqlSession.getMapper(DefaultSqlSession.java:292)
at com.hxb.test.test1.main(test1.java:22)
主要内容是说找不到接口,问题可能有两个
1、没有将mapper文件注册到resource文件中。
<mappers>
<mapper resource="com/hxb/mapper/AccountMapper.xml"/>
</mappers>
2、还有一种错误是mapper.xml文件中的namespace文件写错。
<mapper namespace="com/hxb/mapper/AccountMapper"> // 错误写法
<mapper namespace="com.hxb.mapper.AccountMapper"> // 正确写法
总结,不用写后缀的情况下用".",需要后缀的时候用/
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。