• SpringBoot SpringBoot 原理篇 2 自定义starter 2.4 使用属性配置设置功能参数【1】


    SpringBoot

    【黑马程序员SpringBoot2全套视频教程,springboot零基础到项目实战(spring boot2完整版)】

    SpringBoot 原理篇

    2 自定义starter

    2.4 使用属性配置设置功能参数【1】
    2.4.1 直接开干

    上一次咱们把功能基本上做好了,每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;
        }
    
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69

    【修改自动配置类】

    在这里插入图片描述

    强制让配置属性类成为一个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();
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85

    OK,直接clean + install

    在这里插入图片描述

    OK,直接重启SSMP

    在这里插入图片描述

    OK, 原来做好的功能不受影响

    现在给它来点配置,第一个,测试清除数据

    在这里插入图片描述

    重启运行

    在这里插入图片描述

    OK, 效果很明显,会被清除

    测试模式切换

    在这里插入图片描述

    重启运行

    在这里插入图片描述

    这下就不显示次数了,没毛病

    OK,回顾一下

    • 定义属性类,加载对应属性

    在这里插入图片描述

    • 设置加载Properties类为bean

    在这里插入图片描述

    • 根据配置切换设置

    在这里插入图片描述

    • 明细模式报表模板

    在这里插入图片描述

    • 极简模式报表模板

    在这里插入图片描述

    • 配置信息

    在这里插入图片描述

    2.4.2 小结
    1. 使用属性修改自动配置加载的设置值
  • 相关阅读:
    saas多用户小程序商城源码
    conda 实践
    亚马逊云科技与德勤中国推出新工具,有效缓解生成式AI时代下的安全问题
    万字解析设计模式之桥接模式、外观模式
    JavaMail 邮件发送,有意思的附件名乱码 → 客户端正常,web端乱码
    【2022】【论文笔记】太赫兹波段纳米颗粒表面增强拉曼——
    java毕业设计—— 基于java+javaEE+jsp的项目管理系统设计与实现(毕业论文+程序源码)——项目管理系统
    vue打包压缩
    (蓝桥杯C/C++)——常用库函数
    字节9.3秋招研发笔试 【后端方向】第三题
  • 原文地址:https://blog.csdn.net/weixin_44226181/article/details/128060638