添加Filter
来检查请求和
String ip = request.getRemoteAddress();
使用hostip服务API检查位置
例如
http://api.hostip.info/country.php?ip=74.125.236.206
这将为您提供国家/地区代码IN
如果你没有从过滤器
获得
IN
response.sendRedirect("someUrl");
return;
否则允许请求
chain.doFilter(request, wrapper);
查看强>