如何在 ibatis sqlMap 配置中使用文件资源而不是类路径资源?
我想在许多模块上使用相同的 ibatis sqlMapConfig。
不幸的是,我的 sqlMap 的资源属性中似乎只允许类路径资源:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMapConfig PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">
<sqlMapConfig>
<sqlMap resource="myresource.xml" />
</sqlMapConfig>
这不起作用:
<sqlMap resource="file:/myresource.xml" />
有没有办法避免口是心非(在许多类路径上使用一个 ibatis-config)?
I'd like to use the same ibatis sqlMapConfig on many modules.
Unfortunatly only classpath-resources seems to be allowed in the resource-attribute of my sqlMap:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMapConfig PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">
<sqlMapConfig>
<sqlMap resource="myresource.xml" />
</sqlMapConfig>
This does not work:
<sqlMap resource="file:/myresource.xml" />
Is there any way to avoid duplicity (using one ibatis-config on many classpathes)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
url
属性:Use the
url
attribute :