# ip_count **Repository Path**: zmbwcx/ip_count ## Basic Information - **Project Name**: ip_count - **Description**: 独立IP访问统计 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-09-13 - **Last Updated**: 2023-10-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ip_count #### 介绍 独立IP访问统计。 基于内存进行统计ip访问次数,可以选择是否使用Redis将ip与访问次数持久化。可以直观看到每天的ip个数与ip的访问次数 #### 软件架构 只导入了Spring-boot-starter-web与Redis包 #### 安装教程 直接下载即可 #### 使用说明 下载在pom.xml中导入ip_spring_boot_starter坐标后可以使用。 由于我使用了Redis包,为了避免Redis版本冲突,可以在项目中,将该包中的Redis包排除。 配置文件部分 ``` tools: ip: cycle: 10 #周期时间 s cycle-reset: true #清除数据 model: simple #输出模式 useRedis: true #是否使用Redis interceptorPath: /** 拦截路径 ```