wfansh 2 months ago
parent
commit
2209989552
15 changed files with 258 additions and 275 deletions
  1. 9 14
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/api/controller/OpenAPIController.java
  2. 15 23
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/constant/AdwebConstant.java
  3. 33 50
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/constant/ShellConstans.java
  4. 1 2
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/jedis/Message.java
  5. 11 12
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/service/DomainService.java
  6. 7 2
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/service/FeishuService.java
  7. 27 27
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/service/ShellService.java
  8. 2 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/service/WebSocketService.java
  9. 0 1
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/AdaptiveWidthUtils.java
  10. 3 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/AdwebRedisUtil.java
  11. 2 0
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/AwsTranslateUtils.java
  12. 7 7
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/JedisUtil.java
  13. 112 88
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/ShellSSH2Util.java
  14. 23 49
      jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/SnowflakeIdUtil.java
  15. 6 0
      jeecg-module-system/jeecg-system-start/README.md

+ 9 - 14
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/api/controller/OpenAPIController.java

@@ -3,9 +3,12 @@ package org.jeecg.modules.adweb.api.controller;
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+
 import jakarta.annotation.Resource;
 import jakarta.servlet.http.HttpServletRequest;
+
 import lombok.extern.slf4j.Slf4j;
+
 import org.apache.commons.collections4.CollectionUtils;
 import org.apache.commons.lang3.StringUtils;
 import org.jeecg.common.api.vo.Result;
@@ -37,21 +40,15 @@ public class OpenAPIController {
     private static final String BEARER_TOKEN_HEADER = "AdWeb-Authorization";
     private static final String STATIC_BEARER_TOKEN = "Bearer uxl9Wpzh65vXNUyDvynJDjBo";
 
-    @Resource
-    private CommonMapper commonMapper;
+    @Resource private CommonMapper commonMapper;
 
-    @Resource
-    private IAdwebSiteService adwebSiteService;
+    @Resource private IAdwebSiteService adwebSiteService;
 
-    @Resource
-    private IAdwebProductService adwebProductService;
+    @Resource private IAdwebProductService adwebProductService;
 
-    @Resource
-    private IAdwebEnquiryService adwebEnquiryService;
+    @Resource private IAdwebEnquiryService adwebEnquiryService;
 
-    /**
-     * 外部api请求获取产品列表
-     */
+    /** 外部api请求获取产品列表 */
     @IgnoreAuth
     @PostMapping("/product/list")
     @ResponseBody
@@ -79,9 +76,7 @@ public class OpenAPIController {
         }
     }
 
-    /**
-     * 外部api请求获取询盘列表
-     */
+    /** 外部api请求获取询盘列表 */
     @IgnoreAuth
     @PostMapping("/enquiry/list")
     @ResponseBody

+ 15 - 23
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/constant/AdwebConstant.java

@@ -2,42 +2,38 @@ package org.jeecg.modules.adweb.common.constant;
 
 public interface AdwebConstant {
 
-
-    /*网站状态 当前状态:0:已删除;1:正常; 2:未发布*/
+    /** 网站状态 当前状态:0:已删除;1:正常; 2:未发布 */
     Integer SITE_DEL = 0;
 
-
-    /*产品状态0删除1可用*/
+    /** 产品状态0删除1可用 */
     Integer STATUS = 1;
 
-    /*组件编码*/
+    /** 组件编码 */
     String PRODUCT = "product";
 
-    /*内容*/
+    /** 内容 */
     String NEWS = "news";
 
-    /*平台标识*/
+    /** 平台标识 */
     String APPKEY = "adweb";
 
-    /*内容分类*/
+    /** 内容分类 */
     String NEWSCATALOG = "newsCatalog";
 
     String PRODUCTCTALOG = "productCatalog";
 
-    /**
-     * 缓存前缀
-     */
+    /** 缓存前缀 */
     String CACHE_PREFIX = "AdWeb3::";
 
-    //询盘阶段,字典条目
+    // 询盘阶段,字典条目
     String ENQUIRY_PHASE = "enquiry_phase";
-    //询盘跟进状态,字典条目
+    // 询盘跟进状态,字典条目
     String ENQUIRY_TRACK_STATUS = "enquiry_track_status";
-    //询盘用户有效性,字典条目
+    // 询盘用户有效性,字典条目
     String ENQUIRY_EFFECTIVE = "enquiry_effective";
-    //询盘回复状态,字典条目
+    // 询盘回复状态,字典条目
     String ENQUIRY_REPLAY_STATUS = "enquiry_replay_status";
-    //ADMP dictService
+    // ADMP dictService
     String CUSTOMER_ORDER_CURRENCY = "customer_order_currency";
 
     String ENQUIRY_PARAM_NAME = "enquiry_param_name";
@@ -47,10 +43,9 @@ public interface AdwebConstant {
     String ENQUIRY_PARAM_COMPANY = "enquiry_param_company";
     String ENQUIRY_PARAM_FROM_PAGE = "enquiry_param_from_page";
 
-    /**
-     * 页面code
-     */
+    /** 页面code */
     String HOME_PAGE_CODE = "home";
+
     String ABOUT_US_PAGE_CODE = "aboutUs";
     String PRODUCTS_PAGE_CODE = "products";
     String PRODUCT_DETAIL_PAGE_CODE = "productDetail";
@@ -59,13 +54,10 @@ public interface AdwebConstant {
     String CONTACT_US_PAGE_CODE = "contactUs";
     String FAQ_PAGE_CODE = "faq";
 
-    /**
-     * 模板标签
-     */
+    /** 模板标签 */
     String TEMPLATE_TAGS = "template_tags";
 
     /*SEO关键字类型 1 - 指定词 2 - 长尾词 */
     int KEYWORD_TYPE_APPOINT = 1;
     int KEYWORD_TYPE_LONG_TAIL = 2;
-
 }

+ 33 - 50
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/constant/ShellConstans.java

@@ -9,74 +9,57 @@ package org.jeecg.modules.adweb.common.constant;
  */
 public class ShellConstans {
 
-    /**
-     * 站点备份shell脚本常量
-     */
+    /** 站点备份shell脚本常量 */
     public interface BackupSite {
 
-        public final static String ERROR = "[ERROR]";
+        public static final String ERROR = "[ERROR]";
 
-        public final static String BACKUPCOMPLETE = "[BACKUPCOMPLETE]";
+        public static final String BACKUPCOMPLETE = "[BACKUPCOMPLETE]";
 
-        public final static String BACKUP_PATH = "[BACKUP_PATH]";
+        public static final String BACKUP_PATH = "[BACKUP_PATH]";
 
-        public final static String BACKUP_SIZE = "[BACKUP_SIZE]";
-
-        public final static String BACKUP_RESULT = "[BACKUP_RESULT]";
+        public static final String BACKUP_SIZE = "[BACKUP_SIZE]";
 
+        public static final String BACKUP_RESULT = "[BACKUP_RESULT]";
     }
 
-    /**
-     * 站点内存空间监控
-     */
+    /** 站点内存空间监控 */
     public interface SiteSize {
 
-        public final static String WEBSITE_DISK = "**website_disk**";
-
+        public static final String WEBSITE_DISK = "**website_disk**";
     }
 
-    /**
-     * 服务内存空间监控
-     */
+    /** 服务内存空间监控 */
     public interface ServerSize {
 
-        public final static String SERVER_DISK = "**server_disk**";
-
-        public final static String SERVER_MEM = "**server_mem**";
+        public static final String SERVER_DISK = "**server_disk**";
 
-        public final static String SERVER_CPU = "**server_cpu**";
+        public static final String SERVER_MEM = "**server_mem**";
 
+        public static final String SERVER_CPU = "**server_cpu**";
     }
 
-    /**
-     * 磁盘常量
-     */
-    public final static Integer DISK_NUM = 70;
-    /**
-     * CPU常量
-     */
-    public final static Integer CPU_NUM = 80;
-    /**
-     * 内存常量
-     */
-    public final static Integer MEMORY_NUM = 80;
-
-    public final static String SUCCESS_INFO = "[UPDATECOMPLETE]";
-
-    /**
-     * 自动添加SSL
-     */
-    public interface addSsl {
-        public final static String START_CERT = "[start cert.pem]";
-        public final static String END_CERT = "[end cert.pem]";
-        public final static String START_PRIVKEY = "[start privkey.pem]";
-        public final static String END_PRIVKEY = "[end privkey.pem]";
-        public final static String START_CHAIN = "[start chain.pem]";
-        public final static String END_CHAIN = "[end chain.pem]";
-        public final static String IS_ERROR_INFO = "[EXIST]";
-        public final static String NULL_ERROR_INFO = "[NONEXIST]";
-        public final static String DATE_TIME = "[LASTMTIME]";
-    }
+    /** 磁盘常量 */
+    public static final Integer DISK_NUM = 70;
 
+    /** CPU常量 */
+    public static final Integer CPU_NUM = 80;
 
+    /** 内存常量 */
+    public static final Integer MEMORY_NUM = 80;
+
+    public static final String SUCCESS_INFO = "[UPDATECOMPLETE]";
+
+    /** 自动添加SSL */
+    public interface addSsl {
+        public static final String START_CERT = "[start cert.pem]";
+        public static final String END_CERT = "[end cert.pem]";
+        public static final String START_PRIVKEY = "[start privkey.pem]";
+        public static final String END_PRIVKEY = "[end privkey.pem]";
+        public static final String START_CHAIN = "[start chain.pem]";
+        public static final String END_CHAIN = "[end chain.pem]";
+        public static final String IS_ERROR_INFO = "[EXIST]";
+        public static final String NULL_ERROR_INFO = "[NONEXIST]";
+        public static final String DATE_TIME = "[LASTMTIME]";
+    }
 }

+ 1 - 2
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/jedis/Message.java

@@ -15,5 +15,4 @@ public class Message implements Serializable {
         this.id = id;
         this.content = content;
     }
-
-}
+}

+ 11 - 12
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/service/DomainService.java

@@ -1,6 +1,7 @@
 package org.jeecg.modules.adweb.common.service;
 
 import lombok.extern.slf4j.Slf4j;
+
 import org.springframework.stereotype.Service;
 import org.xbill.DNS.CNAMERecord;
 import org.xbill.DNS.Lookup;
@@ -10,7 +11,6 @@ import org.xbill.DNS.Type;
 import java.net.InetAddress;
 import java.util.List;
 
-
 /**
  * @Author: 汤星鹏
  * @Description: 域名检测service
@@ -23,11 +23,10 @@ public class DomainService {
     /**
      * 核实域名是否指向规定cname
      *
-     * @param cname  网站cname
+     * @param cname 网站cname
      * @param domain 站点域名
      * @return
-     * @author Cyan -- 2019/12/6 11:47
-     * @Update chenpeiqing -- 2025/1/3 17:53
+     * @author Cyan -- 2019/12/6 11:47 @Update chenpeiqing -- 2025/1/3 17:53
      */
     public Boolean checkDomainIsCname(String cname, String domain) {
         boolean flag = false;
@@ -35,11 +34,11 @@ public class DomainService {
             Record[] records = null;
             Lookup lookup = new Lookup(domain, Type.CNAME);
             lookup.run();
-            //连通并获取结果集
+            // 连通并获取结果集
             if (lookup.getResult() == Lookup.SUCCESSFUL) {
                 records = lookup.getAnswers();
             } else {
-                //未查到结果
+                // 未查到结果
                 log.info("未查询到结果!");
                 return false;
             }
@@ -62,9 +61,9 @@ public class DomainService {
     /**
      * 核实域名是否指向规定cname
      *
-     * @param ip     网站ip
+     * @param ip 网站ip
      * @param domain 站点域名
-     * @return true:域名指向了ip   false:域名没有指向ip
+     * @return true:域名指向了ip false:域名没有指向ip
      * @author Cyan -- 2019/12/6 11:47
      */
     public Boolean checkDomainIsIp(String domain, String ip) {
@@ -89,7 +88,7 @@ public class DomainService {
     /**
      * 核实域名是否指向规定cname或ip
      *
-     * @param cname  网站cname
+     * @param cname 网站cname
      * @param domain 站点域名
      * @param ip
      * @return
@@ -99,7 +98,7 @@ public class DomainService {
         Boolean flag = false;
         boolean toCname = checkDomainIsCname(cname, domain);
         boolean toIP = checkDomainIsIp(domain, ip);
-        //cname或ip  二者有其一指向正确
+        // cname或ip  二者有其一指向正确
         if (toCname || toIP) {
             flag = true;
         }
@@ -109,9 +108,9 @@ public class DomainService {
     /**
      * 检验域名以什么开头
      *
-     * @param domain   域名
+     * @param domain 域名
      * @param headStrs 头字符串集合
-     * @return true:是以存在集合中的元素开头   false:不是以存在集合中的元素开头
+     * @return true:是以存在集合中的元素开头 false:不是以存在集合中的元素开头
      * @author Cyan -- 2019/12/12 9:36
      */
     public Boolean checkDomainBegin(String domain, List<String> headStrs) {

+ 7 - 2
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/service/FeishuService.java

@@ -1,11 +1,15 @@
 package org.jeecg.modules.adweb.common.service;
 
 import cn.hutool.http.HttpRequest;
+
 import com.alibaba.fastjson.JSON;
 import com.alibaba.fastjson.JSONObject;
 import com.xkcoding.http.util.StringUtil;
+
 import jakarta.annotation.Resource;
+
 import lombok.extern.slf4j.Slf4j;
+
 import org.apache.commons.codec.binary.Base64;
 import org.apache.commons.lang3.StringUtils;
 import org.jeecg.modules.adweb.common.constant.RobotMsgTemplate;
@@ -16,14 +20,15 @@ import org.jeecg.modules.system.service.ISysDictService;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Service;
 
-import javax.crypto.Mac;
-import javax.crypto.spec.SecretKeySpec;
 import java.nio.charset.StandardCharsets;
 import java.security.InvalidKeyException;
 import java.security.NoSuchAlgorithmException;
 import java.text.SimpleDateFormat;
 import java.util.Date;
 
+import javax.crypto.Mac;
+import javax.crypto.spec.SecretKeySpec;
+
 /**
  * @Description:
  * @Author: wrk

+ 27 - 27
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/service/ShellService.java

@@ -1,6 +1,5 @@
 package org.jeecg.modules.adweb.common.service;
 
-
 import org.jeecg.modules.adweb.common.util.ShellSSH2Util;
 import org.jeecg.modules.adweb.server.entity.AdwebServer;
 import org.slf4j.Logger;
@@ -16,48 +15,47 @@ import java.io.File;
  */
 @Service
 public class ShellService {
-    /**
-     * 日志
-     */
+    /** 日志 */
     private static Logger logger = LoggerFactory.getLogger(ShellService.class);
 
     /**
-     * 创建共享站点  命令
+     * 创建共享站点 命令
      *
-     * @param cmd            控制台返回监听器
-     * @param host           建站连接测试环境配置 域名
-     * @param port           端口
+     * @param cmd 控制台返回监听器
+     * @param host 建站连接测试环境配置 域名
+     * @param port 端口
      * @param username
      * @param password
      * @param stdoutListener
      */
-    public void createShareSiteByPwd(String cmd
-            , String host
-            , int port
-            , String username
-            , String password
-            , ShellSSH2Util.StdoutListener stdoutListener) {
+    public void createShareSiteByPwd(
+            String cmd,
+            String host,
+            int port,
+            String username,
+            String password,
+            ShellSSH2Util.StdoutListener stdoutListener) {
         exceShellByPwd(cmd, host, port, username, password, stdoutListener);
     }
 
-
     /**
      * 执行远程Shell脚本 (通过用户名和密码)
      *
-     * @param cmd            命令
-     * @param host           建站连接测试环境配置 域名
-     * @param port           端口
+     * @param cmd 命令
+     * @param host 建站连接测试环境配置 域名
+     * @param port 端口
      * @param username
      * @param password
      * @param stdoutListener
      * @param stdoutListener 控制台输出监听器
      */
-    public void exceShellByPwd(String cmd
-            , String host
-            , int port
-            , String username
-            , String password
-            , ShellSSH2Util.StdoutListener stdoutListener) {
+    public void exceShellByPwd(
+            String cmd,
+            String host,
+            int port,
+            String username,
+            String password,
+            ShellSSH2Util.StdoutListener stdoutListener) {
         long currentTimeMillis = System.currentTimeMillis();
         ShellSSH2Util.execmdByPwd(host, port, username, password, cmd, stdoutListener);
         long currentTimeMillis1 = System.currentTimeMillis();
@@ -67,13 +65,15 @@ public class ShellService {
     /**
      * 执行远程Shell脚本
      *
-     * @param cmd            命令
+     * @param cmd 命令
      * @param stdoutListener 控制台输出监听器
      */
-    public void exceShell(String cmd, ShellSSH2Util.StdoutListener stdoutListener, AdwebServer serverInfo) {
+    public void exceShell(
+            String cmd, ShellSSH2Util.StdoutListener stdoutListener, AdwebServer serverInfo) {
         long currentTimeMillis = System.currentTimeMillis();
         File pemFile = new File(serverInfo.getServerPem());
-        ShellSSH2Util.execmd(serverInfo.getServerIp(), serverInfo.getUserName(), pemFile, cmd, stdoutListener);
+        ShellSSH2Util.execmd(
+                serverInfo.getServerIp(), serverInfo.getUserName(), pemFile, cmd, stdoutListener);
         long currentTimeMillis1 = System.currentTimeMillis();
         System.out.println("花费时间:" + (currentTimeMillis1 - currentTimeMillis));
     }

+ 2 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/service/WebSocketService.java

@@ -1,7 +1,9 @@
 package org.jeecg.modules.adweb.common.service;
 
 import com.alibaba.fastjson.JSONObject;
+
 import jakarta.annotation.Resource;
+
 import org.jeecg.common.constant.WebsocketConst;
 import org.jeecg.modules.message.websocket.WebSocket;
 import org.springframework.stereotype.Service;

+ 0 - 1
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/AdaptiveWidthUtils.java

@@ -2,7 +2,6 @@ package org.jeecg.modules.adweb.common.util;
 
 import org.apache.poi.ss.usermodel.Sheet;
 
-
 public class AdaptiveWidthUtils {
     /**
      * 自适应宽度(中文支持)

+ 3 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/AdwebRedisUtil.java

@@ -6,8 +6,11 @@ import com.fasterxml.jackson.databind.MapperFeature;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import com.fasterxml.jackson.databind.json.JsonMapper;
 import com.fasterxml.jackson.databind.jsontype.impl.LaissezFaireSubTypeValidator;
+
 import jakarta.annotation.PostConstruct;
+
 import lombok.extern.slf4j.Slf4j;
+
 import org.jeecg.common.base.BaseMap;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.data.redis.connection.RedisConnectionFactory;

+ 2 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/AwsTranslateUtils.java

@@ -6,7 +6,9 @@ import com.amazonaws.services.translate.AmazonTranslate;
 import com.amazonaws.services.translate.AmazonTranslateClient;
 import com.amazonaws.services.translate.model.TranslateTextRequest;
 import com.amazonaws.services.translate.model.TranslateTextResult;
+
 import lombok.extern.slf4j.Slf4j;
+
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Component;
 

+ 7 - 7
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/JedisUtil.java

@@ -26,7 +26,7 @@ public class JedisUtil {
     /**
      * 存储REDIS队列 顺序存储
      *
-     * @param key   reids键名
+     * @param key reids键名
      * @param value 键值
      */
     public static void lpush(byte[] key, byte[] value) {
@@ -38,7 +38,7 @@ public class JedisUtil {
         } catch (Exception e) {
             e.printStackTrace();
         } finally {
-            //返还到连接池
+            // 返还到连接池
             if (jedis != null) {
                 jedis.close();
             }
@@ -48,7 +48,7 @@ public class JedisUtil {
     /**
      * 存储REDIS队列 反向存储
      *
-     * @param key   reids键名
+     * @param key reids键名
      * @param value 键值
      */
     public static void rpush(byte[] key, byte[] value) {
@@ -60,7 +60,7 @@ public class JedisUtil {
         } catch (Exception e) {
             e.printStackTrace();
         } finally {
-            //返还到连接池
+            // 返还到连接池
             if (jedis != null) {
                 jedis.close();
             }
@@ -83,7 +83,7 @@ public class JedisUtil {
         } catch (Exception e) {
             e.printStackTrace();
         } finally {
-            //返还到连接池
+            // 返还到连接池
             if (jedis != null) {
                 jedis.close();
             }
@@ -105,7 +105,7 @@ public class JedisUtil {
         } catch (Exception e) {
             e.printStackTrace();
         } finally {
-            //返还到连接池
+            // 返还到连接池
             if (jedis != null) {
                 jedis.close();
             }
@@ -126,7 +126,7 @@ public class JedisUtil {
         } catch (Exception e) {
             e.printStackTrace();
         } finally {
-            //返还到连接池
+            // 返还到连接池
             if (jedis != null) {
                 jedis.close();
             }

+ 112 - 88
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/ShellSSH2Util.java

@@ -22,32 +22,28 @@ import java.util.concurrent.Executors;
 @Slf4j
 public class ShellSSH2Util {
 
-    /**
-     * 日志
-     */
+    /** 日志 */
     protected static Logger logger = LoggerFactory.getLogger(ShellSSH2Util.class);
 
-
-    /**
-     * 默认字符编码
-     */
+    /** 默认字符编码 */
     private static String DEFAULT_CHART = "UTF-8";
 
     /**
      * 登录远程服务器
      *
-     * @param host     远程主机
+     * @param host 远程主机
      * @param username 远程主机登录用户名
      * @param password 远程主机登录密码
      * @return Connection
      */
-    public static Connection login(String host, int port, String username, String password, StdoutListener listener) {
+    public static Connection login(
+            String host, int port, String username, String password, StdoutListener listener) {
         Connection connection = null;
         listener.stdout("开始连接:" + username + "@" + host);
         try {
             connection = new Connection(host, port);
-            connection.connect();// 连接
-            boolean login = connection.authenticateWithPassword(username, password);// 认证
+            connection.connect(); // 连接
+            boolean login = connection.authenticateWithPassword(username, password); // 认证
             if (login) {
                 listener.stdout(username + "@" + host + "; 登录成功");
             } else {
@@ -65,19 +61,20 @@ public class ShellSSH2Util {
     /**
      * 登录远程服务器
      *
-     * @param host     远程主机
+     * @param host 远程主机
      * @param username 远程主机登录用户名
-     * @param pemFile  登录密钥
+     * @param pemFile 登录密钥
      * @param listener 执行过程监听器
      * @return Connection
      */
-    public static Connection login(String host, int port, String username, File pemFile, StdoutListener listener) {
+    public static Connection login(
+            String host, int port, String username, File pemFile, StdoutListener listener) {
         Connection connection = null;
         listener.stdout("开始连接:" + username + "@" + host);
         try {
             connection = new Connection(host, port);
-            connection.connect();// 连接
-            boolean login = connection.authenticateWithPublicKey(username, pemFile, null);// 认证
+            connection.connect(); // 连接
+            boolean login = connection.authenticateWithPublicKey(username, pemFile, null); // 认证
             if (login) {
                 listener.stdout(username + "@" + host + "; 登录成功");
             } else {
@@ -95,21 +92,22 @@ public class ShellSSH2Util {
     /**
      * 检验是否能够连接服务器
      *
-     * @param host     远程主机
-     * @param port     端口
+     * @param host 远程主机
+     * @param port 端口
      * @param username 远程主机登录用户名
      * @param password 远程主机登录密码
-     * @return true:可以连接  false:无法连接
+     * @return true:可以连接 false:无法连接
      * @author Cyan -- 2020/4/26 10:56
      */
-    public static Boolean loginCheck(String host, int port, String username, String password, StdoutListener listener) {
+    public static Boolean loginCheck(
+            String host, int port, String username, String password, StdoutListener listener) {
         Boolean result = true;
         Connection connection = null;
         listener.stdout("开始连接:" + username + "@" + host);
         try {
             connection = new Connection(host, port);
-            connection.connect();// 连接
-            boolean login = connection.authenticateWithPassword(username, password);// 认证
+            connection.connect(); // 连接
+            boolean login = connection.authenticateWithPassword(username, password); // 认证
             if (login) {
                 listener.stdout(username + "@" + host + "; 登录成功");
             } else {
@@ -132,20 +130,21 @@ public class ShellSSH2Util {
     /**
      * 登录远程服务器
      *
-     * @param host     远程主机
+     * @param host 远程主机
      * @param username 远程主机登录用户名
-     * @param pemFile  登录密钥
+     * @param pemFile 登录密钥
      * @param listener 执行过程监听器
      * @return Connection
      */
-    private static Connection login(String host, String username, File pemFile, StdoutListener listener) {
+    private static Connection login(
+            String host, String username, File pemFile, StdoutListener listener) {
         Connection connection = null;
         listener.stdout("开始连接:" + username + "@" + host);
         try {
             connection = new Connection(host);
-//            connection.setClient2ServerCiphers(new String[]{"aes256-cbc"});
-            connection.connect();// 连接
-            boolean login = connection.authenticateWithPublicKey(username, pemFile, null);// 认证
+            //            connection.setClient2ServerCiphers(new String[]{"aes256-cbc"});
+            connection.connect(); // 连接
+            boolean login = connection.authenticateWithPublicKey(username, pemFile, null); // 认证
             if (login) {
                 listener.stdout(username + "@" + host + "; 登录成功");
             } else {
@@ -162,20 +161,21 @@ public class ShellSSH2Util {
     /**
      * 登录远程服务器
      *
-     * @param host     远程主机
+     * @param host 远程主机
      * @param username 远程主机登录用户名
-     * @param pemFile  登录密钥
+     * @param pemFile 登录密钥
      * @param listener 执行过程监听器
      * @return Connection
      */
-    public static Boolean loginCheck(String host, String username, File pemFile, StdoutListener listener) {
+    public static Boolean loginCheck(
+            String host, String username, File pemFile, StdoutListener listener) {
         Boolean result = true;
         Connection connection = null;
         listener.stdout("开始连接:" + username + "@" + host);
         try {
             connection = new Connection(host);
-            connection.connect();// 连接
-            boolean login = connection.authenticateWithPublicKey(username, pemFile, null);// 认证
+            connection.connect(); // 连接
+            boolean login = connection.authenticateWithPublicKey(username, pemFile, null); // 认证
             if (login) {
                 listener.stdout(username + "@" + host + "; 登录成功");
             } else {
@@ -195,18 +195,18 @@ public class ShellSSH2Util {
         return result;
     }
 
-
     /**
      * 执行远程Shell命令
      *
-     * @param host        远程主机地址
-     * @param username    远程主机用户名
+     * @param host 远程主机地址
+     * @param username 远程主机用户名
      * @param pemFilePath 远程主机登录密钥路径
-     * @param cmd         执行的命令
-     * @param listener    标准输出监听器
-     * @return String               执行结果
+     * @param cmd 执行的命令
+     * @param listener 标准输出监听器
+     * @return String 执行结果
      */
-    public static String execmd(String host, String username, String pemFilePath, String cmd, StdoutListener listener) {
+    public static String execmd(
+            String host, String username, String pemFilePath, String cmd, StdoutListener listener) {
         File pemFile = new File(pemFilePath);
         Connection connection = login(host, username, pemFile, listener);
         return execmd(connection, cmd, listener);
@@ -215,30 +215,36 @@ public class ShellSSH2Util {
     /**
      * 执行远程Shell命令
      *
-     * @param host     远程主机地址
+     * @param host 远程主机地址
      * @param username 远程主机用户名
      * @param password 远程主机密码
-     * @param cmd      执行的命令
+     * @param cmd 执行的命令
      * @param listener 标准输出监听器
-     * @return String               执行结果
+     * @return String 执行结果
      */
-    public static String execmdByPwd(String host, int port, String username, String password, String cmd, StdoutListener listener) {
+    public static String execmdByPwd(
+            String host,
+            int port,
+            String username,
+            String password,
+            String cmd,
+            StdoutListener listener) {
         Connection connection = login(host, port, username, password, listener);
         return execmd(connection, cmd, listener);
     }
 
-
     /**
      * 执行远程Shell命令
      *
-     * @param host     远程主机地址
+     * @param host 远程主机地址
      * @param username 远程主机用户名
-     * @param pemFile  远程主机登录密钥
-     * @param cmd      执行的命令
+     * @param pemFile 远程主机登录密钥
+     * @param cmd 执行的命令
      * @param listener 标准输出监听器
-     * @return String               执行结果
+     * @return String 执行结果
      */
-    public static String execmd(String host, String username, File pemFile, String cmd, StdoutListener listener) {
+    public static String execmd(
+            String host, String username, File pemFile, String cmd, StdoutListener listener) {
         Connection connection = login(host, username, pemFile, listener);
         return execmd(connection, cmd, listener);
     }
@@ -252,7 +258,13 @@ public class ShellSSH2Util {
      * @param listener
      * @return
      */
-    public static String execmd(String host, int port, String username, File pemFile, String cmd, StdoutListener listener) {
+    public static String execmd(
+            String host,
+            int port,
+            String username,
+            File pemFile,
+            String cmd,
+            StdoutListener listener) {
         Connection connection = login(host, port, username, pemFile, listener);
         return execmd(connection, cmd, listener);
     }
@@ -268,32 +280,42 @@ public class ShellSSH2Util {
         Session session = null;
         try {
             if (connection != null) {
-                session = connection.openSession();// 打开一个会话
-                session.execCommand(cmd);// 执行命令
+                session = connection.openSession(); // 打开一个会话
+                session.execCommand(cmd); // 执行命令
 
                 // 使用线程池来管理输出读取线程
                 ExecutorService executorService = Executors.newFixedThreadPool(2);
 
                 // 读取标准输出
                 Session finalSession = session;
-                executorService.submit(() -> {
-                    String stdoutResult = processStdout(finalSession.getStdout(), DEFAULT_CHART, listener);
-                    listener.stdout("命令标准输出结果:\n");
-                    listener.stdout(stdoutResult);
-                    if (StringUtils.isBlank(stdoutResult)) {
-                        listener.stderr("得到标准输出为空, 链接conn:" + connection + ",执行的命令:" + cmd);
-
-                        listener.stderr("得到标准输出为空, 链接conn:" + connection + ",执行的命令:" + cmd + "; 错误信息:" + stdoutResult);
-                    } else {
-                        listener.stdout("执行命令成功, 链接conn:" + connection + ",执行的命令:" + cmd);
-                    }
-                });
+                executorService.submit(
+                        () -> {
+                            String stdoutResult =
+                                    processStdout(
+                                            finalSession.getStdout(), DEFAULT_CHART, listener);
+                            listener.stdout("命令标准输出结果:\n");
+                            listener.stdout(stdoutResult);
+                            if (StringUtils.isBlank(stdoutResult)) {
+                                listener.stderr("得到标准输出为空, 链接conn:" + connection + ",执行的命令:" + cmd);
+
+                                listener.stderr(
+                                        "得到标准输出为空, 链接conn:"
+                                                + connection
+                                                + ",执行的命令:"
+                                                + cmd
+                                                + "; 错误信息:"
+                                                + stdoutResult);
+                            } else {
+                                listener.stdout("执行命令成功, 链接conn:" + connection + ",执行的命令:" + cmd);
+                            }
+                        });
 
                 // 读取标准错误
                 Session finalSession1 = session;
-                executorService.submit(() -> {
-                    processStdout(finalSession1.getStderr(), DEFAULT_CHART, listener);
-                });
+                executorService.submit(
+                        () -> {
+                            processStdout(finalSession1.getStderr(), DEFAULT_CHART, listener);
+                        });
 
                 // 等待所有输出读取线程完成
                 executorService.shutdown();
@@ -320,13 +342,12 @@ public class ShellSSH2Util {
             }
         }
         return result;
-
     }
 
     /**
      * 解析脚本执行返回的结果集
      *
-     * @param in      输入流对象
+     * @param in 输入流对象
      * @param charset 编码
      * @return 以纯文本的格式返回
      */
@@ -362,22 +383,28 @@ public class ShellSSH2Util {
         String username = "ubuntu";
         File pemFile = new File("/Users/liyl/Desktop/jumpserver.pem");
         String cmd = "./sb abc T000 test37.advichcloud.com";
-        cmd = "mysql -h advich-wp-product-db.cqhn3c5h2mcz.us-west-2.rds.amazonaws.com -u admin -p Ew7MEm1EmJpDVvdK";
-//        cmd = "uname -a";
-        execmd(host, username, pemFile, cmd, new StdoutListener() {
-            @Override
-            public void stdout(String line) {
-                System.out.println("标准:" + line);
-                if ("ERROR:FILE_NAME IS EXISTS".equals(line)) {
-                    // TODO 已存在,退出
-                }
-            }
+        cmd =
+                "mysql -h advich-wp-product-db.cqhn3c5h2mcz.us-west-2.rds.amazonaws.com -u admin -p Ew7MEm1EmJpDVvdK";
+        //        cmd = "uname -a";
+        execmd(
+                host,
+                username,
+                pemFile,
+                cmd,
+                new StdoutListener() {
+                    @Override
+                    public void stdout(String line) {
+                        System.out.println("标准:" + line);
+                        if ("ERROR:FILE_NAME IS EXISTS".equals(line)) {
+                            // TODO 已存在,退出
+                        }
+                    }
 
-            @Override
-            public void stderr(String line) {
-                System.out.println("错误:" + line);
-            }
-        });
+                    @Override
+                    public void stderr(String line) {
+                        System.out.println("错误:" + line);
+                    }
+                });
         long currentTimeMillis1 = System.currentTimeMillis();
         System.out.println("花费时间:" + (currentTimeMillis1 - currentTimeMillis));
     }
@@ -403,8 +430,5 @@ public class ShellSSH2Util {
          * @param line 每行输出内容
          */
         void stderr(String line);
-
     }
-
-
 }

+ 23 - 49
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/common/util/SnowflakeIdUtil.java

@@ -1,74 +1,47 @@
 package org.jeecg.modules.adweb.common.util;
 
-
 import org.springframework.stereotype.Component;
 
 import java.util.Random;
 
-/**
- * 自动生成雪花唯一id
- */
+/** 自动生成雪花唯一id */
 @Component
 public class SnowflakeIdUtil {
 
-    /**
-     * 开始时间截 (2015-01-01)
-     */
+    /** 开始时间截 (2015-01-01) */
     private final long twepoch = 1420041600000L;
 
-    /**
-     * 机器id所占的位数
-     */
+    /** 机器id所占的位数 */
     private final long workerIdBits = 5L;
 
-    /**
-     * 数据标识id所占的位数
-     */
+    /** 数据标识id所占的位数 */
     private final long datacenterIdBits = 5L;
 
-    /**
-     * 支持的最大机器id,结果是31 (这个移位算法可以很快的计算出几位二进制数所能表示的最大十进制数)
-     */
+    /** 支持的最大机器id,结果是31 (这个移位算法可以很快的计算出几位二进制数所能表示的最大十进制数) */
     private final long maxWorkerId = -1L ^ (-1L << workerIdBits);
 
-    /**
-     * 支持的最大数据标识id,结果是31
-     */
+    /** 支持的最大数据标识id,结果是31 */
     private final long maxDatacenterId = -1L ^ (-1L << datacenterIdBits);
 
-    /**
-     * 序列在id中占的位数
-     */
+    /** 序列在id中占的位数 */
     private final long sequenceBits = 12L;
 
-    /**
-     * 机器ID向左移12位
-     */
+    /** 机器ID向左移12位 */
     private final long workerIdShift = sequenceBits;
 
-    /**
-     * 数据标识id向左移17位(12+5)
-     */
+    /** 数据标识id向左移17位(12+5) */
     private final long datacenterIdShift = sequenceBits + workerIdBits;
 
-    /**
-     * 时间截向左移22位(5+5+12)
-     */
+    /** 时间截向左移22位(5+5+12) */
     private final long timestampLeftShift = sequenceBits + workerIdBits + datacenterIdBits;
 
-    /**
-     * 生成序列的掩码,这里为4095 (0b111111111111=0xfff=4095)
-     */
+    /** 生成序列的掩码,这里为4095 (0b111111111111=0xfff=4095) */
     private final long sequenceMask = -1L ^ (-1L << sequenceBits);
 
-    /**
-     * 毫秒内序列(0~4095)
-     */
+    /** 毫秒内序列(0~4095) */
     private long sequence = 0L;
 
-    /**
-     * 上次生成ID的时间截
-     */
+    /** 上次生成ID的时间截 */
     private long lastTimestamp = -1L;
 
     /**
@@ -79,34 +52,36 @@ public class SnowflakeIdUtil {
     public synchronized long nextId() {
         long timestamp = timeGen();
 
-        //如果当前时间小于上一次ID生成的时间戳,说明系统时钟回退过这个时候应当抛出异常
+        // 如果当前时间小于上一次ID生成的时间戳,说明系统时钟回退过这个时候应当抛出异常
         if (timestamp < lastTimestamp) {
             throw new RuntimeException(
-                    String.format("Clock moved backwards.  Refusing to generate id for %d milliseconds", lastTimestamp - timestamp));
+                    String.format(
+                            "Clock moved backwards.  Refusing to generate id for %d milliseconds",
+                            lastTimestamp - timestamp));
         }
 
-        //如果是同一时间生成的,则进行毫秒内序列
+        // 如果是同一时间生成的,则进行毫秒内序列
         if (lastTimestamp == timestamp) {
             sequence = (sequence + 1) & sequenceMask;
-            //毫秒内序列溢出
+            // 毫秒内序列溢出
             if (sequence == 0) {
-                //阻塞到下一个毫秒,获得新的时间戳
+                // 阻塞到下一个毫秒,获得新的时间戳
                 timestamp = tilNextMillis(lastTimestamp);
             }
         }
-        //时间戳改变,毫秒内序列重置
+        // 时间戳改变,毫秒内序列重置
         else {
             sequence = 0L;
         }
 
-        //上次生成ID的时间截
+        // 上次生成ID的时间截
         lastTimestamp = timestamp;
 
         Random random = new Random();
         long workerId = random.nextInt(30);
         long datacenterId = random.nextInt(30);
 
-        //移位并通过或运算拼到一起组成64位的ID
+        // 移位并通过或运算拼到一起组成64位的ID
         return ((timestamp - twepoch) << timestampLeftShift) //
                 | (datacenterId << datacenterIdShift) //
                 | (workerId << workerIdShift) //
@@ -135,5 +110,4 @@ public class SnowflakeIdUtil {
     protected long timeGen() {
         return System.currentTimeMillis();
     }
-
 }

+ 6 - 0
jeecg-module-system/jeecg-system-start/README.md

@@ -1,3 +1,9 @@
+# 开发环境
+* Java 17
+* 安装 [google-java-format](https://plugins.jetbrains.com/plugin/8527-google-java-format) IDEA插件,在
+  **Settings** 中设置 `Android Open Source style`
+* 本地安装 [Redis](https://redis.io) & [MySQL](https://www.mysql.com)
+
 # 这个是单体启动项目
 - 项目: jeecg-module-system/jeecg-system-start
 - 启动类:jeecg-module-system/jeecg-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java