zoukankan      html  css  js  c++  java
  • jrubyrackstandalonejetty

    tomdz/jruby-rack-standalone-jetty · GitHub

    jruby-rack-standalone-jetty

    Provides a way to run jruby-rack with an embedded jetty,
    no WAR files or separate servlet container needed. You simply write a launcher script that contains
    code like this:

    require 'jetty-runner'
    
    jetty_options = {
      :host => 'localhost',
      :port => 4567,
      # jruby-rack context parameters:
      'jruby.rack.layout_class' => 'RailsFilesystemLayout',
      'gem.path' => '.',
      'rackup' => IO.read('config.ru')
    }
    
    server = JettyRunner.new(jetty_options)
    server.run
    server.join
    

    The options hash supports all jruby-rack context parameters.

    Supported Jetty options:

    • :host The IP to bind to. localhost by default.
    • :port The port to use. If not specified then Jetty will use a random one.
    • :use_nio Whether to use NIO instead of blocking IO for HTTP (does not affect HTTPS). true by default
    • :min_threads The minimum number of threads. 10 by default.
    • :max_threads The maximum number of threads. 200 by default.
    • :low_threads The number of threads that are considered to be low. 50 by default.
    • :accept_queue_size The number of requests to be allowed in the accept queue. Uses the value of :max_threads by
      default.
    • :ssl_port The HTTPS port. If not specified (along with :keystore and :key_password) then HTTPS will not be
      enabled.
    • :keystore The keystore. If not specified (along with :ssl_port and :key_password) then HTTPS will not be
      enabled.
    • :key_password The password for the key in the keystore. If not specified (along with :ssl_port and :keystore)
      then HTTPS will not be enabled.
    • :keystore_type The type of the keystore. JKS by default.
    • :with_stats Whether to enable Jetty statistics and expose them via JMX. true by default.
    • :request_log The request log object to use (must implement org.mortbay.jetty.RequestLog). If neither this nor
      :request_log_path are specified, then request logging will not be enabled.
    • :request_log_path The path where the NCSARequestLog should log to. If neither this nor :request_log are
      specified, then request logging will not be enabled.
    • :resource_base Base folder for resolving resources (such as config.ru). Default is ..
  • 相关阅读:
    查看crontab的日志记录定位定时任务问题
    Latex 表格内公式换行方法
    C语言中qsort函数用法
    7 种常用的排序算法-视觉直观感受
    Ubuntu下如何安装YouCompleteMe插件
    Linux下非root用户如何安装软件
    系统进化树-原理介绍及软件使用
    LaTeX 页眉页脚的设置
    TEXshade教程- 多重比对着色软件包
    easyUI自带的时间插件日期选择、月份选择、时间选择的使用
  • 原文地址:https://www.cnblogs.com/lexus/p/2397213.html
Copyright © 2011-2022 走看看