如何在 ibatis sqlMap 配置中使用文件资源而不是类路径资源?

发布于 2024-09-27 00:07:22 字数 525 浏览 2 评论 0原文

我想在许多模块上使用相同的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陪你到最终 2024-10-04 00:07:22

使用 url 属性:

<sqlMap url="file:///myresource.xml" />

Use the url attribute :

<sqlMap url="file:///myresource.xml" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文