我正在使用AndroidAnnotations的休息服务,配置如下:
@Rest(rootUrl = "http://192.168.1.48:8080/stuff/services/rest/StuffService/",
converters = {MappingJacksonHttpMessageConverter.class})
public interface IStuff
{
@Post("fetchAllStuff")
public Response fetchAllStuff(Request req);
}
那么当我需要在运行时更改URL时会发生什么?如果URL在注释中是硬编码的,我该怎么做才能更改它?有没有什么方法可以在属性或XML文件中使用它?