我正在使用改装& Dagger2用于我的应用程序。我想根据用户在Spinner中选择的内容动态更改应用程序的baseUrl。
在互联网上花了几个小时后,我得出结论,可以动态更改baseUrl。
依赖注入看起来像这样:
APiModule
@Module
public class ApiModule {
String mBaseUrl;
public ApiModule(String mBaseUrl) {
this.mBaseUrl = mBaseUrl;
}
@Provides
@Singleton
OkHttpClient provideOkhttpClient(Cache cache) {
OkHttpClient.Builder client = new OkHttpClient.Builder();
HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
// set your desired log level
logging.setLevel(HttpLoggingInterceptor.Level.BODY);
client.addInterceptor(logging);
client.cache(cache);
return client.build();
}
@Provides
@Singleton
Retrofit provideRetrofit(OkHttpClient okHttpClient) {
return new Retrofit.Builder()
.addConverterFactory(GsonConverterFactory.create())
.baseUrl(mBaseUrl)
.client(okHttpClient)
.build();
}
}
我根据互联网
的参考创建了一个额外的课程HostSelectionInterceptor.java
import java.io.IOException;
import javax.inject.Singleton;
import dagger.Module;
import dagger.Provides;
import okhttp3.HttpUrl;
import okhttp3.Interceptor;
import okhttp3.Request;
/** An interceptor that allows runtime changes to the URL hostname. */
@Module(includes = {ApiModule.class})
public final class HostSelectionInterceptor implements Interceptor {
private volatile String host;
@Provides
@Singleton
public String setHost(String host) {
this.host = host;
return this.host;
}
public String getHost() {
return host;
}
@Provides
@Singleton
@Override
public okhttp3.Response intercept(Chain chain) {
Request request = chain.request();
String host = getHost();
if (host != null) {
/* HttpUrl newUrl = request.url().newBuilder()
.host(host)
.build();*/
HttpUrl newUrl = HttpUrl.parse(host);
request = request.newBuilder()
.url(newUrl)
.build();
}
try {
return chain.proceed(request);
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}
现在,我的问题是如何在更改Spinner时使用HostSelectionInterceptor来更改我的baseUrl。
答案 0 :(得分:3)
您可以使用@Named
(或使用@Qualifier注释的自定义注释)
添加如下注释:
@Singleton
@Provides
@Named("picture")
Retrofit providePictureRetrofit(GsonConverterFactory gsonConverterFactory, RxJavaCallAdapterFactory rxJavaCallAdapterFactory) {
return retrofit = new Retrofit.Builder()
.baseUrl(MarsWeatherWidget.PICTURE_URL) // one url
.build();
}
@Singleton
@Provides
@Named("weather")
Retrofit provideWeatherRetrofit(GsonConverterFactory gsonConverterFactory, RxJavaCallAdapterFactory rxJavaCallAdapterFactory) {
return retrofit = new Retrofit.Builder()
.baseUrl(MarsWeatherWidget.WEATHER_URL) // other url
.build();
}
注入合格版
当您的模块提供限定类型时,您只需要在需要依赖项的位置添加限定符。
MyPictureService provideService(@Named("picture") Retrofit retrofit) {
// ...
}
答案 1 :(得分:1)
Request.Builder.url - 是一个请求网址。所以它添加到 Base_URL 的所有内容。
要动态更改基本网址,您必须重新创建改造对象。
查看我一直在努力的模拟服务器: https://github.com/macieknajbar/MockServer/blob/master/app/src/main/java/com/example/mockserver/rest/server/MockServer.kt
运行测试并进行更改以供自己使用(替换基本网址,而不仅仅是响应)。