需求:
低版本app不可以进行接口访问。低版本安卓端请求接口时在请求头中设置了版本信息相关属性,但是低版本IOS端并没有写入版本信息相关属性。所以,需要对请求头中的属性进行验证。
思路:
1、使用HttpServletRequest,判断请求头中是否存在版本信息相关属性。
2、对于请求头中携带版本信息的,直接获取属性值与当前最新版本号作比较。
实现:
public String login(UserinfoDTO userinfo,HttpServletRequest request) throws Exception {
Enumeration e1 = request.getHeaderNames();
String appCurrentVersionNo="";
//判断是否有自定义属性"appCurrentVersionNo"
while (e1.hasMoreElements()) {
String headerName = (String) e1.nextElement();
if(headerName.equals("appCurrentVersionNo")||headerName.equals("appcurrentversionno")){
appCurrentVersionNo=request.getHeader(headerName);
break;
}
}
if(appCurrentVersionNo==""||appCurrentVersionNo.equals(checkVersion.appVersionNo)){
return "当前版本过低,请更新到最新版本");
}
String versionResult=checkVersions.getHeader(appCurrentVersionNo);
if(!versionResult.equals("success")){
return "当前版本过低,请更新到最新版本");
}
return loginService.login(userinfo);
}
ps:我从request请求头中获取到的属性变成了小写的了,所以在判断中加上了转义后的属性小写形式。
相关参考:
https://blog.csdn.net/mustbehard/article/details/20740109
https://blog.csdn.net/w410589502/article/details/73163383
https://www.cnblogs.com/benbenfishfish/p/5821091.html
https://blog.csdn.net/ckinghan58/article/details/73557414/