编程语言
首页 > 编程语言> > java – 为什么注释属性Rest.rootUrl的值必须是常量表达式?

java – 为什么注释属性Rest.rootUrl的值必须是常量表达式?

作者:互联网

我正在使用Android Annotations Framework,专门用于Rest Integration.
我有以下代码.

主机配置的接口

public interface Host {
    public String URL = "http://192.168.2.137";
}

以及用于休息通信的带注释的接口.

@Rest(rootUrl = Host.URL, converters = { MappingJacksonHttpMessageConverter.class })
public interface RestClient {
    @Get("/entities.json")
    Entity[] allEntities();
}

我的问题是,为什么注释属性Rest.rootUrl的值必须是常量表达式?以及如何为Rest.rootUrl使用String资源?

我想做点什么

@EBean
public class Host{
    @StringRes
    String URL;
}

但是使用RestClient接口是不可能的.

我们的想法是处理本地化的休息应用程序,假设语言不同的URL

http://en.myapp.com
http://es.myapp.com

我知道Java接口必须具有最终属性,但是,有一种方法可以处理本地化的rootUrl值吗?

谢谢.

解决方法:

Jon对注释值是正确的,但Android Annotations实际上确实为您提供了一种动态设置RestClient的根URL的方法.

只需从注释中省略rootUrl属性并向接口添加方法:

void setRootUrl(String rootUrl);

请记住,在实际使用RestClient之前,您需要在应用中的某个位置调用RestClient.setRootUrl(url).

更多信息,请点击https://github.com/excilys/androidannotations/wiki/Rest%20API#rest

标签:android,java,rest,android-annotations
来源: https://codeday.me/bug/20190725/1534856.html