mybatis-bug:Exception in thread "main" java.io.IOException: Could not find resource demo.cyj.conf...

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 "main" java.io.IOException: Could not find resource demo.cyj.conf...)