AsyncHttpClient 401权限问题

最开始我在每一次用AsyncHttpClient是都new了一个新的对象,这样导致登录后,和请求的数据不是同一个对象,会导致报401的权限问题,解决方式

编写一个单例

public class AsyncHttpCilentUtil {

	private static AsyncHttpClient client = null;
	
	public synchronized static AsyncHttpClient getInstence(){
		if(client ==null){
			client = new AsyncHttpClient();
			client.setTimeout(1000*10);
		}
		return client;
	}
	
}

这样就ok了

你可能感兴趣的:(AsyncHttpClient,401,权限问题)