我正在尝试使用akka Http
与Java
合作。
我想加载一条如下所示的路线:
hello/world
在HttpApp
上,我试过了:
return route(
path("hello/world", () ->
get(() ->
complete("<h1>Say hello to akka-http</h1>")
)
);
答案 0 :(得分:0)
根据docs尝试以下内容。
import static akka.http.javadsl.server.PathMatchers.*;
return route(
path(segment("hello").slash(segment("world")), () ->
get(() ->
complete("<h1>Say hello to akka-http</h1>")
)
);