nohup 如何运行jar包 并带 jasypt.encryptor.password
时间: 2024-05-07 19:21:41 浏览: 116
启动停止jar包服务的bat脚本
可以使用以下命令来运行带有 jasypt.encryptor.password 的 jar 包:
```
nohup java -jar yourjarfile.jar --jasypt.encryptor.password=yourpassword > output.log &
```
其中,`yourjarfile.jar` 是你要运行的 jar 包文件名,`yourpassword` 是 jasypt 加密的密码,`output.log` 是输出日志文件名。使用 `nohup` 命令可以在关闭终端后继续运行 jar 包,并且将输出写入日志文件中。
阅读全文