我想通过shell脚本运行java应用程序。下面是我的demo shell脚本。
nohup java -cp .:$CLASSPATH com.xx.xx.App >> path/to/xx.log &
但得到这个错误:
nohup: failed to run command ‘java’: No such file or directory
有人可以解决这个问题吗? THX!
答案 0 :(得分:1)
我通过将此行添加到我的shell脚本来解决了这个问题。
class MyLogin extends Polymer.Element {
static get is() { return 'my-login'; }
// the function is inside the class
login() {
// define whatever this function does...
}
}
customElements.define(MyLogin.is, MyLogin);
此方法是重装系统环境。然后shell脚本可以使用 java 命令。