使用jetty runner 运行war 包

jetty-runner 也是一个不错的war 包运行工具,基于jetty,同时提供了丰富的cli 支持

cli

java -jar jetty-runner.jar --help
2020-05-18 20:46:56.487:INFO::main: Logging initialized @300ms to org.eclipse.jetty.util.log.StdErrLog
WARNING: jetty-runner is deprecated.
         See Jetty Documentation for startup options
         https://www.eclipse.org/jetty/documentation/
Usage: java [-Djetty.home=dir] -jar jetty-runner.jar [--help|--version] [ server opts] [[ context opts] context ...] 
Server opts:
 --version                           - display version and exit
 --log file                          - request log filename (with optional 'yyyy_mm_dd' wildcard
 --out file                          - info/warn/debug log filename (with optional 'yyyy_mm_dd' wildcard
 --host name|ip                      - interface to listen on (default is all interfaces)
 --port n                            - port to listen on (default 8080)
 --stop-port n                       - port to listen for stop command (or -DSTOP.PORT=n)
 --stop-key n                        - security string for stop command (required if --stop-port is present) (or -DSTOP.KEY=n)
 [--jar file]*n                      - each tuple specifies an extra jar to be added to the classloader
 [--lib dir]*n                       - each tuple specifies an extra directory of jars to be added to the classloader
 [--classes dir]*n                   - each tuple specifies an extra directory of classes to be added to the classloader
 --stats [unsecure|realm.properties] - enable stats gathering servlet context
 [--config file]*n                   - each tuple specifies the name of a jetty xml config file to apply (in the order defined)
Context opts:
 [[--path /path] context]*n          - WAR file, web app dir or context xml file, optionally with a context path

使用

java -jar jetty-runner.jar crm_web.war

效果

说明

如果需要运行多个war jetty-runner 是一个不错的工具,下边的链接有比较全的使用说明

参考资料

https://webtide.com/jetty-runner/
http://www.eclipse.org/jetty/documentation/current/runner.html

原文地址:https://www.cnblogs.com/rongfengliang/p/12912913.html