如何使用 informix.jvp.dbapplet.impl.JVPClassLoader 从类路径加载资源?
Posted
技术标签:
【中文标题】如何使用 informix.jvp.dbapplet.impl.JVPClassLoader 从类路径加载资源?【英文标题】:How to load resource from classpath with informix.jvp.dbapplet.impl.JVPClassLoader? 【发布时间】:2015-11-04 12:47:51 【问题描述】:我想解决在用 Java 编写的 Informix 存储过程中加载资源的非常具体的问题。我有 IFX v12 和 IBM Java 1.7,当我想从类路径(即某些属性文件)加载任何资源时,我得到 IOException 并显示消息“找不到资源”。
起初我以为 Java 策略会出现问题,但当我允许所有权限时,什么都没有改变。
接下来,当我能够远程调试存储过程时,我观察到,该存储过程使用了 informix 特定的类加载器 informix.jvp.dbapplet.impl.JVPClassLoader。在调试中我发现,这个类加载器没有在其类路径上的数据库中加载 JAR,因此来自这个 JAR 的资源不可用。我无法很好地调试它,因为我没有这个类加载器的可用源代码。
我有两个解决方案,但都很难看。我可以将 JAR 放在为 Informix 启动的 Java 进程的类路径中,但每次我想对 JAR 进行任何更改时,我都必须重新启动这个进程。第二种解决方案是从文件系统加载此资源,但这会使部署过程复杂化,并且使其无法抗故障(当然还有特定于环境的)。
感谢任何建议,如何让我的 JAR 资源在类路径上可用!
【问题讨论】:
不知道是不是你要找的,试试this 我正在使用这些过程来管理我在 Informix 数据库中的 JARS,但问题是,当我想使用这个 JAR 中的一些资源时,我遇到了上面写的异常。当我尝试调试它时,我发现 Informix 属性类加载器无法在其类路径(甚至是任何父类加载器)上的 JAR 中找到属性文件。我尝试调用 getResource(...) 或 getResourceAsStream(...) 等方法的任何测试都因 IOException 而失败。 【参考方案1】:好的,我们终于找到了从加载到 Informix 数据库中的 JAR 读取属性文件的解决方案。无法通过 JVPClassLoader 访问 JAR 中的属性文件(并且使用系统类加载器不够灵活,请参阅上面帖子中的解决方法)。唯一的方法是从Informix 系统表retained_jars 中读取JAR 文件,然后直接从JAR 文件中读取属性文件。让我们看一下这段Java代码:
public Properties loadPropertiesFromInformixRetainedJarsTable(final String propertyFileName)
final Connection conn = ...;
final Statement stmt = conn.createStatement();
final ResultSet rs = stmt.executeQuery("SELECT jarname, jardata FROM retained_jars");
if (rs.next())
final JarInputStream jar = new JarInputStream(rs.getBinaryStream("jardata"));
JarEntry jarEntry;
while ((jarEntry = jar.getNextJarEntry()) != null)
if (jarEntry.getName().equals(propertyFileName))
// read JAR entry content
final ByteArrayOutputStream baos = new ByteArrayOutputStream();
final byte[] buf = new byte[2048];
int readCnt;
// reading from JarInputStream reads from current JarEntry
while ((readCnt = jar.read(buf, 0, 2048)) != -1)
baos.write(buf, 0, readCnt);
final Properties properties = new Properties();
// load properties from byte array through StringReader
properties.load(new StringReader(new String(baos.toByteArray())));
return properties;
// here should be of course some usual cleaning of resources (like connection, input stream ...)
希望这对其他人有帮助!
【讨论】:
以上是关于如何使用 informix.jvp.dbapplet.impl.JVPClassLoader 从类路径加载资源?的主要内容,如果未能解决你的问题,请参考以下文章
如何在自动布局中使用约束标识符以及如何使用标识符更改约束? [迅速]
如何使用 AngularJS 的 ng-model 创建一个数组以及如何使用 jquery 提交?