如何从类路径提供 Jacl 包?
我需要将一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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: