面对wsadmin 脚本客户端的编程,我看到您可以同时使用jacl和jython。
我对两种语言都有同样的信心。
我想知道,在特定的 wsadmin 编程中,使用一种语言是否比另一种语言有优势;例如鲁棒性、Websphere 管理的示例或库的可用性,或者您在使用和构建此类脚本的经验中产生的类似内容。
Jython 是首选语言:
在选择脚本语言时,Jython 是 WebSphere Application Server 的管理脚本语言的战略方向,因为脚本语言的未来增强主要集中在 Jython 的使用上。
我不是要质疑之前的任何回答,只是添加一些事实。
尽管 Jython 是“战略”方向,但 Jacl 自 WAS v4 以来就一直存在。在 WAS v8.5 中,它仍然是默认设置(并且已弃用!)。
编写管理 API 时考虑了 Jacl。使用 Jython 之一,您必须执行以下技巧才能将服务器列表作为列表:
for srv in AdminConfig.list('Server').splitlines():
print srv
而在 Jacl 中,可以简单地做到这一点:
foreach srv [$AdminConfig list Server] {
puts $srv
}
显然,许多 AdminConfig 和 AdminControl 方法将列表作为换行符分隔的字符串返回。
IBM has really cornered itself with Jython and Jacl. They're still using Jython 2.1 (released in 2002, even in the latest and greatest WAS v8.5). Jacl isn't actively supported by the community. The API is Jacl-friendly, wasn't rewritten for Jython. Lots of client solutions are based on the tricks you have to do in Jython, there's plenty of Jacl-based solutions. Even IBM internally has a plenty of dependencies on that legacy. This might be the reason why Jacl is deprecated since WAS v5.1 and still default.
In short:
结论是:这不是那么简单的答案(这意味着你问了一个好问题)。