前提・実現したいこと
WEBrickでテストサーバーを起動させたいと考えております。
その際に、「http://127.0.01:7777/1.html」を開き以下の画面表示させたいです。
発生している問題・エラーメッセージ
実際に、「http://127.0.01:7777/1.html」を開くとdummyしか表示されない状況になっています。
上記の画像のように表示させたいです。
ruby
1コード 2 3require 'webrick' 4 5class TestContentServlet < 6 WEBrick::HTTPServlet::AbstractServlet 7 8 def do_GET(req, res) 9 # 拡張子で分岐 10 res.body = case req.path 11 when /¥.html$/; html_content req.path 12 when /¥.txt$/; txt_content req.path 13 else; "dummy" 14 end 15 16 res.content_type = WEBrick::HTTPUtils.mime_type( 17 req.path_info, WEBrick::HTTPUtils::DefaultMimeTypes) 18 end 19 20def html_content(path) 21 node = path[0..-6] 22 <<HTML 23 <html><head><title>#{path}</title></head> 24 <body><p> 25 <a href="#{node}/1.html">#{node}/1.html</a><br> 26 <a href="#{node}/2.html">#{node}/2.html</a><br> 27 <a href="#{node}/txt">#{node}/txt</a><br> 28 <a href="http://localhost:7777#{node}.org"> 29 #{node}.org</a><br> 30 <a href="/1.html">/1.html</a> 31 </p></body></html> 32HTML 33end 34 35 def txt_content(path) 36 "This is #{path}" 37 end 38end 39 40srv = WEBrick::HTTPServer.new( 41 :BindAddress => '127.0.0.1', :Port => 7777) 42srv.mount('/', TestContentServlet) 43trap("INT"){ srv.shutdown } 44srv.start 45
補足情報(FW/ツールのバージョンなど)
Rails 6.0.3.4
どうぞよろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。