如何从类路径提供 Jacl 包?

发布于 2024-07-16 04:11:55 字数 178 浏览 3 评论 0原文

我需要将一些 TCL 代码作为企业应用程序的一部分进行分发,并且该代码必须可供集群中的所有节点使用。 由于安全策略,Tcl 解释器无法从文件系统访问 TCL 代码,因此我必须将其放在 EAR 本身的 jar 中。

我怎样才能说服 Jacl(1.4.1,如果重要的话)在类路径上找到一个包的 pkgIndex.tcl ?

I need to distribute some TCL code as part of an enterprise application, and this code must be available to all nodes in the cluster. Due to security policy, the Tcl interpreter cannot access the TCL code from the filesystem, so I must make it available in a jar in the EAR itself.

How can I convince Jacl (1.4.1, if it matters) to find a pkgIndex.tcl for a package on the classpath?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

番薯 2024-07-23 04:11:55

Jacl 正在变量 auto_path 中查找 pkgIndex

如果您执行命令 put $auto_path 您会看到完整的内容,例如:

resource:/tcl/lang/library

添加您的路径:lappend auto_path resource:

Jacl is looking for pkgIndex in the variable auto_path

if you execute the command puts $auto_path you see the entires for example:

resource:/tcl/lang/library

add your path with : lappend auto_path resource:

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