设计模式-构造者模式

案例引入

假如我们有下面这个config,其中必填的参数有很多,非必填的参数也有几个,maxThread和cpuCore 存在依赖关系。我们可以通过构造参数 + set 来进行赋值操作, 可以实现我们的功能。

java 复制代码
public class VirtualHostConfig {
    /**
     * 构造函数
     */
    public VirtualHostConfig(String host, int port, int cpuCore, int diskSize, int netWorkTraffic, int maxThread, boolean allowSsh) {
        this.host = host;
        this.port = port;
        this.cpuCore = cpuCore;
        this.diskSize = diskSize;
        this.netWorkTraffic = netWorkTraffic;
        this.allowSsh = allowSsh;
        this.maxThread = maxThread;
        if (StrUtil.isBlank(host)) {
            System.out.println("host must fill");
            throw new RuntimeException("host must fill");
        }
        if (this.port <= 0 || this.port >= 65535) {
            System.out.println("port invalid");
            throw new RuntimeException("port invalid");
        }
        if (this.cpuCore <= 0 || this.cpuCore > 8) {
            System.out.println("cpu core must lt 8");
            throw new RuntimeException("cpu core must lt 8");
        }
        if (this.maxThread <= 0 || this.maxThread > 8) {
            System.out.println("maxThread must lt 8");
            throw new RuntimeException("maxThread must lt 8");
        }
        if (this.diskSize < 256 || this.diskSize > 1024 || this.diskSize % 8 != 0) {
            System.out.println("diskSize not valid");
            throw new RuntimeException("diskSize not valid");
        }

        if (this.netWorkTraffic < 1 || this.netWorkTraffic > 10) {
            System.out.println("netWorkTraffic invalid");
            throw new RuntimeException("netWorkTraffic invalid");
        }
        // 存在依赖关系
        if (this.maxThread > this.cpuCore) {
            System.out.println("maxThread invalid");
            throw new RuntimeException("maxThread invalid");
        }

    }
    /**
     *  必填 主机名称
     */
    private String host;
    /**
     *  必填 0~65535
     */
    private int port = -1;

    /**
     * 非必填 但是不能超过 cpuCore
     */
    private int maxThread;

    /**
     * 必填 CPU 不超过8 填完不允许修改
     */
    private int cpuCore = -1;


    /**
     * 非必填 缓存 不超过 512
     */
    private int cacheSize = -1;

    /**
     *  非必填 服务器别名
     */
    private String alisaName;

    /**
     * 必填 磁盘大小
     */
    private int diskSize = -1;

    /**
     * 必填 网络带宽
     */
    private int netWorkTraffic = -1;

    /**
     * 必填 是否允许ssh
     */
    private boolean allowSsh;

    public int getMaxThread() {
        return maxThread;
    }

    public void setMaxThread(int maxThread) {
        this.maxThread = maxThread;
    }

    public int getCacheSize() {
        return cacheSize;
    }

    public void setCacheSize(int cacheSize) {
        this.cacheSize = cacheSize;
    }

    public String getAlisaName() {
        return alisaName;
    }

    public void setAlisaName(String alisaName) {
        this.alisaName = alisaName;
    }

    public String getHost() {
        return host;
    }

    public int getPort() {
        return port;
    }

    public int getCpuCore() {
        return cpuCore;
    }

    public int getDiskSize() {
        return diskSize;
    }

    public int getNetWorkTraffic() {
        return netWorkTraffic;
    }

    public boolean isAllowSsh() {
        return allowSsh;
    }
}

现在有这样几个需求:

1 要求这个config一旦填好了以后不可以修改。

2 公司要求参数方法的参数列表不可超过5个,否则扣钱。

为了满足2这个时候我们可以也可以把必填的参数通过set的方式来注入,但是这样违背了1,同样之前非必填通过set注入也违背了1.并且如果通过set注入的话,我们的校验逻辑也没有地方放置。这个时候构造模式来拯救我们了。

构造者模式

java 复制代码
public class VirtualHostConfig {
    /**
     *  必填 主机名称
     */
    private String host;
    /**
     *  必填 0~65535
     */
    private int port = -1;

    /**
     * 非必填 但是不能超过 cpuCore
     */
    private int maxThread;

    /**
     * 必填 CPU 不超过8 填完不允许修改
     */
    private int cpuCore = -1;


    /**
     * 非必填 缓存 不超过 512
     */
    private int cacheSize = -1;

    /**
     *  非必填 服务器别名
     */
    private String alisaName;

    /**
     * 必填 磁盘大小
     */
    private int diskSize = -1;

    /**
     * 必填 网络带宽
     */
    private int netWorkTraffic = -1;

    /**
     * 必填 是否允许ssh
     */
    private boolean allowSsh;
    public VirtualHostConfig(Builder builder) {
        this.host = builder.host;
        this.port = builder.port;
        this.cpuCore = builder.cpuCore;
        this.diskSize = builder.diskSize;
        this.netWorkTraffic = builder.netWorkTraffic;
        this.allowSsh = builder.allowSsh;
        this.alisaName = builder.alisaName;
        this.cacheSize = builder.cacheSize;
        this.maxThread = builder.maxThread;
    }
    public int getMaxThread() {
        return maxThread;
    }

    public void setMaxThread(int maxThread) {
        this.maxThread = maxThread;
    }

    public int getCacheSize() {
        return cacheSize;
    }

    public void setCacheSize(int cacheSize) {
        this.cacheSize = cacheSize;
    }

    public String getAlisaName() {
        return alisaName;
    }

    public void setAlisaName(String alisaName) {
        this.alisaName = alisaName;
    }

    public String getHost() {
        return host;
    }

    public int getPort() {
        return port;
    }

    public int getCpuCore() {
        return cpuCore;
    }

    public int getDiskSize() {
        return diskSize;
    }

    public int getNetWorkTraffic() {
        return netWorkTraffic;
    }

    public boolean isAllowSsh() {
        return allowSsh;
    }
    static class Builder {
        /**
         *  必填 主机名称
         */
        private String host;
        /**
         *  必填 0~65535
         */
        private int port = -1;

        /**
         * 非必填 但是不能超过 cpuCore
         */
        private int maxThread;

        /**
         * 必填 CPU 不超过8 填完不允许修改
         */
        private int cpuCore = -1;


        /**
         * 非必填 缓存 不超过 512
         */
        private int cacheSize = -1;

        /**
         *  非必填 服务器别名
         */
        private String alisaName;

        /**
         * 必填 磁盘大小
         */
        private int diskSize = -1;

        /**
         * 必填 网络带宽
         */
        private int netWorkTraffic = -1;

        /**
         * 必填 是否允许ssh
         */
        private boolean allowSsh;
        public Builder() {

        }
        public Builder host(String host) {
            this.host = host;
            return this;
        }
        public Builder alisaName(String alisaName) {
            this.alisaName = alisaName;
            return this;
        }
        public Builder port(int port) {
            this.port = port;
            return this;
        }
        public Builder diskSize(int diskSize) {
            this.diskSize = diskSize;
            return this;
        }
        public Builder cacheSize(int cacheSize) {
            this.cacheSize = cacheSize;
            return this;
        }
        public Builder netWorkTraffic(int netWorkTraffic) {
            this.netWorkTraffic = netWorkTraffic;
            return this;
        }
        public Builder cpuCore(int cpuCore) {
            this.cpuCore = cpuCore;
            return this;
        }
        public Builder allowSsh(boolean allowSsh) {
            this.allowSsh = allowSsh;
            return this;
        }
        public Builder maxThread(int maxThread) {
            this.maxThread = maxThread;
            return this;
        }
        public VirtualHostConfig build() {
            if (StrUtil.isBlank(host)) {
                System.out.println("host must fill");
                throw new RuntimeException("host must fill");
            }
            if (this.port <= 0 || this.port >= 65535) {
                System.out.println("port invalid");
                throw new RuntimeException("port invalid");
            }
            if (this.cpuCore <= 0 || this.cpuCore > 8) {
                System.out.println("cpu core must lt 8");
                throw new RuntimeException("cpu core must lt 8");
            }
            if (this.maxThread <= 0 || this.maxThread > 8) {
                System.out.println("maxThread must lt 8");
                throw new RuntimeException("maxThread must lt 8");
            }
            if (this.diskSize < 256 || this.diskSize > 1024 || this.diskSize % 8 != 0) {
                System.out.println("diskSize not valid");
                throw new RuntimeException("diskSize not valid");
            }

            if (this.netWorkTraffic < 1 || this.netWorkTraffic > 10) {
                System.out.println("netWorkTraffic invalid");
                throw new RuntimeException("netWorkTraffic invalid");
            }
            // 存在依赖关系
            if (this.maxThread > this.cpuCore) {
                System.out.println("maxThread invalid");
                throw new RuntimeException("maxThread invalid");
            }
            return new VirtualHostConfig(this);
        }
    }
}

是不是感觉这种写法更好呢?这样设置了属性以后就不可以被修改了。

java 复制代码
public static void main(String[] args) {
    VirtualHostConfig config = new Builder()
            .host("127.0.0.1")
            .cpuCore(8)
            .netWorkTraffic(2)
            .port(8989)
            .diskSize(512)
            .cacheSize(128)
            .alisaName("server1")
            .allowSsh(false)
            .maxThread(7)
            .build();
    System.out.println(JSONUtil.toJsonStr(config));
}
相关推荐
C+++Python1 小时前
详细介绍一下Java泛型的通配符
java·windows·python
JosieBook2 小时前
【数据库】时序预测能力的分级进化:TimechoAI如何让每一类用户都能精准预见未来
java·开发语言·数据库
workflower2 小时前
使用大语言模型处理用户需求
大数据·人工智能·设计模式·重构·动态规划
一生了无挂3 小时前
Java处理JSON技巧教学(从基础到高阶实战全覆盖)
java·开发语言·json
李白的天不白3 小时前
使用 SmartAdmin 进行前后端开发
java·前端
swordbob3 小时前
Spring 单例 Bean 是线程安全的吗?
java·开发语言
2601_951643774 小时前
Python第一,Java跌出前三,C语言杀回来了
java·c语言·python·编程语言排行·技术趋势
IT 行者6 小时前
GitHub Spec Kit 实战(五):/speckit.tasks 怎么拆——Spec Kit 五部曲收官
java·ai编程·claude
(Charon)6 小时前
【C++ 面试高频基础:指针、引用、const、static、new/delete 总结】
java·开发语言
Yeats_Liao6 小时前
Feed流系统设计(三):数据模型与存储设计,从表结构到Redis收件箱
java·javascript·redis