如何将 Caucho Resin 的 Java 类路径配置到系统的库目录
我有一个文件夹“/var/unity/conf”,其中包含一些属性文件,我希望 Caucho 的 Resin JVM 在类路径中包含该目录。
修改resin.conf以便Resin知道将此目录添加到类路径的最佳方法是什么?
I have a folder, '/var/unity/conf' with some properties files in it, and I'd like the Caucho's Resin JVM to have that directory on the classpath.
What is the best way to modifiy resin.conf so that Resin knows to add this directory to the classpath?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
cd %RESIN_HOME%/lib | 目录
ln -s /var/unity/conf/....
cd %RESIN_HOME%/lib |
ln -s /var/unity/conf/....
对于 Resin 3.1.6 及更高版本,使用
(我知道,游戏已经很晚了,我自己正在寻找这个问题的答案,并在这里找到了这篇文章以及解决方案,所以我想我会添加回集体)。
With Resin 3.1.6 and above, use
(I know, very late to the game, I was searching for the answer to this myself and found this post here, as well as the solution, so thought I'd add back to the collective).