Mybatis中String resource = "mybatis-config.xml";reader = Resources.getResourceAsReader(resource);resource是xml文件名还是路径名
时间: 2024-06-09 17:11:47 浏览: 53
在MyBatis中,`resource`是一个类路径下的文件名,它不是一个文件系统路径。这个文件名可以包含文件夹路径,但是它们应该是相对于类路径的。例如,如果`mybatis-config.xml`文件在类路径的根目录下,则可以使用`mybatis-config.xml`作为`resource`参数。如果`mybatis-config.xml`文件在类路径的子目录`conf`下,则可以使用`conf/mybatis-config.xml`作为`resource`参数。
阅读全文