1、简介
ip2region,准确率99.9%的离线IP地址定位库,0.0x毫秒级查询,数据库文件大小只有1.5M,提供了java,php,c,python,nodejs,golang,c#等查询绑定和Binary,B树,内存三种查询算法,仓库地址:
https://gitee.com/lionsoul/ip2region
2、引入依赖
net.dreamlumica-ip2region2.5.4
3、测试
@Autowired
private Ip2regionSearcher ip2regionSearcher;/*** 获取地理位置信息** @param ip* @return*/
@GetMapping("test")
public String test(String ip) {return ip2regionSearcher.getAddress(ip);
}
访问地址:
http://localhost:8080/common/test?ip=47.107.233.154
4、测试结果
就这么简单,就能根据 IP 获取到了地理位置信息,还支持多种格式的返回信息,具体可查询源码
如您在阅读中发现不足,欢迎留言!!!