• mybits


    mybatis    XML   注解

    内部原理

    非 mybatis 操作数据库过程

    MyBatis 框架核心

    1.3 MyBatis的框架核心

    1、  mybatis配置文件,包括Mybatis全局配置文件和Mybatis映射文件,其中全局配置文件配置了数据源、事务等信息;映射文件配置了SQL执行相关的 信息。

    2、  mybatis通过读取配置文件信息(全局配置文件和映射文件),构造出SqlSessionFactory即会话工厂。

    3、  通过SqlSessionFactory,可以创建SqlSession即会话。Mybatis是通过SqlSession来操作数据库的。

    4、  SqlSession本身不能直接操作数据库,它是通过底层的Executor执行器接口来操作数据库的。Executor接口有两个实现类,一个是普通执行器,一个是缓存执行器(默认)

    5、  Executor执行器要处理的SQL信息是封装到一个底层对象MappedStatement中。该对象包括:SQL语句、输入参数映射信息、输出结果集映射信息。其中输入参数和输出结果的映射类型包括HashMap集合对象、POJO对象类型

     开发步骤

    1、  创建PO(model)类,根据需求创建;

    2、  创建全局配置文件SqlMapConfig.xml;

    3、  编写映射文件;

    4、  加载映射文件,在SqlMapConfig.xml中进行加载;

    5、  编写测试程序,即编写Java代码,连接并操作数据库。

             思路:

    a)         读取配置文件;

    b)        通过SqlSessionFactoryBuilder创建SqlSessionFactory会话工厂。

    c)         通过SqlSessionFactory创建SqlSession。

    d)        调用SqlSession的操作数据库方法。

    e)         关闭SqlSession。

    PO 类  model

    选择  lib  add  as Library

    mybatis一级缓存二级缓存

     

    一级缓存

      Mybatis对缓存提供支持,但是在没有配置的默认情况下,它只开启一级缓存,一级缓存只是相对于同一个SqlSession而言。所以在参数和SQL完全一样的情况下,我们使用同一个SqlSession对象调用一个Mapper方法,往往只执行一次SQL,因为使用SelSession第一次查询后,MyBatis会将其放在缓存中,以后再查询的时候,如果没有声明需要刷新,并且缓存没有超时的情况下,SqlSession都会取出当前缓存的数据,而不会再次发送SQL到数据库。

                  

      为什么要使用一级缓存,不用多说也知道个大概。但是还有几个问题我们要注意一下。

      1、一级缓存的生命周期有多长?

      a、MyBatis在开启一个数据库会话时,会 创建一个新的SqlSession对象,SqlSession对象中会有一个新的Executor对象。Executor对象中持有一个新的PerpetualCache对象;当会话结束时,SqlSession对象及其内部的Executor对象还有PerpetualCache对象也一并释放掉。

      b、如果SqlSession调用了close()方法,会释放掉一级缓存PerpetualCache对象,一级缓存将不可用。

      c、如果SqlSession调用了clearCache(),会清空PerpetualCache对象中的数据,但是该对象仍可使用。

      d、SqlSession中执行了任何一个update操作(update()、delete()、insert()) ,都会清空PerpetualCache对象的数据,但是该对象可以继续使用

        2、怎么判断某两次查询是完全相同的查询?

      mybatis认为,对于两次查询,如果以下条件都完全一样,那么就认为它们是完全相同的两次查询。

      2.1 传入的statementId

      2.2 查询时要求的结果集中的结果范围

      2.3. 这次查询所产生的最终要传递给JDBC java.sql.Preparedstatement的Sql语句字符串(boundSql.getSql() )

      2.4 传递给java.sql.Statement要设置的参数值

    二级缓存:

      MyBatis的二级缓存是Application级别的缓存,它可以提高对数据库查询的效率,以提高应用的性能。

      MyBatis的缓存机制整体设计以及二级缓存的工作模式

      

      SqlSessionFactory层面上的二级缓存默认是不开启的,二级缓存的开席需要进行配置,实现二级缓存的时候,MyBatis要求返回的POJO必须是可序列化的。 也就是要求实现Serializable接口,配置方法很简单,只需要在映射XML文件配置就可以开启缓存了<cache/>,如果我们配置了二级缓存就意味着:

    • 映射语句文件中的所有select语句将会被缓存。
    • 映射语句文件中的所欲insert、update和delete语句会刷新缓存。
    • 缓存会使用默认的Least Recently Used(LRU,最近最少使用的)算法来收回。
    • 根据时间表,比如No Flush Interval,(CNFI没有刷新间隔),缓存不会以任何时间顺序来刷新。
    • 缓存会存储列表集合或对象(无论查询方法返回什么)的1024个引用
    • 缓存会被视为是read/write(可读/可写)的缓存,意味着对象检索不是共享的,而且可以安全的被调用者修改,不干扰其他调用者或线程所做的潜在修改。

    实践:

    一、创建一个POJO Bean并序列化

      由于二级缓存的数据不一定都是存储到内存中,它的存储介质多种多样,所以需要给缓存的对象执行序列化。(如果存储在内存中的话,实测不序列化也可以的。)

    复制代码
    package com.yihaomen.mybatis.model;
    
    import com.yihaomen.mybatis.enums.Gender;
    import java.io.Serializable;
    import java.util.List;
    
    /**
     *  @ProjectName: springmvc-mybatis 
     */
    public class Student implements Serializable{
    
        private static final long serialVersionUID = 735655488285535299L;
        private String id;
        private String name;
        private int age;
        private Gender gender;
        private List<Teacher> teachers;
    setters&getters()....; toString(); }
    复制代码

     二、在映射文件中开启二级缓存

    复制代码
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
            "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
    <mapper namespace="com.yihaomen.mybatis.dao.StudentMapper">
        <!--开启本mapper的namespace下的二级缓存-->
        <!--
            eviction:代表的是缓存回收策略,目前MyBatis提供以下策略。
            (1) LRU,最近最少使用的,一处最长时间不用的对象
            (2) FIFO,先进先出,按对象进入缓存的顺序来移除他们
            (3) SOFT,软引用,移除基于垃圾回收器状态和软引用规则的对象
            (4) WEAK,弱引用,更积极的移除基于垃圾收集器状态和弱引用规则的对象。这里采用的是LRU,
                    移除最长时间不用的对形象
    
            flushInterval:刷新间隔时间,单位为毫秒,这里配置的是100秒刷新,如果你不配置它,那么当
            SQL被执行的时候才会去刷新缓存。
    
            size:引用数目,一个正整数,代表缓存最多可以存储多少个对象,不宜设置过大。设置过大会导致内存溢出。
            这里配置的是1024个对象
    
            readOnly:只读,意味着缓存数据只能读取而不能修改,这样设置的好处是我们可以快速读取缓存,缺点是我们没有
            办法修改缓存,他的默认值是false,不允许我们修改
        -->
        <cache eviction="LRU" flushInterval="100000" readOnly="true" size="1024"/>
        <resultMap id="studentMap" type="Student">
            <id property="id" column="id" />
            <result property="name" column="name" />
            <result property="age" column="age" />
            <result property="gender" column="gender" typeHandler="org.apache.ibatis.type.EnumOrdinalTypeHandler" />
        </resultMap>
        <resultMap id="collectionMap" type="Student" extends="studentMap">
            <collection property="teachers" ofType="Teacher">
                <id property="id" column="teach_id" />
                <result property="name" column="tname"/>
                <result property="gender" column="tgender" typeHandler="org.apache.ibatis.type.EnumOrdinalTypeHandler"/>
                <result property="subject" column="tsubject" typeHandler="org.apache.ibatis.type.EnumTypeHandler"/>
                <result property="degree" column="tdegree" javaType="string" jdbcType="VARCHAR"/>
            </collection>
        </resultMap>
        <select id="selectStudents" resultMap="collectionMap">
            SELECT
                s.id, s.name, s.gender, t.id teach_id, t.name tname, t.gender tgender, t.subject tsubject, t.degree tdegree
            FROM
                student s
            LEFT JOIN
                stu_teach_rel str
            ON
                s.id = str.stu_id
            LEFT JOIN
                teacher t
            ON
                t.id = str.teach_id
        </select>
        <!--可以通过设置useCache来规定这个sql是否开启缓存,ture是开启,false是关闭-->
        <select id="selectAllStudents" resultMap="studentMap" useCache="true">
            SELECT id, name, age FROM student
        </select>
        <!--刷新二级缓存
        <select id="selectAllStudents" resultMap="studentMap" flushCache="true">
            SELECT id, name, age FROM student
        </select>
        -->
    </mapper>
    复制代码

    三、在 mybatis-config.xml中开启二级缓存

    复制代码
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
            "http://mybatis.org/dtd/mybatis-3-config.dtd">
    <configuration>
        <settings>
            <!--这个配置使全局的映射器(二级缓存)启用或禁用缓存-->
            <setting name="cacheEnabled" value="true" />
            .....
        </settings>
        ....
    </configuration>
    复制代码

    四、测试

    复制代码
    package com.yihaomen.service.student;
    
    import com.yihaomen.mybatis.dao.StudentMapper;
    import com.yihaomen.mybatis.model.Student;
    import com.yihaomen.mybatis.model.Teacher;
    import com.yihaomen.service.BaseTest;
    import org.apache.ibatis.session.SqlSession;
    import org.apache.ibatis.session.SqlSessionFactory;
    import java.util.List;
    
    /**
     *   
     *  @ProjectName: springmvc-mybatis 
     */
    public class TestStudent extends BaseTest {
    
        public static void selectAllStudent() {
            SqlSessionFactory sqlSessionFactory = getSession();
            SqlSession session = sqlSessionFactory.openSession();
            StudentMapper mapper = session.getMapper(StudentMapper.class);
            List<Student> list = mapper.selectAllStudents();
            System.out.println(list);
            System.out.println("第二次执行");
            List<Student> list2 = mapper.selectAllStudents();
            System.out.println(list2);
            session.commit();
            System.out.println("二级缓存观测点");
            SqlSession session2 = sqlSessionFactory.openSession();
            StudentMapper mapper2 = session2.getMapper(StudentMapper.class);
            List<Student> list3 = mapper2.selectAllStudents();
            System.out.println(list3);
            System.out.println("第二次执行");
            List<Student> list4 = mapper2.selectAllStudents();
            System.out.println(list4);
            session2.commit();
    
        }
    
        public static void main(String[] args) {
            selectAllStudent();
        }
    }
    复制代码

    结果:

    [QC] DEBUG [main] org.apache.ibatis.transaction.jdbc.JdbcTransaction.setDesiredAutoCommit(98) | Setting autocommit to false on JDBC Connection [com.mysql.jdbc.JDBC4Connection@51e0173d]
    [QC] DEBUG [main] org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(139) | ==> Preparing: SELECT id, name, age FROM student 
    [QC] DEBUG [main] org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(139) | ==> Parameters: 
    [QC] DEBUG [main] org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(139) | <== Total: 6
    [Student{id='1', name='刘德华', age=55, gender=null, teachers=null}, Student{id='2', name='张惠妹', age=49, gender=null, teachers=null}, Student{id='3', name='谢霆锋', age=35, gender=null, teachers=null}, Student{id='4', name='王菲', age=47, gender=null, teachers=null}, Student{id='5', name='汪峰', age=48, gender=null, teachers=null}, Student{id='6', name='章子怡', age=36, gender=null, teachers=null}]
    第二次执行
    [QC] DEBUG [main] org.apache.ibatis.cache.decorators.LoggingCache.getObject(62) | Cache Hit Ratio [com.yihaomen.mybatis.dao.StudentMapper]: 0.0
    [Student{id='1', name='刘德华', age=55, gender=null, teachers=null}, Student{id='2', name='张惠妹', age=49, gender=null, teachers=null}, Student{id='3', name='谢霆锋', age=35, gender=null, teachers=null}, Student{id='4', name='王菲', age=47, gender=null, teachers=null}, Student{id='5', name='汪峰', age=48, gender=null, teachers=null}, Student{id='6', name='章子怡', age=36, gender=null, teachers=null}]
    二级缓存观测点
    [QC] DEBUG [main] org.apache.ibatis.cache.decorators.LoggingCache.getObject(62) | Cache Hit Ratio [com.yihaomen.mybatis.dao.StudentMapper]: 0.3333333333333333
    [Student{id='1', name='刘德华', age=55, gender=null, teachers=null}, Student{id='2', name='张惠妹', age=49, gender=null, teachers=null}, Student{id='3', name='谢霆锋', age=35, gender=null, teachers=null}, Student{id='4', name='王菲', age=47, gender=null, teachers=null}, Student{id='5', name='汪峰', age=48, gender=null, teachers=null}, Student{id='6', name='章子怡', age=36, gender=null, teachers=null}]
    第二次执行
    [QC] DEBUG [main] org.apache.ibatis.cache.decorators.LoggingCache.getObject(62) | Cache Hit Ratio [com.yihaomen.mybatis.dao.StudentMapper]: 0.5
    [Student{id='1', name='刘德华', age=55, gender=null, teachers=null}, Student{id='2', name='张惠妹', age=49, gender=null, teachers=null}, Student{id='3', name='谢霆锋', age=35, gender=null, teachers=null}, Student{id='4', name='王菲', age=47, gender=null, teachers=null}, Student{id='5', name='汪峰', age=48, gender=null, teachers=null}, Student{id='6', name='章子怡', age=36, gender=null, teachers=null}]

    Process finished with exit code 0

    我们可以从结果看到,sql只执行了一次,证明我们的二级缓存生效了。

    https://gitee.com/huayicompany/springmvc-mybatis

    参考:

    [1]杨开振 著,《深入浅出MyBatis技术原理与实战》, 电子工业出版社,2016.09

    [2]博客,http://blog.csdn.net/luanlouis/article/details/41280959

    [3]博客,http://www.cnblogs.com/QQParadise/articles/5109633.html

    [4]博客,http://blog.csdn.net/isea533/article/details/44566257

     
    分类: MyBatis
    标签: mybatis
    好文要顶 
    Connected to the target VM, address: '127.0.0.1:3888', transport: 'socket'
    
    ////////////////////////////////////////////////////////////////////
    //                          _ooOoo_                               //
    //                         o8888888o                              //
    //                         88" . "88                              //
    //                         (| ^_^ |)                              //
    //                         O  =  /O                              //
    //                      ____/`---'\____                           //
    //                    .'  \|     |//  `.                         //
    //                   /  \|||  :  |||//                          //
    //                  /  _||||| -:- |||||-                         //
    //                  |   | \  -  /// |   |                       //
    //                  | \_|  ''---/''  |   |                       //
    //                    .-\__  `-`  ___/-. /                       //
    //                ___`. .'  /--.--  `. . ___                     //
    //              ."" '<  `.___\_<|>_/___.'  >'"".                  //
    //            | | :  `- \`.;` _ /`;.`/ - ` : | |                 //
    //               `-.   \_ __ /__ _/   .-` /  /                 //
    //      ========`-.____`-.___\_____/___.-`____.-'========         //
    //                           `=---='                              //
    //      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^        //
    //        _______________   Hello World   _______________         //
    ////////////////////////////////////////////////////////////////////
    2020-09-28 13:11:13  INFO 18052 --- [           main] com.topwulian.ServerApplication          : Starting ServerApplication on SUJIE10 with PID 18052 (C:UserssujieDesktopgitJasongitfarmnowjavaFarm	argetclasses started by sujie in C:UserssujieDesktopgitJasongitfarmnowjavaFarm)
    2020-09-28 13:11:13  INFO 18052 --- [           main] com.topwulian.ServerApplication          : The following profiles are active: dev
    2020-09-28 13:11:14  INFO 18052 --- [           main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4097cac: startup date [Mon Sep 28 13:11:14 CST 2020]; root of context hierarchy
    2020-09-28 13:11:23  INFO 18052 --- [           main] o.s.b.f.s.DefaultListableBeanFactory     : Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/error/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=cn.afterturn.easypoi.configuration.EasyPoiAutoConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [cn/afterturn/easypoi/configuration/EasyPoiAutoConfiguration.class]]
    2020-09-28 13:11:24  INFO 18052 --- [           main] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode!
    2020-09-28 13:11:27  INFO 18052 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'shiroConfig' of type [com.topwulian.config.ShiroConfig$$EnhancerBySpringCGLIB$$7589baec] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    2020-09-28 13:11:28  INFO 18052 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'ehCacheConfig' of type [com.topwulian.config.EhCacheConfig$$EnhancerBySpringCGLIB$$d065ae5a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    2020-09-28 13:11:31  INFO 18052 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'ehCacheManager' of type [org.apache.shiro.cache.ehcache.EhCacheManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    2020-09-28 13:11:34  INFO 18052 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'hashedCredentialsMatcher' of type [org.apache.shiro.authc.credential.HashedCredentialsMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    2020-09-28 13:11:35  INFO 18052 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'myShiroRealm' of type [com.topwulian.config.MyShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    2020-09-28 13:11:35  INFO 18052 --- [           main] o.a.shiro.cache.ehcache.EhCacheManager   : Cache with name 'com.topwulian.config.MyShiroRealm.authorizationCache' does not yet exist.  Creating now.
    2020-09-28 13:11:35  INFO 18052 --- [           main] o.a.shiro.cache.ehcache.EhCacheManager   : Added EhCache named [com.topwulian.config.MyShiroRealm.authorizationCache]
    2020-09-28 13:11:35  INFO 18052 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    2020-09-28 13:11:35  INFO 18052 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    2020-09-28 13:11:35  INFO 18052 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$ff0b5122] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
    2020-09-28 13:11:43  INFO 18052 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 9076 (http)
    2020-09-28 13:11:43  INFO 18052 --- [           main] o.a.coyote.http11.Http11NioProtocol      : Initializing ProtocolHandler ["http-nio-9076"]
    2020-09-28 13:11:43  INFO 18052 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
    2020-09-28 13:11:43  INFO 18052 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet Engine: Apache Tomcat/8.5.32
    2020-09-28 13:11:43  INFO 18052 --- [ost-startStop-1] o.a.catalina.core.AprLifecycleListener   : The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [C:Program FilesJavajdk1.8.0_211in;C:WINDOWSSunJavain;C:WINDOWSsystem32;C:WINDOWS;C:Program FilesBaslerpylon 4pyloninx64;C:Program FilesBaslerpylon 4pyloninWin32;C:Program FilesBaslerpylon 4genicamBinWin64_x64;C:Program FilesBaslerpylon 4genicamBinWin32_i86;C:Program FilesOracle;C:Oracle;C:Python27;C:Python27Scripts;C:Program FilesMicrosoft MPIBin;C:Program FilesRA2HP;C:WINDOWSsystem32;C:WINDOWS;C:WINDOWSSystem32Wbem;C:WINDOWSSystem32WindowsPowerShellv1.0;C:Program FilesMicrosoft SQL Server120ToolsBinn;C:Appsvnin;C:APPVisualSVNin;C:Program FilesIntelWiFiin;C:Program FilesCommon FilesIntelWirelessCommon;C:SSDPCARDin;C:SSDPCARDoraclein;C:Program FilesJavajdk1.8.0_211lib;C:Program FilesJavajdk1.8.0_211libdt.jar;C:Program FilesJavajdk1.8.0_211lib	ools.jar;C:Appapache-maven-3.5.3-binin;"C:Appapache-tomcat-9.0.6lib;C:Appapache-tomcat-9.0.6in";C:Program FilesJavajdk1.8.0_211in;C:Program FilesMicrosoft SQL ServerClient SDKODBC130ToolsBinn;C:Program Files (x86)Microsoft SQL Server140ToolsBinn;C:Program FilesMicrosoft SQL Server140ToolsBinn;C:Program FilesMicrosoft SQL Server140DTSBinn;C:Program FilesMicrosoft SQL Server120DTSBinn;C:Program FilesMicrosoft SQL ServerClient SDKODBC110ToolsBinn;C:Program Files (x86)Microsoft SQL Server120ToolsBinn;C:Program Files (x86)Microsoft SQL Server120ToolsBinnManagementStudio;C:Program Files (x86)Microsoft SQL Server120DTSBinn;C:Program FilesMVTecHALCON-18.11-Steadyinx64-win64;C:Program Files (x86)WinMerge;C:Program FilesSourceGearCommonDiffMerge;C:Program Files (x86)Micro FocusUnified Functional Testingin;C:Program FilesGitcmd;C:Program Filesdotnet;C:Program FilesMicrosoft SQL ServerClient SDKODBC170ToolsBinn;D:soft-down1-ikvmbin-7.2.4630.5ikvm-7.2.4630.5in;C:App
    odejs;C:ProgramDatachocolateyin;C:WINDOWSSystem32OpenSSH;C:Program FilesMicrosoft SQL Server130ToolsBinn;C:Appsdk	ools;C:Appsdkplatform-tools;C:Appgradlegradle-3.4.1in;C:SSDPCARDin;C:SSDPCARDoraclein;C:Program FilesPuTTY;C:SSDPCARDin;C:SSDPCARDoraclein;C:Program FilesRedis;C:Appapache-activemq-5.16.0-binapache-activemq-5.16.0;D:APPopencvexopencvuildx64vc15in;;C:SSDPCARDin;C:SSDPCARDoraclein;C:UserssujieAppDataLocalMicrosoftWindowsApps;C:APPMicrosoft VS Codein;C:UserssujieAppDataLocalGitHubDesktopin;C:Program FilesJetBrainsIntelliJ IDEA 2019.1.1in;;C:UserssujieAppDataRoaming
    pm;C:ApppythonPyCharm Community Edition 2019.2.4in;;C:UserssujieAppDataLocalMicrosoftWindowsApps;;C:Program FilesJetBrainsIntelliJ IDEA Community Edition 2019.3.3in;;.]
    2020-09-28 13:11:45  INFO 18052 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
    2020-09-28 13:11:45  INFO 18052 --- [ost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 31123 ms
    2020-09-28 13:11:47  INFO 18052 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Servlet dispatcherServlet mapped to [/]
    2020-09-28 13:11:47  INFO 18052 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Servlet statViewServlet mapped to [/druid/*]
    2020-09-28 13:11:47  INFO 18052 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'characterEncodingFilter' to: [/*]
    2020-09-28 13:11:47  INFO 18052 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
    2020-09-28 13:11:47  INFO 18052 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'httpPutFormContentFilter' to: [/*]
    2020-09-28 13:11:47  INFO 18052 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'requestContextFilter' to: [/*]
    2020-09-28 13:11:47  INFO 18052 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'webStatFilter' to urls: [/*]
    2020-09-28 13:11:47  INFO 18052 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'shirFilter' to: [/*]
    2020-09-28 13:11:49  INFO 18052 --- [           main] c.a.d.s.b.a.DruidDataSourceAutoConfigure : Init DruidDataSource
    2020-09-28 13:11:52  INFO 18052 --- [           main] com.alibaba.druid.pool.DruidDataSource   : {dataSource-1} inited
    2020-09-28 13:12:10  INFO 18052 --- [           main] org.quartz.impl.StdSchedulerFactory      : Using default implementation for ThreadExecutor
    2020-09-28 13:12:11  INFO 18052 --- [           main] org.quartz.core.SchedulerSignalerImpl    : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
    2020-09-28 13:12:11  INFO 18052 --- [           main] org.quartz.core.QuartzScheduler          : Quartz Scheduler v.2.3.0 created.
    2020-09-28 13:12:11  INFO 18052 --- [           main] o.s.s.quartz.LocalDataSourceJobStore     : Using db table-based data access locking (synchronization).
    2020-09-28 13:12:11  INFO 18052 --- [           main] o.s.s.quartz.LocalDataSourceJobStore     : JobStoreCMT initialized.
    2020-09-28 13:12:11  INFO 18052 --- [           main] org.quartz.core.QuartzScheduler          : Scheduler meta-data: Quartz Scheduler (v2.3.0) 'adminQuartzScheduler' with instanceId 'SUJIE101601269930786'
      Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
      NOT STARTED.
      Currently in standby mode.
      Number of jobs executed: 0
      Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
      Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered.
    
    2020-09-28 13:12:11  INFO 18052 --- [           main] org.quartz.impl.StdSchedulerFactory      : Quartz scheduler 'adminQuartzScheduler' initialized from an externally provided properties instance.
    2020-09-28 13:12:11  INFO 18052 --- [           main] org.quartz.impl.StdSchedulerFactory      : Quartz scheduler version: 2.3.0
    2020-09-28 13:12:11  INFO 18052 --- [           main] org.quartz.core.QuartzScheduler          : JobFactory set to: org.springframework.scheduling.quartz.AdaptableJobFactory@37393dab
    2020-09-28 13:12:12  WARN 18052 --- [           main] f.a.AutowiredAnnotationBeanPostProcessor : Autowired annotation should only be used on methods with parameters: public java.util.List com.topwulian.controller.PressureController.findAll()
    ------------  NettyServerHandler init -----NettyServerHandler.java--!!!!
    ------------  NettyServerHandler init over ---NettyServerHandler.java----!!!!
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/devices/{id}],methods=[GET]}" onto public com.topwulian.model.Device com.topwulian.controller.DeviceController.get(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/devices],methods=[PUT]}" onto public com.topwulian.model.Device com.topwulian.controller.DeviceController.update(com.topwulian.model.Device)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/devices/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.DeviceController.delete(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/devices],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.DeviceController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/devices],methods=[POST]}" onto public com.topwulian.model.Device com.topwulian.controller.DeviceController.save(com.topwulian.model.Device)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/devices/devicesState],methods=[GET]}" onto public java.util.Map com.topwulian.controller.DeviceController.devicesState(com.topwulian.page.table.PageTableRequest,java.lang.String)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/devices/realTimeData],methods=[GET]}" onto public java.util.List<com.topwulian.model.DeviceGather> com.topwulian.controller.DeviceController.realTimeData(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceGathers/{id}],methods=[GET]}" onto public com.topwulian.model.DeviceGather com.topwulian.controller.DeviceGatherController.get(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceGathers],methods=[PUT]}" onto public com.topwulian.model.DeviceGather com.topwulian.controller.DeviceGatherController.update(com.topwulian.model.DeviceGather)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceGathers/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.DeviceGatherController.delete(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceGathers],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.DeviceGatherController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceGathers],methods=[POST]}" onto public com.topwulian.model.DeviceGather com.topwulian.controller.DeviceGatherController.save(com.topwulian.model.DeviceGather)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceGathers/load]}" onto public void com.topwulian.controller.DeviceGatherController.downloadByPoiBaseView(org.springframework.ui.ModelMap,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceGathers/echartsShow]}" onto public java.util.Map<java.lang.Long, java.util.List<com.topwulian.dto.DeviceGatherCharts>> com.topwulian.controller.DeviceGatherController.echartsShow(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceLogs/{id}],methods=[GET]}" onto public com.topwulian.model.DeviceLog com.topwulian.controller.DeviceLogController.get(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceLogs],methods=[PUT]}" onto public com.topwulian.model.DeviceLog com.topwulian.controller.DeviceLogController.update(com.topwulian.model.DeviceLog)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceLogs/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.DeviceLogController.delete(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceLogs],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.DeviceLogController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceLogs],methods=[POST]}" onto public com.topwulian.model.DeviceLog com.topwulian.controller.DeviceLogController.save(com.topwulian.model.DeviceLog)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceLogs/deviceNotice],methods=[GET]}" onto public java.util.List<com.topwulian.model.DeviceLog> com.topwulian.controller.DeviceLogController.deviceNotice()
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceTypes/{id}],methods=[GET]}" onto public com.topwulian.model.DeviceType com.topwulian.controller.DeviceTypeController.get(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceTypes],methods=[PUT]}" onto public com.topwulian.model.DeviceType com.topwulian.controller.DeviceTypeController.update(com.topwulian.model.DeviceType)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceTypes/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.DeviceTypeController.delete(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceTypes],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.DeviceTypeController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceTypes],methods=[POST]}" onto public com.topwulian.model.DeviceType com.topwulian.controller.DeviceTypeController.save(com.topwulian.model.DeviceType)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/deviceTypes/all],methods=[GET]}" onto public java.util.Map<java.lang.String, java.lang.Object> com.topwulian.controller.DeviceTypeController.getAllDeviceType()
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/dicts/{id}],methods=[GET]}" onto public com.topwulian.model.Dict com.topwulian.controller.DictController.get(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/dicts],methods=[PUT]}" onto public com.topwulian.model.Dict com.topwulian.controller.DictController.update(com.topwulian.model.Dict)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/dicts/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.DictController.delete(java.lang.Long)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/dicts],methods=[GET],params=[start && length]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.DictController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/dicts],methods=[POST]}" onto public com.topwulian.model.Dict com.topwulian.controller.DictController.save(com.topwulian.model.Dict)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/dicts],methods=[GET],params=[type]}" onto public java.util.List<com.topwulian.model.Dict> com.topwulian.controller.DictController.listByType(java.lang.String)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/excels/sql-count],methods=[POST]}" onto public java.lang.Integer com.topwulian.controller.ExcelController.checkSql(java.lang.String)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/excels/show-datas],methods=[POST]}" onto public java.util.List<java.lang.Object[]> com.topwulian.controller.ExcelController.showData(java.lang.String)
    2020-09-28 13:12:17  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/excels],methods=[POST]}" onto public void com.topwulian.controller.ExcelController.downloadExcel(java.lang.String,java.lang.String,javax.servlet.http.HttpServletResponse)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/farms/{id}],methods=[GET]}" onto public com.topwulian.model.Farm com.topwulian.controller.FarmController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/farms],methods=[PUT]}" onto public com.topwulian.model.Farm com.topwulian.controller.FarmController.update(com.topwulian.model.Farm)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/farms/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.FarmController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/farms],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.FarmController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/farms],methods=[POST]}" onto public com.topwulian.model.Farm com.topwulian.controller.FarmController.save(com.topwulian.model.Farm)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/farms],methods=[GET],params=[userId]}" onto public java.util.List<com.topwulian.model.Farm> com.topwulian.controller.FarmController.farms(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/farms/all],methods=[GET]}" onto public java.util.List<com.topwulian.model.Farm> com.topwulian.controller.FarmController.farms()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/farms/info/{noticeRows}/{deviceLogRows}],methods=[GET]}" onto public com.topwulian.dto.FarmDto com.topwulian.controller.FarmController.farmInfo(java.lang.Integer,java.lang.Integer)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/files/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.FileController.delete(java.lang.String)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/files/layui],methods=[POST]}" onto public java.util.Map<java.lang.String, java.lang.Object> com.topwulian.controller.FileController.uploadLayui(org.springframework.web.multipart.MultipartFile,java.lang.String) throws java.lang.Exception
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/files],methods=[GET]}" onto public com.topwulian.page.Page<com.topwulian.model.FileInfo> com.topwulian.controller.FileController.findFiles(java.util.Map<java.lang.String, java.lang.Object>)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/files],methods=[POST]}" onto public com.topwulian.model.FileInfo com.topwulian.controller.FileController.upload(org.springframework.web.multipart.MultipartFile,java.lang.String) throws java.lang.Exception
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/generate],methods=[POST]}" onto public void com.topwulian.controller.GenerateController.save(com.topwulian.dto.GenerateInput)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/generate],methods=[GET],params=[tableName]}" onto public com.topwulian.dto.GenerateDetail com.topwulian.controller.GenerateController.generateByTableName(java.lang.String)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/humiditys/{id}],methods=[GET]}" onto public com.topwulian.model.Humidity com.topwulian.controller.HumidityController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/humiditys],methods=[PUT]}" onto public com.topwulian.model.Humidity com.topwulian.controller.HumidityController.update(com.topwulian.model.Humidity)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/humiditys/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.HumidityController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/humiditys],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.HumidityController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/humiditys],methods=[POST]}" onto public com.topwulian.model.Humidity com.topwulian.controller.HumidityController.save(com.topwulian.model.Humidity)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/humiditys/switch/{alert_value}],methods=[POST]}" onto public com.topwulian.dto.ResponseInfo com.topwulian.controller.HumidityController.switchHumidity(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/humiditys/findAll],methods=[GET]}" onto public java.util.List<com.topwulian.model.Humidity> com.topwulian.controller.HumidityController.findAll()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/jobs],methods=[POST]}" onto public void com.topwulian.controller.JobController.add(com.topwulian.model.JobModel)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/jobs],methods=[PUT]}" onto public void com.topwulian.controller.JobController.update(com.topwulian.model.JobModel)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/jobs/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.JobController.delete(java.lang.Long) throws org.quartz.SchedulerException
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/jobs],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.JobController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/jobs/{id}],methods=[GET]}" onto public com.topwulian.model.JobModel com.topwulian.controller.JobController.getById(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/jobs],methods=[GET],params=[cron]}" onto public boolean com.topwulian.controller.JobController.checkCron(java.lang.String)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/jobs/beans/{name}],methods=[GET]}" onto public java.util.Set<java.lang.String> com.topwulian.controller.JobController.listMethodName(java.lang.String)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/jobs/beans],methods=[GET]}" onto public java.util.List<java.lang.String> com.topwulian.controller.JobController.listAllBeanName()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/sys/login],methods=[POST]}" onto public void com.topwulian.controller.LoginController.login(java.lang.String,java.lang.String)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/sys/login/restful],methods=[POST]}" onto public com.topwulian.dto.Token com.topwulian.controller.LoginController.restfulLogin(java.lang.String,java.lang.String)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/sys/login],methods=[GET]}" onto public com.topwulian.model.User com.topwulian.controller.LoginController.getLoginInfo()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/mails/{id}],methods=[GET]}" onto public com.topwulian.model.Mail com.topwulian.controller.MailController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/mails],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.MailController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/mails],methods=[POST]}" onto public com.topwulian.model.Mail com.topwulian.controller.MailController.save(com.topwulian.model.Mail)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/mails/{id}/to],methods=[GET]}" onto public java.util.List<com.topwulian.model.MailTo> com.topwulian.controller.MailController.getMailTo(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/measurementUnits/{id}],methods=[GET]}" onto public com.topwulian.model.MeasurementUnit com.topwulian.controller.MeasurementUnitController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/measurementUnits],methods=[PUT]}" onto public com.topwulian.model.MeasurementUnit com.topwulian.controller.MeasurementUnitController.update(com.topwulian.model.MeasurementUnit)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/measurementUnits/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.MeasurementUnitController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/measurementUnits],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.MeasurementUnitController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/measurementUnits],methods=[POST]}" onto public com.topwulian.model.MeasurementUnit com.topwulian.controller.MeasurementUnitController.save(com.topwulian.model.MeasurementUnit)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/notices/{id}],methods=[GET]}" onto public com.topwulian.model.Notice com.topwulian.controller.NoticeController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/notices/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.NoticeController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/notices/recentlyNotice/{rows}],methods=[GET]}" onto public java.util.List<com.topwulian.model.Notice> com.topwulian.controller.NoticeController.recentlyNotice(java.lang.Integer)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/notices],methods=[PUT]}" onto public com.topwulian.model.Notice com.topwulian.controller.NoticeController.updateNotice(com.topwulian.model.Notice)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/notices],methods=[POST]}" onto public com.topwulian.model.Notice com.topwulian.controller.NoticeController.saveNotice(com.topwulian.model.Notice)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/notices/published],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.NoticeController.listNoticeReadVO(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/notices],methods=[GET],params=[id]}" onto public com.topwulian.dto.NoticeVO com.topwulian.controller.NoticeController.readNotice(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/notices/count-unread],methods=[GET]}" onto public java.lang.Integer com.topwulian.controller.NoticeController.countUnread()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/notices],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.NoticeController.listNotice(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/notices/2],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.NoticeController.listTwoNotice(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/permissions/{id}],methods=[GET]}" onto public com.topwulian.model.Permission com.topwulian.controller.PermissionController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/permissions],methods=[PUT]}" onto public void com.topwulian.controller.PermissionController.update(com.topwulian.model.Permission)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/permissions/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.PermissionController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/permissions],methods=[POST]}" onto public void com.topwulian.controller.PermissionController.save(com.topwulian.model.Permission)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/permissions/current],methods=[GET]}" onto public java.util.List<com.topwulian.model.Permission> com.topwulian.controller.PermissionController.permissionsCurrent()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/permissions],methods=[GET]}" onto public java.util.List<com.topwulian.model.Permission> com.topwulian.controller.PermissionController.permissionsList()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/permissions/parents],methods=[GET]}" onto public java.util.List<com.topwulian.model.Permission> com.topwulian.controller.PermissionController.parentMenu()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/permissions/all],methods=[GET]}" onto public com.alibaba.fastjson.JSONArray com.topwulian.controller.PermissionController.permissionsAll()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/permissions],methods=[GET],params=[roleId]}" onto public java.util.List<com.topwulian.model.Permission> com.topwulian.controller.PermissionController.listByRoleId(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/permissions/owns],methods=[GET]}" onto public java.util.Set<java.lang.String> com.topwulian.controller.PermissionController.ownsPermission()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pm25s/{id}],methods=[GET]}" onto public com.topwulian.model.Pm25 com.topwulian.controller.Pm25Controller.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pm25s],methods=[PUT]}" onto public com.topwulian.model.Pm25 com.topwulian.controller.Pm25Controller.update(com.topwulian.model.Pm25)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pm25s/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.Pm25Controller.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pm25s],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.Pm25Controller.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pm25s],methods=[POST]}" onto public com.topwulian.model.Pm25 com.topwulian.controller.Pm25Controller.save(com.topwulian.model.Pm25)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pm25s/findAll],methods=[GET]}" onto public java.util.List<com.topwulian.model.Pm25> com.topwulian.controller.Pm25Controller.findAll()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pm25s/switch/{alert_value}],methods=[POST]}" onto public com.topwulian.dto.ResponseInfo com.topwulian.controller.Pm25Controller.switchPm25(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pressures/{id}],methods=[GET]}" onto public com.topwulian.model.Pressure com.topwulian.controller.PressureController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pressures],methods=[PUT]}" onto public com.topwulian.model.Pressure com.topwulian.controller.PressureController.update(com.topwulian.model.Pressure)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pressures/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.PressureController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pressures],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.PressureController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pressures],methods=[POST]}" onto public com.topwulian.model.Pressure com.topwulian.controller.PressureController.save(com.topwulian.model.Pressure)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pressures/findAll],methods=[GET]}" onto public java.util.List<com.topwulian.model.Pressure> com.topwulian.controller.PressureController.findAll()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/pressures/switch/{alert_value}],methods=[POST]}" onto public com.topwulian.dto.ResponseInfo com.topwulian.controller.PressureController.switchPressure(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/productBatchess/{id}],methods=[GET]}" onto public com.topwulian.model.ProductBatches com.topwulian.controller.ProductBatchesController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/productBatchess],methods=[PUT]}" onto public com.topwulian.model.RespEntiry com.topwulian.controller.ProductBatchesController.update(org.springframework.web.multipart.MultipartFile,com.topwulian.model.ProductBatches,javax.servlet.http.HttpServletRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/productBatchess/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.ProductBatchesController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/productBatchess],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.ProductBatchesController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/productBatchess],methods=[POST]}" onto public com.topwulian.model.RespEntiry com.topwulian.controller.ProductBatchesController.save(org.springframework.web.multipart.MultipartFile[],javax.servlet.http.HttpServletRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/productBatchess/productBatchList],methods=[GET]}" onto public java.util.List<java.util.Map<java.lang.String, java.lang.Object>> com.topwulian.controller.ProductBatchesController.getProductBatchList()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/productBatchess/productBatchListByActive],methods=[GET]}" onto public java.util.List<java.util.Map<java.lang.String, java.lang.Object>> com.topwulian.controller.ProductBatchesController.productBatchListByActive()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/productBatchess/updateImg]}" onto public com.topwulian.model.RespEntiry com.topwulian.controller.ProductBatchesController.updateNoImg(com.topwulian.model.ProductBatches,javax.servlet.http.HttpServletRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/remote_control/switch/irrigation_pump/{alert_value}],methods=[POST]}" onto public com.topwulian.dto.ResponseInfo com.topwulian.controller.RemoteControlController.switchIrrigationPump(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/remote_control/switch/twyer/{alert_value}],methods=[POST]}" onto public com.topwulian.dto.ResponseInfo com.topwulian.controller.RemoteControlController.switchTwyer(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/remote_control/switch/shade_net/{alert_value}],methods=[POST]}" onto public com.topwulian.dto.ResponseInfo com.topwulian.controller.RemoteControlController.switchShadeNet(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/remote_control/switch/oxygen_pump/{alert_value}],methods=[POST]}" onto public com.topwulian.dto.ResponseInfo com.topwulian.controller.RemoteControlController.switchOxygenPump(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/roles/{id}],methods=[GET]}" onto public com.topwulian.model.Role com.topwulian.controller.RoleController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/roles/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.RoleController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/roles/all],methods=[GET]}" onto public java.util.List<com.topwulian.model.Role> com.topwulian.controller.RoleController.roles()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/roles],methods=[GET],params=[userId]}" onto public java.util.List<com.topwulian.model.Role> com.topwulian.controller.RoleController.roles(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/roles],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.RoleController.listRoles(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/roles],methods=[POST]}" onto public void com.topwulian.controller.RoleController.saveRole(com.topwulian.dto.RoleDto)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/logs],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.SysLogsController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/sysYs7Accounts/{id}],methods=[GET]}" onto public com.topwulian.model.SysYs7Account com.topwulian.controller.SysYs7AccountController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/sysYs7Accounts],methods=[PUT]}" onto public com.topwulian.model.SysYs7Account com.topwulian.controller.SysYs7AccountController.update(com.topwulian.model.SysYs7Account)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/sysYs7Accounts/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.SysYs7AccountController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/sysYs7Accounts],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.SysYs7AccountController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/sysYs7Accounts],methods=[POST]}" onto public com.topwulian.model.SysYs7Account com.topwulian.controller.SysYs7AccountController.save(com.topwulian.model.SysYs7Account)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/temperatures/{id}],methods=[GET]}" onto public com.topwulian.model.Temperature com.topwulian.controller.TemperatureController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/temperatures],methods=[PUT]}" onto public com.topwulian.model.Temperature com.topwulian.controller.TemperatureController.update(com.topwulian.model.Temperature)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/temperatures/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.TemperatureController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/temperatures],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.TemperatureController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/temperatures],methods=[POST]}" onto public com.topwulian.model.Temperature com.topwulian.controller.TemperatureController.save(com.topwulian.model.Temperature)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/temperatures/findAll],methods=[GET]}" onto public java.util.List<com.topwulian.model.Temperature> com.topwulian.controller.TemperatureController.findAll()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducters/{id}],methods=[GET]}" onto public com.topwulian.model.TProducter com.topwulian.controller.TProducterController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducters],methods=[PUT]}" onto public com.topwulian.model.TProducter com.topwulian.controller.TProducterController.update(com.topwulian.model.TProducter)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducters/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.TProducterController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducters],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.TProducterController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducters],methods=[POST]}" onto public com.topwulian.model.RespEntiry com.topwulian.controller.TProducterController.save(com.topwulian.model.TProducter)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducters/getProducterList],methods=[GET]}" onto java.util.List<java.util.Map<java.lang.String, java.lang.Object>> com.topwulian.controller.TProducterController.getProducterList()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducterTypes/{id}],methods=[GET]}" onto public com.topwulian.model.TProducterType com.topwulian.controller.TProducterTypeController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducterTypes],methods=[PUT]}" onto public com.topwulian.model.TProducterType com.topwulian.controller.TProducterTypeController.update(com.topwulian.model.TProducterType)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducterTypes/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.TProducterTypeController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducterTypes],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.TProducterTypeController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tProducterTypes],methods=[POST]}" onto public com.topwulian.model.TProducterType com.topwulian.controller.TProducterTypeController.save(com.topwulian.model.TProducterType)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/{id}],methods=[GET]}" onto public com.topwulian.model.TTask com.topwulian.controller.TTaskController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks],methods=[PUT]}" onto public com.topwulian.model.TTask com.topwulian.controller.TTaskController.update(com.topwulian.model.TTask)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.TTaskController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.TTaskController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks],methods=[POST]}" onto public com.topwulian.model.TTask com.topwulian.controller.TTaskController.save(com.topwulian.model.TTask)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/listByProducterId]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.TTaskController.listByProducterId(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/productBatchList/{product_batches_id}],methods=[GET]}" onto java.util.List<java.util.Map<java.lang.String, java.lang.Object>> com.topwulian.controller.TTaskController.getProductBatchList(java.lang.Integer)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/mobile]}" onto com.topwulian.model.RespEntiry com.topwulian.controller.TTaskController.mobile(java.lang.String,java.lang.String)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/imgList]}" onto com.topwulian.model.RespEntiry com.topwulian.controller.TTaskController.imgList(java.lang.Integer)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/pull],methods=[POST]}" onto public com.topwulian.model.RespEntiry com.topwulian.controller.TTaskController.pullTask(java.util.Map<java.lang.String, java.lang.String>)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/push],methods=[POST]}" onto public com.topwulian.model.RespEntiry com.topwulian.controller.TTaskController.pushTask(java.util.Map<java.lang.String, java.lang.String>)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/listByBatchId]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.TTaskController.listByBatchId(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/success],methods=[GET]}" onto public com.topwulian.model.RespEntiry com.topwulian.controller.TTaskController.pcSuccess(int,int)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/producterIdCount]}" onto com.topwulian.model.RespEntiry com.topwulian.controller.TTaskController.producterIdCount(java.lang.Integer,java.lang.Integer)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/tTasks/producterIdList]}" onto com.topwulian.model.RespEntiry com.topwulian.controller.TTaskController.producterIdList(java.lang.Integer,java.lang.Integer,int,int)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{userId}],methods=[DELETE]}" onto public void com.topwulian.controller.UserController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{id}],methods=[GET]}" onto public com.topwulian.model.User com.topwulian.controller.UserController.user(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/associateFarm],methods=[PUT]}" onto public com.topwulian.model.User com.topwulian.controller.UserController.associateFarmForUser(com.topwulian.dto.UserDto)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/current],methods=[GET]}" onto public com.topwulian.model.User com.topwulian.controller.UserController.currentUser()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users],methods=[PUT]}" onto public com.topwulian.model.User com.topwulian.controller.UserController.updateUser(com.topwulian.dto.UserDto)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users/{username}],methods=[PUT]}" onto public void com.topwulian.controller.UserController.changePassword(java.lang.String,java.lang.String,java.lang.String)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users],methods=[PUT],params=[headImgUrl]}" onto public void com.topwulian.controller.UserController.updateHeadImgUrl(java.lang.String)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.UserController.listUsers(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users],methods=[POST]}" onto public com.topwulian.model.User com.topwulian.controller.UserController.saveUser(com.topwulian.dto.UserDto)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/vedios/{id}],methods=[GET]}" onto public com.topwulian.model.Vedio com.topwulian.controller.VedioController.get(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/vedios],methods=[PUT]}" onto public com.topwulian.model.Vedio com.topwulian.controller.VedioController.update(com.topwulian.model.Vedio)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/vedios/{id}],methods=[DELETE]}" onto public void com.topwulian.controller.VedioController.delete(java.lang.Long)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/vedios],methods=[GET]}" onto public com.topwulian.page.table.PageTableResponse com.topwulian.controller.VedioController.list(com.topwulian.page.table.PageTableRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/vedios],methods=[POST]}" onto public com.topwulian.model.Vedio com.topwulian.controller.VedioController.save(com.topwulian.model.Vedio)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/vedios/savePic],methods=[GET]}" onto public void com.topwulian.controller.VedioController.capture(java.lang.String) throws java.lang.Exception
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/vedios/vedioListByUserId],methods=[GET]}" onto public java.util.List<com.topwulian.model.Vedio> com.topwulian.controller.VedioController.vedioListByUserId()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/wxlogin/login]}" onto public com.topwulian.model.RespEntiry com.topwulian.controller.WxLoginController.login(java.util.Map<java.lang.String, java.lang.String>)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources/configuration/security]}" onto public org.springframework.http.ResponseEntity<springfox.documentation.swagger.web.SecurityConfiguration> springfox.documentation.swagger.web.ApiResourceController.securityConfiguration()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources]}" onto public org.springframework.http.ResponseEntity<java.util.List<springfox.documentation.swagger.web.SwaggerResource>> springfox.documentation.swagger.web.ApiResourceController.swaggerResources()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources/configuration/ui]}" onto public org.springframework.http.ResponseEntity<springfox.documentation.swagger.web.UiConfiguration> springfox.documentation.swagger.web.ApiResourceController.uiConfiguration()
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
    2020-09-28 13:12:18  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
    2020-09-28 13:12:20  INFO 18052 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService  'taskExecutor'
    2020-09-28 13:12:20  INFO 18052 --- [           main] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
    2020-09-28 13:12:22  INFO 18052 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
    2020-09-28 13:12:24  INFO 18052 --- [           main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4097cac: startup date [Mon Sep 28 13:11:14 CST 2020]; root of context hierarchy
    2020-09-28 13:12:25  INFO 18052 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
    2020-09-28 13:12:25  INFO 18052 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
    2020-09-28 13:12:25  INFO 18052 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/files/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
    2020-09-28 13:12:25  INFO 18052 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/statics/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
    2020-09-28 13:12:25  INFO 18052 --- [           main] .m.m.a.ExceptionHandlerExceptionResolver : Detected @ExceptionHandler methods in exceptionHandlerAdvice
    2020-09-28 13:12:25  INFO 18052 --- [           main] o.s.b.a.w.s.WelcomePageHandlerMapping    : Adding welcome page: class path resource [static/index.html]
    2020-09-28 13:12:29  INFO 18052 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
    2020-09-28 13:12:29  INFO 18052 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'statFilter' has been autodetected for JMX exposure
    2020-09-28 13:12:29  INFO 18052 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'dataSource' has been autodetected for JMX exposure
    2020-09-28 13:12:29  INFO 18052 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Located MBean 'dataSource': registering with JMX server as MBean [com.alibaba.druid.spring.boot.autoconfigure:name=dataSource,type=DruidDataSourceWrapper]
    2020-09-28 13:12:29  INFO 18052 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Located MBean 'statFilter': registering with JMX server as MBean [com.alibaba.druid.filter.stat:name=statFilter,type=StatFilter]
    2020-09-28 13:12:29  INFO 18052 --- [           main] o.s.c.support.DefaultLifecycleProcessor  : Starting beans in phase 2147483647
    2020-09-28 13:12:29  INFO 18052 --- [           main] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
    2020-09-28 13:12:29  INFO 18052 --- [           main] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
    2020-09-28 13:12:30  INFO 18052 --- [           main] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
    2020-09-28 13:12:32  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_1
    2020-09-28 13:12:32  WARN 18052 --- [           main] s.d.s.w.r.p.ParameterDataTypeReader      : Trying to infer dataType org.springframework.ui.ModelMap
    2020-09-28 13:12:32  WARN 18052 --- [           main] s.d.s.w.r.p.ParameterDataTypeReader      : Trying to infer dataType org.springframework.ui.ModelMap
    2020-09-28 13:12:32  WARN 18052 --- [           main] s.d.s.w.r.p.ParameterDataTypeReader      : Trying to infer dataType org.springframework.ui.ModelMap
    2020-09-28 13:12:33  WARN 18052 --- [           main] s.d.s.w.r.p.ParameterDataTypeReader      : Trying to infer dataType org.springframework.ui.ModelMap
    2020-09-28 13:12:33  WARN 18052 --- [           main] s.d.s.w.r.p.ParameterDataTypeReader      : Trying to infer dataType org.springframework.ui.ModelMap
    2020-09-28 13:12:33  WARN 18052 --- [           main] s.d.s.w.r.p.ParameterDataTypeReader      : Trying to infer dataType org.springframework.ui.ModelMap
    2020-09-28 13:12:33  WARN 18052 --- [           main] s.d.s.w.r.p.ParameterDataTypeReader      : Trying to infer dataType org.springframework.ui.ModelMap
    2020-09-28 13:12:33  WARN 18052 --- [           main] s.d.s.w.r.p.ParameterDataTypeReader      : Trying to infer dataType org.springframework.ui.ModelMap
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_1
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_1
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_1
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_1
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_2
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_2
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_2
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_2
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_2
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_3
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_3
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_3
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_3
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_3
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_4
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_4
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_4
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_4
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_4
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_5
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: farmsUsingGET_1
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_5
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_5
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_5
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_5
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_6
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_6
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_7
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_6
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_6
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_7
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_6
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_8
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_7
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_7
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_7
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_8
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_8
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_9
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_8
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_9
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_9
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_8
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_10
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_9
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_11
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_10
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_10
    2020-09-28 13:12:33  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_9
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_12
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findAllUsingGET_1
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_11
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_10
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_11
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_10
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_13
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findAllUsingGET_2
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_12
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_11
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_12
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_11
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_14
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_13
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_12
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_13
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_12
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_15
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_14
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: rolesUsingGET_1
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_13
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_16
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_15
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_14
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_14
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_13
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_17
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_16
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_15
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_15
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_14
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_18
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_17
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_16
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_16
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_15
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_19
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_18
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getProductBatchListUsingGET_1
    2020-09-28 13:12:34  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_17
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_17
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_16
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_20
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: findAllUsingGET_3
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_19
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_18
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_18
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_17
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_21
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: deleteUsingDELETE_22
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: getUsingGET_20
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: listUsingGET_19
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: saveUsingPOST_19
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: updateUsingPUT_18
    2020-09-28 13:12:35  INFO 18052 --- [           main] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: loginUsingPOST_1
    2020-09-28 13:12:36  INFO 18052 --- [           main] o.s.s.quartz.SchedulerFactoryBean        : Will start Quartz Scheduler [adminQuartzScheduler] in 10 seconds
    2020-09-28 13:12:39  INFO 18052 --- [           main] s.a.ScheduledAnnotationBeanPostProcessor : No TaskScheduler/ScheduledExecutorService bean found for scheduled processing
    ------------  NettyServer start  initNetty  over ---NettyServer.java----!!!!
    ------------  NettyServer udp  initNetty  over ---NettyUdpServer.java----!!!!
    2020-09-28 13:12:39  INFO 18052 --- [           main] o.a.coyote.http11.Http11NioProtocol      : Starting ProtocolHandler ["http-nio-9076"]
    2020-09-28 13:12:39  INFO 18052 --- [           main] o.a.tomcat.util.net.NioSelectorPool      : Using a shared selector for servlet write/read
    2020-09-28 13:12:39  INFO 18052 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring FrameworkServlet 'dispatcherServlet'
    2020-09-28 13:12:39  INFO 18052 --- [           main] o.s.web.servlet.DispatcherServlet        : FrameworkServlet 'dispatcherServlet': initialization started
    2020-09-28 13:12:40  INFO 18052 --- [           main] o.s.web.servlet.DispatcherServlet        : FrameworkServlet 'dispatcherServlet': initialization completed in 161 ms
    2020-09-28 13:12:40  INFO 18052 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 9076 (http) with context path ''
    2020-09-28 13:12:40  INFO 18052 --- [           main] com.topwulian.ServerApplication          : Started ServerApplication in 88.713 seconds (JVM running for 92.937)
    ------------  NettyServer start  initNetty --ServerApplication.java-----SpringBoot Main
    ------------  ========================start==================  ----!!!!
    ------------ com.topwulian.NewUdp.NewUdpServerOne ===================== redisTemplate ok =====================  ----!!!!
    ------------  ========================start==================  ----!!!!
    ------------  ========================start==================  ----!!!!
    2020-09-28 13:12:40  INFO 18052 --- [ taskExecutor-2] com.topwulian.NewTcp.NewTcpServerTwo     : Netty Server start
    ------------  ========================sync==================  ----!!!!
    2020-09-28 13:12:40  INFO 18052 --- [ taskExecutor-1] com.topwulian.NewTcp.NewTcpServerOne     : Netty Server start
    ------------  ========================sync==================  ----!!!!
    2020-09-28 13:12:40  INFO 18052 --- [ taskExecutor-3] com.topwulian.NewUdp.NewUdpServerOne     : Netty Server start
    ------------  ========================sync==================  ----!!!!
    2020-09-28 13:12:43  INFO 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : JMS message listener invoker needs to establish shared Connection
    2020-09-28 13:12:44  INFO 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : JMS message listener invoker needs to establish shared Connection
    2020-09-28 13:12:44 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=0, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:12:45 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=0, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:12:46  INFO 18052 --- [uartzScheduler]] o.s.s.quartz.SchedulerFactoryBean        : Starting Quartz Scheduler now, after delay of 10 seconds
    2020-09-28 13:12:46  INFO 18052 --- [uartzScheduler]] o.s.s.quartz.LocalDataSourceJobStore     : ClusterManager: detected 1 failed or restarted instances.
    2020-09-28 13:12:46  INFO 18052 --- [uartzScheduler]] o.s.s.quartz.LocalDataSourceJobStore     : ClusterManager: Scanning for instance "SUJIE101601193840450"'s failed in-progress jobs.
    2020-09-28 13:12:46  INFO 18052 --- [uartzScheduler]] org.quartz.core.QuartzScheduler          : Scheduler adminQuartzScheduler_$_SUJIE101601269930786 started.
    ------------  =========================9073 Udp sync over =================  ----!!!!
    ------------  =========================9071 Tcp sync over =================  ----!!!!
    ------------  =========================9072 Tcp  sync over =================  ----!!!!
    2020-09-28 13:12:50 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=1, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:12:51 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=1, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    =======================================redisTemplate is null==========================================
    49204c6f7665205169516920466f726576657221
     session id 00000000000000e0-00004684-00000002-211d58b019a8a81b-398b9e10
    get data from udp +++++++++++++++++++  40-- 49204c6f7665205169516920466f726576657221   ===================        
    =======================================redisTemplate is null==========================================
    49204c6f7665205169516920466f726576657221
     session id 00000000000000e0-00004684-00000002-211d58b019a8a81b-398b9e10
    get data from udp +++++++++++++++++++  40-- 49204c6f7665205169516920466f726576657221   ===================        
    2020-09-28 13:13:02 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=2, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:13:02 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=2, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:13:02  INFO 18052 --- [pool-1-thread-1] io.lettuce.core.EpollProvider            : Starting without optional epoll library
    2020-09-28 13:13:02  INFO 18052 --- [pool-1-thread-1] io.lettuce.core.KqueueProvider           : Starting without optional kqueue library
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:13:08 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=3, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:13:08 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=3, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    =======================================redisTemplate is null==========================================
    49204c6f7665205169516920466f726576657221
     session id 00000000000000e0-00004684-00000002-211d58b019a8a81b-398b9e10
    get data from udp +++++++++++++++++++  40-- 49204c6f7665205169516920466f726576657221   ===================        
    2020-09-28 13:13:14 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=4, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:13:14 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=4, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    =======================================redisTemplate is null==========================================
    2020-09-28 13:13:32 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=5, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    49204c6f7665205169516920466f726576657221
    2020-09-28 13:13:33 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=5, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
     session id 00000000000000e0-00004684-00000002-211d58b019a8a81b-398b9e10
    get data from udp +++++++++++++++++++  40-- 49204c6f7665205169516920466f726576657221   ===================        
    =======================================redisTemplate is null==========================================
    2020-09-28 13:13:45 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=6, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    49204c6f7665205169516920466f726576657221
     session id 00000000000000e0-00004684-00000002-211d58b019a8a81b-398b9e10
    get data from udp +++++++++++++++++++  40-- 49204c6f7665205169516920466f726576657221   ===================        
    =======================================redisTemplate is null==========================================
    49204c6f7665205169516920466f726576657221
     session id 00000000000000e0-00004684-00000002-211d58b019a8a81b-398b9e10
    get data from udp +++++++++++++++++++  40-- 49204c6f7665205169516920466f726576657221   ===================        
    =======================================redisTemplate is null==========================================
    49204c6f7665205169516920466f726576657221
     session id 00000000000000e0-00004684-00000002-211d58b019a8a81b-398b9e10
    get data from udp +++++++++++++++++++  40-- 49204c6f7665205169516920466f726576657221   ===================        
    2020-09-28 13:13:57 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=6, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:14:00 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=7, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:03 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=7, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:06 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=8, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:09 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=8, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:12 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=9, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:15 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=9, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:18 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=10, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:21 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=10, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:25 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=11, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:27 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=11, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:31 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=12, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:33 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=12, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:37 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=13, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:39 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=13, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:43 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=14, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:45 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=14, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:49 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=15, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:51 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=15, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:55 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=16, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:14:57 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=16, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:15:01 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=17, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:03 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=17, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:07 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=18, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:09 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=18, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:13 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=19, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:15 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=19, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:19 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=20, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:21 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=20, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:25 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=21, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:27 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=21, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:31 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=22, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:33 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=22, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:37 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=23, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:39 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=23, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:43 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=24, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:45 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=24, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:49 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=25, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:51 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=25, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:55 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=26, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:15:57 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=26, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:16:01 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=27, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:03 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=27, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:07 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=28, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:09 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=28, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:13 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=29, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:15 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=29, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:19 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=30, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:21 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=30, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:25 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=31, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:27 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=31, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:31 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=32, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:33 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=32, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:37 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=33, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:39 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=33, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:43 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=34, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:45 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=34, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:49 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=35, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:51 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=35, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:55 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=36, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:16:57 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=36, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:17:01 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=37, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:03 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=37, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:07 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=38, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:09 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=38, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:13 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=39, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:15 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=39, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:19 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=40, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:21 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=40, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:25 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=41, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:27 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=41, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:31 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=42, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:33 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=42, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:37 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=43, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:39 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=43, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:43 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=44, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:45 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=44, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:49 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=45, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:51 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=45, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:55 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=46, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:17:57 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=46, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:18:01 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=47, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:03 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=47, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:07 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=48, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:09 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=48, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:13 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=49, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:15 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=49, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:19 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=50, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:21 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=50, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:25 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=51, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:27 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=51, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:31 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=52, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:33 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=52, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:37 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=53, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:39 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=53, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:43 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=54, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:45 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=54, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:49 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=55, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:51 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=55, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:55 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=56, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:18:57 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=56, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:19:01 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=57, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:03 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=57, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:07 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=58, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:09 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=58, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:13 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=59, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:15 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=59, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:19 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=60, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:21 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=60, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:25 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=61, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:27 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=61, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:31 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=62, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:33 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=62, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:37 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=63, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:40 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=63, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:43 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=64, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:46 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=64, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:49 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=65, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:52 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=65, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:55 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=66, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:19:58 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=66, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:20:01 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=67, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:04 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=67, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:07 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=68, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:10 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=68, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:13 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=69, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:16 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=69, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:19 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=70, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:22 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=70, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:25 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=71, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:28 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=71, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:31 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=72, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:34 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=72, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:37 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=73, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:40 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=73, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:43 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=74, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:46 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=74, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:49 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=75, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:52 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=75, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:55 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=76, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:20:58 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=76, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:21:01 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=77, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:04 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=77, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:07 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=78, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:10 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=78, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:13 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=79, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:16 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=79, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:19 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=80, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:22 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=80, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:25 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=81, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:28 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=81, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:31 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=82, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:34 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=82, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:37 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=83, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:40 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=83, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:43 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=84, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:46 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=84, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:49 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=85, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:52 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=85, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:55 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=86, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:21:58 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=86, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:22:01 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=87, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:04 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=87, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:07 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=88, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:10 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=88, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:13 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=89, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:16 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=89, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:19 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=90, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:22 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=90, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:25 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=91, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:28 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=91, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:32 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=92, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:34 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=92, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:38 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=93, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:40 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=93, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:44 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=94, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:46 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=94, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:50 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=95, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:52 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=95, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:56 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=96, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:22:58 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=96, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    2020-09-28 13:23:02 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=97, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:04 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=97, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:08 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=98, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:10 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=98, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:14 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=99, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:16 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=99, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:20 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=100, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:22 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=100, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:26 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=101, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:28 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=101, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:32 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=102, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:34 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'queue_gather' - retrying using FixedBackOff{interval=5000, currentAttempts=102, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:38 ERROR 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Could not refresh JMS Connection for destination 'device_threshold_alerm' - retrying using FixedBackOff{interval=5000, currentAttempts=103, maxAttempts=unlimited}. Cause: Could not connect to broker URL: tcp://localhost:61616. Reason: java.net.ConnectException: Connection refused: connect
    2020-09-28 13:23:40  INFO 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Successfully refreshed JMS Connection
    2020-09-28 13:23:43  INFO 18052 --- [enerContainer-1] o.s.j.l.DefaultMessageListenerContainer  : Successfully refreshed JMS Connection
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 24 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 24 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    device redis Add = Device 16 value 100.0 Device 17 value 20.0 Device 18 value 50.0 Device 23 value 90.0 Device 24 value 60.0 Device 25 value 40.0 Device 32 value 70.0 Device 9 value 22.0 
    0
    

      

  • 相关阅读:
    用bash脚本统计代码行数
    Winform应用程序实现通用消息窗口
    文件管理工具“三剑客” #Everything #SpaceSniffer #Clover
    Jenkins pipeline:pipeline 语法详解
    Android studio安装教程
    恶意代码分析实战 shellcode分析 lab 191 192 193 整体来说 对汇编代码的分析要求较高 因为没法直接反编译为C代码看
    恶意代码分析实战 加壳与脱壳 lab 181 182 183 184 185 手动脱壳和自动脱壳操作
    恶意代码分析实战 IDA分析 lab 73 一个通过感染主机exe 修改kernel.dll为恶意dll的后门程序 要做清理的话 是很难的!
    恶意代码分析实战 隐蔽的恶意代码启动 lab121 122 123 124 进程注入、进程替换、hook procmon监控os api调用不行 数据分析还是要sysmon
    恶意代码分析实战 ollydbg使用来了 Lab 91 92 93
  • 原文地址:https://www.cnblogs.com/2eggs/p/13745222.html
Copyright © 2020-2023  润新知