Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的网络应用程序中,我只需要向从印度访问我的应用程序的用户授予访问权限。当用户尝试在印度以外的地方访问时,我需要阻止他们访问我的应用程序。(即,我不允许他们登录并会显示一个错误弹出窗口)谁能告诉我这是否可能?
添加一个Filter检查请求和
Filter
String ip = request.getRemoteAddress();
使用hostip服务 api 检查位置
例如
http://api.hostip.info/country.php?ip=74.125.236.206
这会给你国家代码IN
IN
如果你没有得到IN那么从过滤器
response.sendRedirect("someUrl"); return;
否则允许请求
chain.doFilter(request, wrapper);
看