处理Java HttpServer中的可变路径组件

时间:2015-11-22 10:20:40

标签: java

我是Java新手。我理解this site中的示例并应用它。

我尝试理解的是,我如何定义/:module/:action种自定义,其中:module:action可以是任何内容,而不是像/test那样调用静态网址

我读了documentation但似乎createContext接受静态字符串而不是正则表达式。

public static void main(String[] args) throws Exception {
    HttpServer server = HttpServer.create(new InetSocketAddress(8000), 0);
    server.createContext("/test", new MyHandler());
    server.setExecutor(null); // creates a default executor
    server.start();
}

0 个答案:

没有答案