读取MyBatis-config.xml的路径
时间: 2024-05-28 15:09:13 浏览: 95
mybatis-3-config.dtd mybatis-3-mapper.dtd
MyBatis-config.xml的路径可以在Java代码中通过如下语句获取:
String resource = "MyBatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
其中,MyBatis-config.xml应该位于类路径(classpath)下。如果你是使用MyBatis框架进行Java开发的话,就不需要自己手动读取配置文件路径,框架会自动搜索classpath下的配置文件并加载。
阅读全文