httphandler java,向Java HttpServer类的Java HttpHandler类传递数据或从Java HttpHandler类传递数据的正确方法...

I have a java HttpHandler that I am using to test an application. In the HttpHandler each http request is handled in a separate thread and is passed the HttpExchange. But I need to access data from the main thread and class (the one that setup the HttpServer and HttpHandler) so that HttpHandler can send back the correct response for the current test being run. How is the best way to get this data passed in or accessible by the HttpHandler class? I cannot add another parameter to the HttpHandler#handle since that is defined by the HttpHandler & used by the HttpServer, and I can not access none static methods in the main class. I will also need to push messages from the HttpHandler back to the main class to log.

Thanks

A sample of my code:

class RequestHandler implements HttpHandler {

@Override

public void handle(HttpExchange exchange)

{

// do a bunch of stuff with the request that come in.

}

}

public class MainClass

{

public static void main(String[] args)

{

HttpServer server;

ExecutorService excutor;

InetSocketAddress addr = new InetSocketAddress(ipAdd, ipPort);

server = HttpServer.create(addr, 0);

server.createContext("/", new RequestHandler());

excutor = Executors.newCachedThreadPool();

server.setExecutor(excutor);

server.start();

// do a bunch of stuff that uses the server

}

解决方案

From the comments you say that you are constructing the handlers yourself. A typical way that you can inject objects into the handlers is just to pass them in as arguments to the constructor.

For example:

public class RequestHandler implements HttpHandler {

private final Object someObject;

public RequestHandler(Object someObject) {

// there is an implied super() here

this.someObject = someObject;

}

public void handle(HttpExchange exchange) throws IOException {

...

// you can then use someObject here

...

}

}

Then you can pass in the object into your handler like:

server.createContext("/", new RequestHandler(someObject));

In terms of passing information around between handlers, you should be able to use the HttpExchange.setAttribute(...) method to do this. That is a typical way. I'd suggest using attribute names that start with "_" to differentiate them from HTTP attributes.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值