jersey client 创建方案
空谷悠悠
2014-09-17
jersey文档中提到:
Client instances are expensive resources. It is recommended a configured instance is reused for the creation of Web resources 这也是我关注的问题,如何保证避免每次调用资源去重新new一个client对象,文档中也给出了配置实例方案 ClientConfig cc = new DefaultClientConfig(); cc.getProperties().put( ClientConfig.PROPERTY_FOLLOW_REDIRECTS, true); Client c = Client.create(cc); 源码中Client.create(cc)静态方法中也是new的一个client,这里每次仍去创建一个新的对象了,貌似没有避免我上面提到的问题。 Q:jersey有实现避免重复创建client的方案吗?有,如果实现呢? |