如何在Android中使用RestClientException catch

时间:2013-02-27 20:47:48

标签: java spring rest

我有一个Rest Web服务,我正在使用以下android代码中的这个Web服务。

网络服务工作正常我已经测试了。

但在下面的代码中我收到错误

  String url ="http://10.0.2.2:29512/Restweb_2/webresources/generic/shirish";

  RestTemplate resttemplate = new RestTemplate();
    Log.v("in1", "in1");
 resttemplate.getMessageConverters().add(new StringHttpMessageConverter());
    Log.v("in2", "in2");
   String result;
        try {            
            result = resttemplate.getForObject(url,String.class);
        } 
        catch (RestClientException ex) {
           ![I am getting this error while using this exception and I am not able to proceed further if I don't use this exception(Or it is giving me error in result assign statment)][1]. So how to use RestClient!Exception ????? Also I already import the needed jar files.

        }

1 个答案:

答案 0 :(得分:5)

  

不兼容的类型需要throwable找到RestClientException

当你包含spring-android-rest-template-xxxx.jar并且没有包含spring-android-core-xxxx.jar

时,可能会导致这种情况