gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 12:09:22 25 4
gpt4 key购买 nike

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

主机配置接口(interface)

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

以及用于 Rest 通信的带注释的接口(interface)。

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

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

我想做类似的事情

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

但是使用 RestClient 接口(interface)是不可能的。

这个想法是处理本地化的 rest 应用程序,假设不同的 URL 语言

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

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

谢谢。

最佳答案

Jon 关于注释值的说法是正确的,但 Android Annotations 实际上确实为您提供了一种为 RestClient 动态设置根 url 的方法。

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

void setRootUrl(String rootUrl);

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

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

关于java - 为什么注释属性 Rest.rootUrl 的值必须是常量表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15972574/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com