0
我想讓我的reactor-service公開一些帶有狀態信息的靜態html。 projectreactor.io採用反應器 - 網狀對於和它完美的服務單一獨立的文件:爲反應堆提供靜態內容
HttpServer http = HttpServer.create("0.0.0.0", 8100);
http.directory("/static", someLocalPath);
http.start().subscribe();
但一旦作爲HTML引用了另一個文件,對引用文件的請求保持待決的瀏覽器,永遠不會結束。 例如用下面的內容一個index.html:
<html><body>
<img src="http://localhost:8100/static/small.jpg" />
</body></html>
在這裏,瀏覽器顯示small.jpg爲index.html,然後狀態「待定」狀態200
直接請求只有small.jpg工作沒有問題。
我在做什麼錯?