【黑马程序员SpringBoot2全套视频教程,springboot零基础到项目实战(spring boot2完整版)】
上一次咱们把功能基本上做好了,每5秒打印一次访问情况
问题来了,现在这一组控制太死板了,固定的样式…固定的…
能不能灵活点儿?
【当然】
先来一个配置属性类
package cn.dingjiaxiong.properties;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* ClassName: IpProperties
* date: 2022/10/25 19:28
*
* @author DingJiaxiong
*/
@ConfigurationProperties(prefix = "tools.ip")
public class IpProperties {
/*
* 日志显示周期
* */
private Long cycle = 5L;
/*
* 是否周期内重置数据
* */
private Boolean cycleReset = false;
/*
* 日志输出格式 detail:详细模式 simple:极简模式
* */
private String model = LogModel.DETAIL.value;
public enum LogModel{
DETAIL("detail"),
SIMPLE("simple");
private String value;
LogModel(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
public Long getCycle() {
return cycle;
}
public void setCycle(Long cycle) {
this.cycle = cycle;
}
public Boolean getCycleReset() {
return cycleReset;
}
public void setCycleReset(Boolean cycleReset) {
this.cycleReset = cycleReset;
}
public String getModel() {
return model;
}
public void setModel(String model) {
this.model = model;
}
}
【修改自动配置类】
强制让配置属性类成为一个bean
【业务方法】
package cn.dingjiaxiong.service;
import cn.dingjiaxiong.properties.IpProperties;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import javax.servlet.http.HttpServletRequest;
import java.util.HashMap;
import java.util.Map;
/**
* ClassName: IpCountService
* date: 2022/10/25 16:49
*
* @author DingJiaxiong
*/
public class IpCountService {
private Map<String, Integer> ipCountMap = new HashMap<String, Integer>();
@Autowired
private HttpServletRequest httpServletRequest; //当前的request 对象的注入工作由使用当前starter的工程提供自动装配
//调用这个方法,就可以统计ip的访问次数
public void count() {
//每次调用当前操作,就记录当前访问的IP,然后累加访问次数
//1. 获取当前操作的IP地址
String ip = httpServletRequest.getRemoteAddr();
// System.out.println("==============================================" + ip);
//2. 根据IP地址从Map取值,并递增
Integer count = ipCountMap.get(ip);
if (count == null){
ipCountMap.put(ip,1);
}else{
ipCountMap.put(ip,ipCountMap.get(ip) + 1);
}
}
@Autowired
private IpProperties ipProperties;
@Scheduled(cron = "0/5 * * * * ?")
public void print(){
//判断显示模式
if (ipProperties.getModel().equals(IpProperties.LogModel.DETAIL.getValue())){
System.out.println(" IP访问监控");
System.out.println("+-----ip-address-----+--num--+");
for (Map.Entry<String, Integer> entry : ipCountMap.entrySet()) {
String key = entry.getKey();
Integer value = entry.getValue();
System.out.println(String.format("|%18s |%5d |",key,value));
}
System.out.println("+--------------------+-------+");
}else if (ipProperties.getModel().equals(IpProperties.LogModel.SIMPLE.getValue())){
System.out.println(" IP访问监控");
System.out.println("+-----ip-address-----+");
for (String key : ipCountMap.keySet()) {
System.out.println(String.format("|%18s |",key));
}
System.out.println("+--------------------+");
}
//判断是否清理数据
if (ipProperties.getCycleReset()){
ipCountMap.clear();
}
}
public static void main(String[] args) {
new IpCountService().print();
}
}
OK,直接clean + install
OK,直接重启SSMP
OK, 原来做好的功能不受影响
现在给它来点配置,第一个,测试清除数据
重启运行
OK, 效果很明显,会被清除
测试模式切换
重启运行
这下就不显示次数了,没毛病
OK,回顾一下