在java服务包装器中的wrapper.conf文件中将运行时参数传递到哪里?
我正在尝试为我的 jar 应用程序创建窗口服务。 应用程序在运行时需要一个参数和系统属性值。 我不知道在wrapper.conf 文件中哪里给出参数值和系统变量值。 请帮我。 我收到以下错误
包装 | 启动 JVM...
JVM 1 | WrapperManager:正在初始化...
JVM 1 | JVM 1 | WrapperSimpleApp 用法:
JVM 1 | java org.tanukisoftware.wrapper.WrapperSimpleApp {app_class} [app_arguments]
JVM 1 | JVM 1 | 地点:
JVM 1 | app_class:要运行的应用程序的完全限定类名。
JVM 1 | app_arguments:通常传递给的参数 JVM 1 | 应用程序。
包装| 加载应用程序时 JVM 退出。
Iam trying to create window service for my jar application. Application needs an argument and System property value while runtime. I dont know where to give argument value and system variable value in wrapper.conf file. please help me. I am getting the below error
wrapper | Launching a JVM...
jvm 1 | WrapperManager: Initializing...
jvm 1 |
jvm 1 | WrapperSimpleApp Usage:
jvm 1 | java org.tanukisoftware.wrapper.WrapperSimpleApp {app_class} [app_arguments]
jvm 1 |
jvm 1 | Where:
jvm 1 | app_class: The fully qualified class name of the application to run.
jvm 1 | app_arguments: The arguments that would normally be passed to the
jvm 1 | application.
wrapper | JVM exited while loading the application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在寻找类似命令行参数的参数,那么 wrapper.app.parameter.N(应用程序的参数)和 wrapper.java.additional.N(JVM 参数)
例如:
希望这对某人有帮助。
If one is looking for a command-line-argument-like argument, how about wrapper.app.parameter.N (parameters for the application) and wrapper.java.additional.N (parameters for JVM)
For example:
Hope this helps somebody.
看看这个示例配置文件,看来您需要设置wrapper.java.mainclass属性。
The looking at this example configuration file, it appears that you need to set the
wrapper.java.mainclass
property.