Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在努力使用 nssm (非吸盘服务管理器)让它工作。
我正在尝试运行一个 jar 文件(Spring-Boot 应用程序)。没有参数,我的服务可以正常安装和运行,但是我需要传入 VM 参数,我正在努力尝试使用 nssm 让它工作。
所以我需要输入 nssm 来创建 Windows 服务的命令是: $> java "-Dspring.profiles.active=dev" -jar .\neo-0.0.1-SNAPSHOT.jar
任何帮助将不胜感激。
我能够让它运行;我没有传入系统属性(VM 属性),而是通过应用程序参数传入值。
nssm install JarServiceWithArgs FullJavaPath\java.exe -jar app.jar --spring.profiles.active=dev