1

我正在使用 Java 6、Tomcat 7、Jersey、HttpClient 和 ehCache 服务器。

在 $CATALINA_HOME/ehcache/WEB-INF/classes/ehcache.xml 中注册了一个名为 ipad 的新缓存

<cache name="ipad"
           maxElementsInMemory="10000"
           eternal="true"
           overflowToDisk="false"
           memoryStoreEvictionPolicy="FIFO"
/>

这是我的客户的样子:

import org.apache.http.impl.client.DefaultHttpClient;

public class EhCachePostClient {
    public static void main(String[] args) throws Exception {   
            String jsonString = "{\"qty\":100,\"name\":\"iPad 4\"}";

            // Post the same object to ehCache
            DefaultHttpClient ehCacheClient = new DefaultHttpClient();
            String ehCacheResponseString =
    EhCacheClientHelper.getEhCacheJsonResponseString(ehCacheClient, jsonString);
            System.out.println("\nFrom ehCache Server: " + ehCacheResponseString);
            ehCacheClient.getConnectionManager().shutdown();
    }
}

这是 EhCacheClientHelper 类(大部分工作已完成):

import java.io.BufferedReader;
import java.io.InputStreamReader;

import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.DefaultHttpClient;

public class EhCacheClientHelper {

    private static final String EHCACHE_IPAD_URI 
                   = "http//localhost:8080/ehcache/rest/ipad";

    public static String getEhCacheJsonResponseString(
                DefaultHttpClient httpClient, String responseString) 
    throws Exception {
        HttpPost postRequest = new HttpPost(EHCACHE_MDS_URI);

        StringEntity input = new StringEntity(responseString);
        input.setContentType("application/json");
        postRequest.setEntity(input);

        HttpResponse response = httpClient.execute(postRequest);

        if (response.getStatusLine().getStatusCode() != 201) {
            throw new RuntimeException("Failed : HTTP error code : " 
                     + response.getStatusLine().getStatusCode());
        }

        BufferedReader br = new BufferedReader(
               new InputStreamReader((response.getEntity().getContent())));

        String output;
        StringBuilder ehCacheOutput = new StringBuilder();
        System.out.println("\nOutput from ehCache Server .... \n");
        while ((output = br.readLine()) != null) {
            ehCacheOutput.append(output);
        }
        return ehCacheOutput.toString();
    }
}

这是我得到的例外:

Exception in thread "main" java.lang.IllegalStateException: Target host must not be null, or set in parameters.
    at org.apache.http.impl.client.DefaultRequestDirector.determineRoute(DefaultRequestDirector.java:784)
    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:414)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:906)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:805)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:784)
    at com.myapp.client.EhCacheClientHelper.getEhCacheJsonResponseString(EhCacheClientHelper.java:22)
    at com.myapp.client.EhCachePostClient.main(EhCachePostClient.java:19)

我究竟做错了什么?

我要做的就是在 ehCache 中创建一个示例缓存,向其中发布某种类型的 JSON 对象,然后使用 curl 命令检索它。

这是一件很难做到的事情吗?我缺少什么(在实施、配置等方面)?

感谢您抽出时间来阅读...

4

1 回答 1

2

你有:

http//...

应该:

http://...

你想念 ”:”

于 2012-12-07T10:35:41.743 回答