美文网首页
mybatis-bug:Exception in thread

mybatis-bug:Exception in thread

作者: 09c72470861c | 来源:发表于2018-07-23 11:36 被阅读0次
Exception in thread "main" java.io.IOException: Could not find resource demo.cyj.config.mybatis_config.xml
    at org.apache.ibatis.io.Resources.getResourceAsStream(Resources.java:114)
    at org.apache.ibatis.io.Resources.getResourceAsStream(Resources.java:100)
    at demo.cyj.MybatisTest.main(MybatisTest.java:20)
异常

原因:String resource = "demo.cyj.config.mybatis_config.xml";
解决:路径配置使用 / ,而不是 . ,正确写法如下:
String resource = "demo/cyj/config/mybatis_config.xml";

相关文章

网友评论

      本文标题:mybatis-bug:Exception in thread

      本文链接:https://www.haomeiwen.com/subject/onwdmftx.html