从 Web 应用程序调用 Java Native Interface
我有一个关于如何开发可以使用 Java 本机接口 (JNI) 调用 C 函数的 Web 应用程序的问题。 我最大的问题是我需要什么包才能让 JNI 工作:部署在 JBoss 7 服务器上的 WAR 包还是 EAR 包?这种情况有什么不同吗?
问候
I have a question about how to develop a web application which can call C functions using Java Native Interface (JNI).
My biggest question is what king of package do I need in order JNI to work: WAR package or EAR package deployed on JBoss 7 server? Is there any difference in this case?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要任何包,但您可能需要很好地理解类加载(尤其是 JBOSS)以及类加载器加载本机库时会发生什么。我建议您从 JBOSS 类加载器文档开始。
You don't need any package, but you will probably need a good understanding of Classloading (particularly with JBOSS) and what happens when Class Loaders load native libraries. I suggest you start with the JBOSS Classloader Documentation.
类加载并不是什么大问题,只需使用 oracle.com 上的 JNI 开发人员指南进行尝试,并且不应该有任何特定于 JBoss 的问题。
Classloading is not that big deal, just try it out using JNI developer guide on oracle.com, and there shouldn't be any specific to JBoss issues.