作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Jython 可以在这里提供帮助吗?我应该在 Jython 之上运行 Grails,如果是,如何运行?不知何故,我应该能够在同一个 JVM 上运行 Grails 和 Python 脚本。还有其他可能性,例如为 Python 脚本或一些进程间通信提供 REST 服务,但现在暂不处理这些。
最佳答案
Jython 是一种 JSR223 脚本语言,因此您应该能够遵循通常的方法。 (http://www.jython.org/archive/22/userguide.html#embedding-jython)
ScriptEngine engine = new ScriptEngineManager().getEngineByName("python")
engine.eval("x = 2 + 2")
compile 'org.python:jython:2.7.1b3'
)。
ProcessBuilder
)。 Groovy 有一些很好的糖来用字符串做这种事情。
Process process = "python mypython.py".execute()
关于python - 如何从 Grails 调用 Python 库(提到 Jython)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50439896/
我是一名优秀的程序员,十分优秀!