Package | Description |
---|---|
cn.hutool.http |
Hutool-http针对JDK的HttpUrlConnection做一层封装,简化了HTTPS请求、文件上传、Cookie记忆等操作,使Http请求变得无比简单。
|
cn.hutool.http.server |
Http服务器封装
|
Modifier and Type | Method and Description |
---|---|
static SimpleServer |
HttpUtil.createServer(int port)
创建简易的Http服务器
|
Modifier and Type | Method and Description |
---|---|
SimpleServer |
SimpleServer.addAction(String path,
Action action)
增加请求处理规则
|
SimpleServer |
SimpleServer.addFilter(com.sun.net.httpserver.Filter filter)
增加请求过滤器,此过滤器对所有请求有效
此方法需在以下方法前之前调用: setRoot(File)
setRoot(String)
createContext(String, HttpHandler)
addHandler(String, HttpHandler)
addAction(String, Action)
|
SimpleServer |
SimpleServer.addFilter(HttpFilter filter)
增加请求过滤器,此过滤器对所有请求有效
此方法需在以下方法前之前调用: setRoot(File)
setRoot(String)
createContext(String, HttpHandler)
addHandler(String, HttpHandler)
addAction(String, Action)
|
SimpleServer |
SimpleServer.addHandler(String path,
com.sun.net.httpserver.HttpHandler handler)
增加请求处理规则
|
SimpleServer |
SimpleServer.setExecutor(Executor executor)
设置自定义线程池
|
SimpleServer |
SimpleServer.setRoot(File root)
设置根目录,默认的页面从root目录中读取解析返回
|
SimpleServer |
SimpleServer.setRoot(String root)
设置根目录,默认的页面从root目录中读取解析返回
|
Copyright © 2024. All rights reserved.