使用自定义路由启动内存中的http服务器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用自定义路由启动内存中的http服务器相关的知识,希望对你有一定的参考价值。
This is excellent for testing (mocking a SOAP server for example), we use an in memory http server in order to answer client requests.
import org.simpleframework.http.Request import org.simpleframework.http.Response import org.simpleframework.http.core.Container import org.simpleframework.transport.connect.Connection import org.simpleframework.transport.connect.SocketConnection Connection connection connection.connect(address); } response.set("Content-Type", "text/xml;charset=utf-8"); response.set("Server", "Apache-Coyote/1.1"); response.setDate("Date", time); } case "/some/url/file": case "/some/url/hello": return 'hello' } } } }
以上是关于使用自定义路由启动内存中的http服务器的主要内容,如果未能解决你的问题,请参考以下文章
newCacheThreadPool()newFixedThreadPool()newScheduledThreadPool()newSingleThreadExecutor()自定义线程池(代码片段