获取Http请求头中自定义属性值 java

需求:

低版本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/


评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值