NutzCN Logo
问答 nutzboot ioc 失败
发布于 2059天前 作者 daydayup 2413 次浏览 复制 上一个帖子 下一个帖子
标签:
package cn.wizzer.app.cms.modules.services.impl;

import cn.wizzer.app.cms.modules.models.Cms_test;
import cn.wizzer.app.cms.modules.services.CmsTestService;
import cn.wizzer.app.member.modules.services.MemberService;
import cn.wizzer.framework.base.service.BaseServiceImpl;
import com.alibaba.dubbo.config.annotation.Reference;
import com.alibaba.dubbo.config.annotation.Service;
import org.nutz.aop.interceptor.ioc.TransAop;
import org.nutz.dao.Dao;
import org.nutz.integration.jedis.RedisService;
import org.nutz.ioc.Ioc;
import org.nutz.ioc.aop.Aop;
import org.nutz.ioc.loader.annotation.Inject;
import org.nutz.ioc.loader.annotation.IocBean;
import org.springframework.jms.core.JmsTemplate;
import org.springframework.jms.core.MessageCreator;

import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.Session;

/**
 * Created by haigo on 2018/6/9.
 */
@IocBean(args = {"refer:dao"})
@Service(interfaceClass = CmsTestService.class)
public class CmsTestServiceImpl extends BaseServiceImpl<Cms_test> implements CmsTestService {
    public CmsTestServiceImpl(Dao dao) {
        super(dao);
    }

    @Inject
    private RedisService redisService;

    @Inject
    @Reference(check = false)
    private MemberService memberService;

    @Inject("refer:$ioc")
    private Ioc ioc;


    @Override
    @Aop(TransAop.READ_COMMITTED)
    public void Test() {
        JmsTemplate jmsTemplate=ioc.get(JmsTemplate.class, "activeMqJmsTemplate");
        String destination = jmsTemplate.getDefaultDestinationName();
        System.out.println(Thread.currentThread().getName()+" 向队列"+destination+"发送消息---------------------->"+"xx");
        jmsTemplate.send(new MessageCreator() {
            public Message createMessage(Session session) throws JMSException {
                return session.createTextMessage("xx");
            }
        });
    }


56 回复
var ioc = {
    conf : {
        type : "org.nutz.ioc.impl.PropertiesProxy",
        fields : {
            paths : ["/"]
        }
    },
    targetConnectionFactory : {
        type : "org.apache.activemq.ActiveMQConnectionFactory",
        fields : {
            brokerURL : {java:"$conf.get('mq.brokerURL')"},
            userName : {java:"$conf.get('mq.userName')"},
            password : {java:"$conf.get('mq.password')"}
        }
    },
    pooledConnectionFactory : {
        type : "org.apache.activemq.pool.PooledConnectionFactory",
        fields : {
            connectionFactory : {refer : 'targetConnectionFactory'},
            maxConnections : {java:"$conf.get('mq.pool.maxConnections')"}
        }
    },
    connectionFactory : {
        type : "org.springframework.jms.connection.SingleConnectionFactory",
        fields : {
            targetConnectionFactory : {refer : 'pooledConnectionFactory'}
        }
    },
    activeMqJmsTemplate : {
        type : "org.springframework.jms.core.JmsTemplate",
        fields : {
            connectionFactory : {refer : 'connectionFactory'},
            defaultDestinationName : {java:"$conf.get('queueName')"}
        }
    },
    sessionAwareQueue : {
        type : "org.apache.activemq.command.ActiveMQQueue",
        args : [ 'forwage.mq.wage' ]
    },
    consumerSessionAwareMessageListener : {
        type : "cn.wizzer.app.cms.commons.activemq.ConsumerSessionAwareMessageListener"
    },
    sessionAwareListenerContainer : {
        type : "org.springframework.jms.listener.DefaultMessageListenerContainer",
        fields : {
            connectionFactory : {refer : 'connectionFactory'},
            destination : {refer : 'sessionAwareQueue'},
            messageListener : {refer : 'consumerSessionAwareMessageListener'}
        },
        events : {
            create : "initialize"
        }
    }

}

[DEBUG] 22:04:20.119 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - >> Make...'targetConnectionFactory'<>
[DEBUG] 22:04:20.119 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'targetConnectionFactory' to [app] [DEBUG] 22:04:20.127 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.ActiveMQConnectionFactory without AOP
[DEBUG] 22:04:20.194 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[INFO ] 22:04:20.195 org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:61) - Fail to value by setter
java.lang.NullPointerException
at java.net.URI$Parser.parse(URI.java:3042)
at java.net.URI.(URI.java:588)
at org.apache.activemq.ActiveMQConnectionFactory.createURI(ActiveMQConnectionFactory.java:174)
at org.apache.activemq.ActiveMQConnectionFactory.setBrokerURL(ActiveMQConnectionFactory.java:367)
at org.apache.activemq.ActiveMQConnectionFactory$FM$setBrokerURL$fa63426f4fc49dc4e24f788aa0c1567c.invoke(ActiveMQConnectionFactory.java)
at org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:51)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:33)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:271)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl.Test(CmsTestServiceImpl.java:47)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP._aop_invoke(CmsTestServiceImpl.java:1)
at org.nutz.aop.InterceptorChain.invoke(InterceptorChain.java:77)
at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:57)
at org.nutz.aop.interceptor.TransactionInterceptor.filter(TransactionInterceptor.java:34)
at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:60)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP.Test(CmsTestServiceImpl.java:1)
at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController.test1(ApiTestTokenController.java:34)
at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController$FM$test1$da810e841258c3a84ae9124e6d872cd8.invoke(ApiTestTokenController.java)
at org.nutz.mvc.impl.processor.MethodInvokeProcessor.process(MethodInvokeProcessor.java:31)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.AdaptorProcessor.process(AdaptorProcessor.java:38)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.ActionFiltersProcessor.process(ActionFiltersProcessor.java:58)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.ModuleProcessor.process(ModuleProcessor.java:123)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.EncodingProcessor.process(EncodingProcessor.java:27)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.UpdateRequestAttributesProcessor.process(UpdateRequestAttributesProcessor.java:15)
at org.nutz.mvc.impl.NutActionChain.doChain(NutActionChain.java:44)
at org.nutz.mvc.impl.ActionInvoker.invoke(ActionInvoker.java:67)
at org.nutz.mvc.ActionHandler.handle(ActionHandler.java:31)
at org.nutz.mvc.NutFilter.doFilter(NutFilter.java:202)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.nutz.mvc.WhaleFilter.doFilter(WhaleFilter.java:171)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1634)
at org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter.doFilter(WebSocketUpgradeFilter.java:215)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:533)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:146)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:548)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:257)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1595)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:255)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1317)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:203)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:473)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1564)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:201)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1219)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:144)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.Server.handle(Server.java:531)
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:352)
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:260)
at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:281)
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:102)
at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:118)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:762)
at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:680)
at java.lang.Thread.run(Thread.java:748)
[DEBUG] 22:04:20.198 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'targetConnectionFactory' from [app] [DEBUG] 22:04:20.199 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'pooledConnectionFactory' from [app] [DEBUG] 22:04:20.199 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'connectionFactory' from [app] [DEBUG] 22:04:20.199 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'activeMqJmsTemplate' from [app] [WARN ] 22:04:20.200 org.nutz.mvc.impl.processor.FailProcessor.process(FailProcessor.java:28) - Error@/open/api/test/test1 :
org.nutz.ioc.IocException: IocBean[activeMqJmsTemplate] throw Exception when creating
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:271)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl.Test(CmsTestServiceImpl.java:47)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP._aop_invoke(CmsTestServiceImpl.java:1)
at org.nutz.aop.InterceptorChain.invoke(InterceptorChain.java:77)
at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:57)
at org.nutz.aop.interceptor.TransactionInterceptor.filter(TransactionInterceptor.java:34)
at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:60)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP.Test(CmsTestServiceImpl.java:1)
at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController.test1(ApiTestTokenController.java:34)
at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController$FM$test1$da810e841258c3a84ae9124e6d872cd8.invoke(ApiTestTokenController.java)
at org.nutz.mvc.impl.processor.MethodInvokeProcessor.process(MethodInvokeProcessor.java:31)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.AdaptorProcessor.process(AdaptorProcessor.java:38)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.ActionFiltersProcessor.process(ActionFiltersProcessor.java:58)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.ModuleProcessor.process(ModuleProcessor.java:123)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.EncodingProcessor.process(EncodingProcessor.java:27)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.UpdateRequestAttributesProcessor.process(UpdateRequestAttributesProcessor.java:15)
at org.nutz.mvc.impl.NutActionChain.doChain(NutActionChain.java:44)
at org.nutz.mvc.impl.ActionInvoker.invoke(ActionInvoker.java:67)
at org.nutz.mvc.ActionHandler.handle(ActionHandler.java:31)
at org.nutz.mvc.NutFilter.doFilter(NutFilter.java:202)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.nutz.mvc.WhaleFilter.doFilter(WhaleFilter.java:171)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1634)
at org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter.doFilter(WebSocketUpgradeFilter.java:215)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:533)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:146)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:548)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:257)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1595)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:255)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1317)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:203)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:473)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1564)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:201)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1219)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:144)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.Server.handle(Server.java:531)
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:352)
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:260)
at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:281)
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:102)
at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:118)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:762)
at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:680)
at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.RuntimeException: IocBean[activeMqJmsTemplate] fail at field=[connectionFactory]
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
... 57 more
Caused by: org.nutz.ioc.IocException: IocBean[connectionFactory] throw Exception when creating
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
... 59 more
Caused by: java.lang.RuntimeException: IocBean[connectionFactory] fail at field=[targetConnectionFactory]
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
... 62 more
Caused by: org.nutz.ioc.IocException: IocBean[pooledConnectionFactory] throw Exception when creating
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
... 64 more
Caused by: java.lang.RuntimeException: IocBean[pooledConnectionFactory] fail at field=[connectionFactory]
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
... 67 more
Caused by: org.nutz.ioc.IocException: IocBean[targetConnectionFactory] throw Exception when creating
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
... 69 more
Caused by: java.lang.RuntimeException: IocBean[targetConnectionFactory] fail at field=[brokerURL]
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
... 72 more
Caused by: java.lang.RuntimeException: Fail to set 'null'[ null ] by setter org.apache.activemq.ActiveMQConnectionFactory.'setBrokerURL()' because [java.lang.NullPointerException]: null
at org.nutz.lang.Lang.wrapThrow(Lang.java:170)
at org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:62)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:33)
... 74 more
Caused by: java.lang.NullPointerException
at java.net.URI$Parser.parse(URI.java:3042)
at java.net.URI.(URI.java:588)
at org.apache.activemq.ActiveMQConnectionFactory.createURI(ActiveMQConnectionFactory.java:174)
at org.apache.activemq.ActiveMQConnectionFactory.setBrokerURL(ActiveMQConnectionFactory.java:367)
at org.apache.activemq.ActiveMQConnectionFactory$FM$setBrokerURL$fa63426f4fc49dc4e24f788aa0c1567c.invoke(ActiveMQConnectionFactory.java)
at org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:51)
... 75 more

JmsTemplate jmsTemplate=ioc.get(JmsTemplate.class, "activeMqJmsTemplate");
这行ioc空指针呀

    conf : {
        type : "org.nutz.ioc.impl.PropertiesProxy",
        fields : {
            paths : ["/"] // 以前也是这些写的? 不合法的啊, 要求放在某个文件夹里面的
        }
    },
    conf : {
        type : "org.nutz.ioc.impl.PropertiesProxy",
        fields : {
            paths : ["custom/"] // 这样才是常规写法
        }
    },

我是放在resources 下的ioc文件夹里面

我是说properties文件哦, 这是nutzboot??

把conf删掉, 不需要的.

然后, application.properties里面加 mq.brokerURL 之类的配置没?



mq.brokerURL=tcp://127.0.0.1:61616 mq.userName=admin mq.password=admin mq.pool.maxConnections=100 queueName=swj

写在什么地方了, 感觉没读取到呀

读取了呀,启动日志都打印了

        //注册主键生成器
        CustomMake.me().register("ig", ioc.get(RedisIdGenerator.class));
        //通过POJO类创建表结构
        try {
            Daos.createTablesInPackage(dao, "cn.wizzer.app.cms", false);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        try {
            if (log.isDebugEnabled()) {
                //通过POJO类修改表结构
                Daos.migration(dao, "cn.wizzer.app.cms", true, false);
            }
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
        //初始化主键值到redis
        initRedisIg();


        DefaultMessageListenerContainer container = ioc.get(DefaultMessageListenerContainer.class, "sessionAwareListenerContainer");
        container.start();
        System.out.println("ok");

我是说mq.brokerURL写在哪里了? applcation.properties吗?

是的,写到 applcation.properties了

[DEBUG] 22:30:58.665 org.apache.activemq.transport.AbstractInactivityMonitor$2.run(AbstractInactivityMonitor.java:113) - WriteChecker 10003 ms elapsed since last write check.
[DEBUG] 22:30:58.665 org.apache.activemq.transport.AbstractInactivityMonitor$3.run(AbstractInactivityMonitor.java:156) - Running WriteCheck[tcp://127.0.0.1:61616]
[DEBUG] 22:31:00.923 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f71460021 after 9ms
[DEBUG] 22:31:08.667 org.apache.activemq.transport.AbstractInactivityMonitor$2.run(AbstractInactivityMonitor.java:113) - WriteChecker 10002 ms elapsed since last write check.
[DEBUG] 22:31:08.667 org.apache.activemq.transport.AbstractInactivityMonitor$3.run(AbstractInactivityMonitor.java:156) - Running WriteCheck[tcp://127.0.0.1:61616]
[DEBUG] 22:31:14.257 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f71460021 after 9ms
[DEBUG] 22:31:18.671 org.apache.activemq.transport.AbstractInactivityMonitor$2.run(AbstractInactivityMonitor.java:113) - WriteChecker 10004 ms elapsed since last write check.
[DEBUG] 22:31:18.672 org.apache.activemq.transport.AbstractInactivityMonitor$3.run(AbstractInactivityMonitor.java:156) - Running WriteCheck[tcp://127.0.0.1:61616]
[DEBUG] 22:31:27.595 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f71460021 after 9ms
[DEBUG] 22:31:28.604 org.apache.activemq.transport.AbstractInactivityMonitor$1.run(AbstractInactivityMonitor.java:81) - 30000 ms elapsed since last read check.
[DEBUG] 22:31:28.674 org.apache.activemq.transport.AbstractInactivityMonitor$2.run(AbstractInactivityMonitor.java:113) - WriteChecker 10003 ms elapsed since last write check.
[DEBUG] 22:31:28.674 org.apache.activemq.transport.AbstractInactivityMonitor$3.run(AbstractInactivityMonitor.java:156) - Running WriteCheck[tcp://127.0.0.1:61616]
brokerURL : {java:"$conf.get('mq.brokerURL')"},

现在的问题是这个, 没读到

额, 要不你贴完整日志吧,我现在搞不懂报什么错误了

[DEBUG] 22:39:13.632 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f71460027 after 10ms
[DEBUG] 22:39:17.932 org.nutz.mvc.impl.UrlMappingImpl.get(UrlMappingImpl.java:101) - Found mapping for [POST] path=/open/api/test/test1 : ApiTestTokenController.test1(ApiTestTokenController.java:34)
[DEBUG] 22:39:17.933 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'apiTestTokenController'<class cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController>
[DEBUG] 22:39:17.933 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - >> Load definition name=apiTestTokenController
[DEBUG] 22:39:17.934 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 22:39:17.934 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - >> Make...'apiTestTokenController'<class cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController>
[DEBUG] 22:39:17.934 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'apiTestTokenController' to [app] [DEBUG] 22:39:17.934 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController without AOP
[DEBUG] 22:39:17.936 org.nutz.ioc.val.ReferTypeValue.get(ReferTypeValue.java:64) - name=cmsTestService not found, search for type=cn.wizzer.app.cms.modules.services.CmsTestService
[DEBUG] 22:39:17.936 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsTestServiceImpl'<interface cn.wizzer.app.cms.modules.services.CmsTestService>
[DEBUG] 22:39:17.938 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'activeMqJmsTemplate'<class org.springframework.jms.core.JmsTemplate>
[DEBUG] 22:39:17.938 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - >> Load definition name=activeMqJmsTemplate
[DEBUG] 22:39:17.938 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 22:39:17.938 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - >> Make...'activeMqJmsTemplate'<class org.springframework.jms.core.JmsTemplate>
[DEBUG] 22:39:17.938 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'activeMqJmsTemplate' to [app] [DEBUG] 22:39:17.969 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.springframework.jms.core.JmsTemplate without AOP
[DEBUG] 22:39:18.054 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'connectionFactory'<>
[DEBUG] 22:39:18.054 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - >> Load definition name=connectionFactory
[DEBUG] 22:39:18.054 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 22:39:18.054 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - >> Make...'connectionFactory'<>
[DEBUG] 22:39:18.055 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'connectionFactory' to [app] [DEBUG] 22:39:18.056 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.springframework.jms.connection.SingleConnectionFactory without AOP
[DEBUG] 22:39:18.065 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'pooledConnectionFactory'<>
[DEBUG] 22:39:18.065 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - >> Load definition name=pooledConnectionFactory
[DEBUG] 22:39:18.065 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 22:39:18.065 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - >> Make...'pooledConnectionFactory'<>
[DEBUG] 22:39:18.065 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'pooledConnectionFactory' to [app] [DEBUG] 22:39:18.067 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.pool.PooledConnectionFactory without AOP
[DEBUG] 22:39:18.084 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'targetConnectionFactory'<>
[DEBUG] 22:39:18.084 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - >> Load definition name=targetConnectionFactory
[DEBUG] 22:39:18.084 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 22:39:18.084 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - >> Make...'targetConnectionFactory'<>
[DEBUG] 22:39:18.085 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'targetConnectionFactory' to [app] [DEBUG] 22:39:18.093 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.ActiveMQConnectionFactory without AOP
[DEBUG] 22:39:18.203 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[INFO ] 22:39:18.204 org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:61) - Fail to value by setter
java.lang.NullPointerException
at java.net.URI$Parser.parse(URI.java:3042)
at java.net.URI.(URI.java:588)
at org.apache.activemq.ActiveMQConnectionFactory.createURI(ActiveMQConnectionFactory.java:174)
at org.apache.activemq.ActiveMQConnectionFactory.setBrokerURL(ActiveMQConnectionFactory.java:367)
at org.apache.activemq.ActiveMQConnectionFactory$FM$setBrokerURL$fa63426f4fc49dc4e24f788aa0c1567c.invoke(ActiveMQConnectionFactory.java)
at org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:51)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:33)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:271)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl.Test(CmsTestServiceImpl.java:47)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP._aop_invoke(CmsTestServiceImpl.java:1)
at org.nutz.aop.InterceptorChain.invoke(InterceptorChain.java:77)
at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:57)
at org.nutz.aop.interceptor.TransactionInterceptor.filter(TransactionInterceptor.java:34)
at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:60)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP.Test(CmsTestServiceImpl.java:1)
at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController.test1(ApiTestTokenController.java:34)
at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController$FM$test1$da810e841258c3a84ae9124e6d872cd8.invoke(ApiTestTokenController.java)
at org.nutz.mvc.impl.processor.MethodInvokeProcessor.process(MethodInvokeProcessor.java:31)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.AdaptorProcessor.process(AdaptorProcessor.java:38)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.ActionFiltersProcessor.process(ActionFiltersProcessor.java:58)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.ModuleProcessor.process(ModuleProcessor.java:123)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.EncodingProcessor.process(EncodingProcessor.java:27)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.UpdateRequestAttributesProcessor.process(UpdateRequestAttributesProcessor.java:15)
at org.nutz.mvc.impl.NutActionChain.doChain(NutActionChain.java:44)
at org.nutz.mvc.impl.ActionInvoker.invoke(ActionInvoker.java:67)
at org.nutz.mvc.ActionHandler.handle(ActionHandler.java:31)
at org.nutz.mvc.NutFilter.doFilter(NutFilter.java:202)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.nutz.mvc.WhaleFilter.doFilter(WhaleFilter.java:171)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1634)
at org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter.doFilter(WebSocketUpgradeFilter.java:215)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:533)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:146)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:548)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:257)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1595)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:255)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1317)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:203)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:473)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1564)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:201)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1219)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:144)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.Server.handle(Server.java:531)
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:352)
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:260)
at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:281)
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:102)
at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:118)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:762)
at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:680)
at java.lang.Thread.run(Thread.java:748)
[DEBUG] 22:39:18.207 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'targetConnectionFactory' from [app] [DEBUG] 22:39:18.207 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'pooledConnectionFactory' from [app] [DEBUG] 22:39:18.207 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'connectionFactory' from [app] [DEBUG] 22:39:18.208 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'activeMqJmsTemplate' from [app] [WARN ] 22:39:18.208 org.nutz.mvc.impl.processor.FailProcessor.process(FailProcessor.java:28) - Error@/open/api/test/test1 :
org.nutz.ioc.IocException: IocBean[activeMqJmsTemplate] throw Exception when creating
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:271)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl.Test(CmsTestServiceImpl.java:47)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP._aop_invoke(CmsTestServiceImpl.java:1)
at org.nutz.aop.InterceptorChain.invoke(InterceptorChain.java:77)
at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:57)
at org.nutz.aop.interceptor.TransactionInterceptor.filter(TransactionInterceptor.java:34)
at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:60)
at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP.Test(CmsTestServiceImpl.java:1)
at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController.test1(ApiTestTokenController.java:34)
at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController$FM$test1$da810e841258c3a84ae9124e6d872cd8.invoke(ApiTestTokenController.java)
at org.nutz.mvc.impl.processor.MethodInvokeProcessor.process(MethodInvokeProcessor.java:31)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.AdaptorProcessor.process(AdaptorProcessor.java:38)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.ActionFiltersProcessor.process(ActionFiltersProcessor.java:58)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.ModuleProcessor.process(ModuleProcessor.java:123)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.EncodingProcessor.process(EncodingProcessor.java:27)
at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
at org.nutz.mvc.impl.processor.UpdateRequestAttributesProcessor.process(UpdateRequestAttributesProcessor.java:15)
at org.nutz.mvc.impl.NutActionChain.doChain(NutActionChain.java:44)
at org.nutz.mvc.impl.ActionInvoker.invoke(ActionInvoker.java:67)
at org.nutz.mvc.ActionHandler.handle(ActionHandler.java:31)
at org.nutz.mvc.NutFilter.doFilter(NutFilter.java:202)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.nutz.mvc.WhaleFilter.doFilter(WhaleFilter.java:171)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1634)
at org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter.doFilter(WebSocketUpgradeFilter.java:215)
at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:533)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:146)
at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:548)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:257)
at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1595)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:255)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1317)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:203)
at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:473)
at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1564)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:201)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1219)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:144)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
at org.eclipse.jetty.server.Server.handle(Server.java:531)
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:352)
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:260)
at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:281)
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:102)
at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:118)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:762)
at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:680)
at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.RuntimeException: IocBean[activeMqJmsTemplate] fail at field=[connectionFactory]
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
... 57 more
Caused by: org.nutz.ioc.IocException: IocBean[connectionFactory] throw Exception when creating
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
... 59 more
Caused by: java.lang.RuntimeException: IocBean[connectionFactory] fail at field=[targetConnectionFactory]
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
... 62 more
Caused by: org.nutz.ioc.IocException: IocBean[pooledConnectionFactory] throw Exception when creating
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
... 64 more
Caused by: java.lang.RuntimeException: IocBean[pooledConnectionFactory] fail at field=[connectionFactory]
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
... 67 more
Caused by: org.nutz.ioc.IocException: IocBean[targetConnectionFactory] throw Exception when creating
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
... 69 more
Caused by: java.lang.RuntimeException: IocBean[targetConnectionFactory] fail at field=[brokerURL]
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
... 72 more
Caused by: java.lang.RuntimeException: Fail to set 'null'[ null ] by setter org.apache.activemq.ActiveMQConnectionFactory.'setBrokerURL()' because [java.lang.NullPointerException]: null
at org.nutz.lang.Lang.wrapThrow(Lang.java:170)
at org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:62)
at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:33)
... 74 more
Caused by: java.lang.NullPointerException
at java.net.URI$Parser.parse(URI.java:3042)
at java.net.URI.(URI.java:588)
at org.apache.activemq.ActiveMQConnectionFactory.createURI(ActiveMQConnectionFactory.java:174)
at org.apache.activemq.ActiveMQConnectionFactory.setBrokerURL(ActiveMQConnectionFactory.java:367)
at org.apache.activemq.ActiveMQConnectionFactory$FM$setBrokerURL$fa63426f4fc49dc4e24f788aa0c1567c.invoke(ActiveMQConnectionFactory.java)
at org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:51)
... 75 more
[DEBUG] 22:39:26.967 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f71460027 after 9ms
[DEBUG] 22:39:40.304 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f71460027 after 8ms
[DEBUG] 22:39:53.645 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f71460027 after 10ms
[DEBUG] 22:40:06.980 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f71460027 after 10ms

来了,之前有事在忙

仔细翻了翻你贴的日志, 我在想, 是不是在入口方法里面new NutIoc呢? 好像也不对

从日志上看sessionAwareListenerContainer通过多层依赖, 是引用到targetConnectionFactory及其他几个connectionFactory的

但, 既然启动时已经引用过,那么入口方法的日志里面不应该有 NutIoc.get(NutIoc.java:192) - >> Load definition name=connectionFactory 这种第一次引用才会出现的日志

看来你得把整个启动日志发一下了, 自行隐藏一下敏感信息(如果有的话)

我看昨天试了
把这个
@Inject("refer:$ioc")
private Ioc ioc;
换成这个就可以了
private Ioc ioc = new NutIoc(new JsonLoader("ioc/avtivemq.js"));

这样写就是等死的节奏

private Ioc ioc = new NutIoc(new JsonLoader("ioc/avtivemq.js"));

那为什么这样不能注入啊
@Inject("refer:$ioc")
private Ioc ioc;

改回@Inject("refer:$ioc"), 然后贴完整日志

/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/bin/java -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:51341,suspend=y,server=n -Dfile.encoding=UTF-8 -classpath "/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/tools.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-service-cms/target/classes:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-framework/target/classes:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-model/target/classes:/Users/haigo/.m2/repository/cn/wizzer/app/wk-code-generator-nb/5.0.1-SNAPSHOT/wk-code-generator-nb-5.0.1-20180409.075514-1.jar:/Users/haigo/.m2/repository/org/atteo/evo-inflector/1.0.1/evo-inflector-1.0.1.jar:/Users/haigo/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/haigo/.m2/repository/org/apache/velocity/velocity/1.7/velocity-1.7.jar:/Users/haigo/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar:/Users/haigo/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-common/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar:/Users/haigo/.m2/repository/org/nutz/nutz/1.r.66-SNAPSHOT/nutz-1.r.66-20180611.015908-74.jar:/Users/haigo/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-dubbo/1.r.66-SNAPSHOT/nutz-integration-dubbo-1.r.66-20180614.031821-63.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-framework/4.0.1/curator-framework-4.0.1.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-client/4.0.1/curator-client-4.0.1.jar:/Users/haigo/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/haigo/.m2/repository/com/alibaba/dubbo/2.6.2/dubbo-2.6.2.jar:/Users/haigo/.m2/repository/org/javassist/javassist/3.22.0-GA/javassist-3.22.0-GA.jar:/Users/haigo/.m2/repository/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/haigo/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/com/101tec/zkclient/0.10/zkclient-0.10.jar:/Users/haigo/.m2/repository/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.jar:/Users/haigo/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/Users/haigo/.m2/repository/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-daocache/1.r.66-SNAPSHOT/nutz-plugins-daocache-1.r.66-20180614.031905-54.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-jedis/1.r.66-SNAPSHOT/nutz-integration-jedis-1.r.66-20180614.031845-61.jar:/Users/haigo/.m2/repository/redis/clients/jedis/2.9.0/jedis-2.9.0.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-wkcache/1.r.66-SNAPSHOT/nutz-plugins-wkcache-1.r.66-20180614.031939-53.jar:/Users/haigo/.m2/repository/com/alibaba/druid/1.1.9/druid-1.1.9.jar:/Users/haigo/.m2/repository/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/Users/haigo/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/Users/haigo/.m2/repository/org/springframework/spring-core/4.1.8.RELEASE/spring-core-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/haigo/.m2/repository/org/springframework/spring-context/4.1.8.RELEASE/spring-context-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-aop/4.1.8.RELEASE/spring-aop-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/Users/haigo/.m2/repository/org/springframework/spring-beans/4.3.16.RELEASE/spring-beans-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-expression/4.3.16.RELEASE/spring-expression-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-tx/4.1.8.RELEASE/spring-tx-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-jms/4.1.8.RELEASE/spring-jms-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-messaging/4.1.8.RELEASE/spring-messaging-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/apache/xbean/xbean-spring/3.16/xbean-spring-3.16.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-core/5.7.0/activemq-core-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1.1/geronimo-jms_1.1_spec-1.1.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/kahadb/5.7.0/kahadb-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar:/Users/haigo/.m2/repository/org/fusesource/mqtt-client/mqtt-client/1.3/mqtt-client-1.3.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch-transport/1.11/hawtdispatch-transport-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch/1.11/hawtdispatch-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar:/Users/haigo/.m2/repository/commons-net/commons-net/3.1/commons-net-3.1.jar:/Users/haigo/.m2/repository/org/jasypt/jasypt/1.9.0/jasypt-1.9.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-pool/5.12.1/activemq-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-jms-pool/5.12.1/activemq-jms-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-client/5.12.1/activemq-client-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar:/Applications/IntelliJ IDEA 15.app/Contents/lib/idea_rt.jar" cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher
Connected to the target VM, address: '127.0.0.1:51341', transport: 'socket'
[INFO ] 16:19:51.721 org.nutz.boot.banner.SimpleBannerPrinter.printBanner(SimpleBannerPrinter.java:34) - 
 _  _ _   _ _____ ______      ___  __
| \| | | | |_   _|_  /\ \    / / |/ /
| .` | |_| | | |  / /  \ \/\/ /| ' <
|_|\_|\___/  |_| /___|  \_/\_/ |_|\_\

:: Built with NutzWk

[DEBUG] 16:19:51.838 org.nutz.resource.Scans.printLocations(Scans.java:527) - Locations count=96 time use 76ms
[DEBUG] 16:19:51.858 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( custom/ ) , regex( ^.+[.]properties$ )
[DEBUG] 16:19:51.859 org.nutz.ioc.impl.PropertiesProxy.setPaths(PropertiesProxy.java:114) - load properties from jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar!/custom/emtry.properties
[DEBUG] 16:19:51.860 org.nutz.boot.config.impl.PropertiesConfigureLoader.readPropertiesPath(PropertiesConfigureLoader.java:121) - Loading Properties  - application.properties
[DEBUG] 16:19:51.924 org.nutz.resource.Scans.scan(Scans.java:280) - Found 2 resource by src( ioc/ ) , regex( ^(.+[.])(js|json)$ )
[DEBUG] 16:19:51.924 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [emtry.json]
[DEBUG] 16:19:51.925 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [avtivemq.js]
[DEBUG] 16:19:51.931 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:57) - Loaded 7 bean define from path=[ioc/] --> [activeMqJmsTemplate, sessionAwareQueue, connectionFactory, consumerSessionAwareMessageListener, sessionAwareListenerContainer, targetConnectionFactory, pooledConnectionFactory]
[DEBUG] 16:19:52.103 org.nutz.castor.Castors.reload(Castors.java:116) - Using 101 castor for Castors
[DEBUG] 16:19:52.120 org.nutz.ioc.aop.SimpleAopMaker.<init>(SimpleAopMaker.java:79) - Load AopConfigure for anno=org.nutz.aop.interceptor.async.Async by type=org.nutz.aop.interceptor.async.AsyncAopIocLoader
[INFO ] 16:19:52.126 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'cn.wizzer'
[DEBUG] 16:19:52.149 org.nutz.resource.Scans.scan(Scans.java:280) - Found 100 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[INFO ] 16:19:52.478 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dubboRpcCmsMainLauncher                 ' - cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher
[INFO ] 16:19:52.503 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'redisIdGenerator                        ' - cn.wizzer.app.cms.commons.ig.RedisIdGenerator
[INFO ] 16:19:52.509 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsArticleServiceImpl                   ' - cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl
[INFO ] 16:19:52.545 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsChannelServiceImpl                   ' - cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl
[INFO ] 16:19:52.547 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsLinkClassServiceImpl                 ' - cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl
[INFO ] 16:19:52.548 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsLinkServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl
[INFO ] 16:19:52.549 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsSiteServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl
[INFO ] 16:19:52.549 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsTestServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl
[INFO ] 16:19:52.630 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'org.nutz.boot.starter'
[DEBUG] 16:19:52.632 org.nutz.resource.Scans.scan(Scans.java:280) - Found 15 resource by src( org/nutz/boot/starter/ ) , regex( ^.+[.]class$ )
[INFO ] 16:19:52.657 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dubboStarter                            ' - org.nutz.boot.starter.dubbo.DubboStarter
[INFO ] 16:19:52.657 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'nutDaoStarter                           ' - org.nutz.boot.starter.nutz.dao.NutDaoStarter
[DEBUG] 16:19:52.673 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.getSqlManager(...) define as name=sqlManager
[DEBUG] 16:19:52.674 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.createCacheSerializer(...) define as name=daoCacheSerializer
[DEBUG] 16:19:52.674 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.createDaoCacheInterceptor(...) define as name=daoCacheInterceptor
[DEBUG] 16:19:52.674 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.getDao(...) define as name=dao
[INFO ] 16:19:52.677 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'druidWebStatFilterStarter               ' - org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter
[INFO ] 16:19:52.679 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'druidWebStatServletStarter              ' - org.nutz.boot.starter.jdbc.DruidWebStatServletStarter
[INFO ] 16:19:52.680 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dataSourceStarter                       ' - org.nutz.boot.starter.jdbc.DataSourceStarter
[DEBUG] 16:19:52.681 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.getDataSource(...) define as name=dataSource
[DEBUG] 16:19:52.681 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.createDruidDataSource(...) define as name=druidDataSource
[DEBUG] 16:19:52.681 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.createHikariCPDataSource(...) define as name=hikariDataSource
[DEBUG] 16:19:52.682 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:19:52.682 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:19:52.683 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:19:52.683 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:19:52.683 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[INFO ] 16:19:52.692 org.nutz.boot.NbApp.prepare(NbApp.java:279) - Configure Manual:
|id  |key                                     |required  |Possible Values     |Default   |Description         |                                starters|
|----|----------------------------------------|----------|--------------------|----------|--------------------|----------------------------------------|
|0   |druid.web.filter.exclusions             |no        |                    |          |需要排除的路径             |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|1   |druid.web.filter.principalCookieName    |no        |                    |          |用户权限信息的cookie属性名称   |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|2   |druid.web.filter.principalSessionName   |no        |                    |          |用户权限信息的session属性名称  |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|3   |druid.web.filter.profileEnable          |no        |                    |          |是否开启性能监控            |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|4   |druid.web.filter.realIpHeader           |no        |                    |          |Header中ReadIp对应的key |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|5   |druid.web.filter.sessionStatEnable      |no        |                    |true      |是否开启session状态监控     |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|6   |druid.web.filter.sessionStatMaxCount    |no        |                    |          |session最大状态数量       |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|7   |druid.web.servlet.allow                 |no        |                    |          |允许访问的ip列表           |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|8   |druid.web.servlet.deny                  |no        |                    |          |禁止访问的ip列表           |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|9   |druid.web.servlet.jmxPassword           |no        |                    |          |JMX的密码              |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|10  |druid.web.servlet.jmxUrl                |no        |                    |          |读取JMX信息的URL         |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|11  |druid.web.servlet.jmxUsername           |no        |                    |          |JMX的用户名             |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|12  |druid.web.servlet.loginPassword         |no        |                    |随机值,打印在日志中|访问monitor页面的密码      |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|13  |druid.web.servlet.loginUsername         |no        |                    |driud     |访问monitor页面的用户名     |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|14  |druid.web.servlet.resetEnable           |no        |                    |true      |是否允许重置统计结果          |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|15  |jdbc.password                           |no        |                    |          |数据库密码               |org.nutz.boot.starter.jdbc.DataSourceStarter|
|16  |jdbc.type                               |no        |druid,simple,hikari |druid     |连接池类型               |org.nutz.boot.starter.jdbc.DataSourceStarter|
|17  |jdbc.url                                |yes       |                    |          |JDBC URL            |org.nutz.boot.starter.jdbc.DataSourceStarter|
|18  |jdbc.username                           |no        |                    |          |数据库用户名              |org.nutz.boot.starter.jdbc.DataSourceStarter|
|19  |nutz.dao.interceptor.cache.cache4Null   |no        |                    |true      |是否缓存null结果          |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|20  |nutz.dao.interceptor.cache.debug        |no        |                    |false     |打印daocache详细调试日志    |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|21  |nutz.dao.interceptor.cache.enable       |no        |                    |false     |是否使用daocache        |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|22  |nutz.dao.interceptor.cache.enableWhenTrans|no        |                    |false     |事务内是否启用daocache     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|23  |nutz.dao.interceptor.cache.provider.ioc.name|no        |                    |daoCacheProvider|daocache提供者DaoCacheProvider的IocBean名称|org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|24  |nutz.dao.interceptor.cache.provider.memory.cacheSize|no        |                    |          |daocache提供者MemoryDaoCacheProvider的默认缓存大小|org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|25  |nutz.dao.interceptor.cache.provider.type|no        |memory,ehcache,jedis,ioc|memory    |daocache提供者         |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|26  |nutz.dao.interceptor.cache.table.names  |no        |                    |          |需要缓存的表名称,英文逗号分隔     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|27  |nutz.dao.interceptor.cache.table.pattern|no        |                    |          |需要缓存的表名称的正则表达式      |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|28  |nutz.dao.interceptor.log.enable         |no        |                    |true      |是否打印dao的SQL日志       |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|29  |nutz.dao.interceptor.time.enable        |no        |                    |false     |是否打印dao的SQL耗时日志     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|30  |nutz.dao.sqls.path                      |no        |                    |sqls/     |sql目录               |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|31  |redis.database                          |no        |                    |0         |redis数据库序号          |org.nutz.boot.starter.redis.JedisStarter|
|32  |redis.host                              |no        |                    |127.0.0.1 |redis服务器ip或域名       |org.nutz.boot.starter.redis.JedisStarter|
|33  |redis.max_redir                         |no        |                    |10        |redis集群最大重定向次数      |org.nutz.boot.starter.redis.JedisStarter|
|34  |redis.nodes                             |no        |                    |          |redis集群节点列表         |org.nutz.boot.starter.redis.JedisStarter|
|35  |redis.password                          |no        |                    |          |redis密码             |org.nutz.boot.starter.redis.JedisStarter|
|36  |redis.port                              |no        |                    |6379      |redis服务器端口          |org.nutz.boot.starter.redis.JedisStarter|
|37  |redis.soTimeout                         |no        |                    |0         |redis写超时            |org.nutz.boot.starter.redis.JedisStarter|
|38  |redis.timeout                           |no        |                    |2000      |redis读写超时           |org.nutz.boot.starter.redis.JedisStarter|
[INFO ] 16:19:52.698 org.nutz.ioc.impl.NutIoc.<init>(NutIoc.java:130) - ... NutIoc init complete
[DEBUG] 16:19:52.699 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'appContext' to [app] 
[DEBUG] 16:19:52.699 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'conf' to [app] 
[DEBUG] 16:19:52.699 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nbApp' to [app] 
[DEBUG] 16:19:52.700 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'counterService' to [app] 
[DEBUG] 16:19:52.705 org.nutz.boot.starter.dubbo.DubboIocLoaderStarter.getIocLoader(DubboIocLoaderStarter.java:34) - using dubbo configure from PropertiesProxy
[DEBUG] 16:19:52.706 org.nutz.boot.AppContext.getServerPort(AppContext.java:344) - select random port=16819 for dubbo.protocol.port
[INFO ] 16:19:52.771  - using logger: com.alibaba.dubbo.common.logger.log4j.Log4jLoggerAdapter
[DEBUG] 16:19:52.861 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( org/nutz/integration/jedis/jedis.js ) , regex( ^(.+[.])(js|json)$ )
[DEBUG] 16:19:52.862 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [org/nutz/integration/jedis/jedis.js]
[DEBUG] 16:19:52.862 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:57) - Loaded 9 bean define from path=[org/nutz/integration/jedis/jedis.js] --> [redisService, jedisCluster, jedisClusterNodes, jedisClusterWrapper, pubSubService, jedisPoolConfig, jedisPool, jedisAgent, redis]
[INFO ] 16:19:52.864 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'org.nutz.plugins.wkcache'
[DEBUG] 16:19:52.867 org.nutz.resource.Scans.scan(Scans.java:280) - Found 13 resource by src( org/nutz/plugins/wkcache/ ) , regex( ^.+[.]class$ )
[INFO ] 16:19:52.886 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheRemoveEntryInterceptor           ' - org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor
[INFO ] 16:19:52.888 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheResultInterceptor                ' - org.nutz.plugins.wkcache.WkcacheResultInterceptor
[INFO ] 16:19:52.889 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheUpdateInterceptor                ' - org.nutz.plugins.wkcache.WkcacheUpdateInterceptor
[INFO ] 16:19:52.890 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheRemoveAllInterceptor             ' - org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor
[INFO ] 16:19:52.890 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add '$aop_wkcache                            ' - org.nutz.plugins.wkcache.WkcacheAopConfigure
[DEBUG] 16:19:52.890 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboStarter'<class org.nutz.boot.starter.dubbo.DubboStarter>
[DEBUG] 16:19:52.891 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '$aop_async'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:19:52.892 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=$aop_async
[DEBUG] 16:19:52.892 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:19:52.892 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'$aop_async'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:19:53.143 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '$aop_async' to [app] 
[DEBUG] 16:19:53.147 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '$aop_wkcache'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:19:53.147 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=$aop_wkcache
[DEBUG] 16:19:53.147 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_wkcache) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:19:53.147 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'$aop_wkcache'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:19:53.148 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '$aop_wkcache' to [app] 
[DEBUG] 16:19:53.149 org.nutz.ioc.aop.SimpleAopMaker.<init>(SimpleAopMaker.java:79) - Load AopConfigure for anno=org.nutz.ioc.aop.Aop by type=org.nutz.ioc.aop.config.impl.AnnotationAopConfigration
[DEBUG] 16:19:53.149 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboStarter
[DEBUG] 16:19:53.149 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:53.150 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboStarter'<class org.nutz.boot.starter.dubbo.DubboStarter>
[DEBUG] 16:19:53.150 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboStarter' to [app] 
[DEBUG] 16:19:53.150 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.dubbo.DubboStarter without AOP
[DEBUG] 16:19:53.157 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<class org.nutz.boot.starter.nutz.dao.NutDaoStarter>
[DEBUG] 16:19:53.158 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=nutDaoStarter
[DEBUG] 16:19:53.158 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutDaoStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:53.158 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'nutDaoStarter'<class org.nutz.boot.starter.nutz.dao.NutDaoStarter>
[DEBUG] 16:19:53.158 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nutDaoStarter' to [app] 
[DEBUG] 16:19:53.159 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.nutz.dao.NutDaoStarter without AOP
[DEBUG] 16:19:53.162 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:19:53.162 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<class org.nutz.boot.starter.jdbc.DataSourceStarter>
[DEBUG] 16:19:53.162 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dataSourceStarter
[DEBUG] 16:19:53.162 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSourceStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:53.163 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dataSourceStarter'<class org.nutz.boot.starter.jdbc.DataSourceStarter>
[DEBUG] 16:19:53.163 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dataSourceStarter' to [app] 
[DEBUG] 16:19:53.163 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DataSourceStarter without AOP
[DEBUG] 16:19:53.168 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:19:53.168 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatFilterStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter>
[DEBUG] 16:19:53.168 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidWebStatFilterStarter
[DEBUG] 16:19:53.169 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:53.169 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidWebStatFilterStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter>
[DEBUG] 16:19:53.169 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidWebStatFilterStarter' to [app] 
[DEBUG] 16:19:53.169 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter without AOP
[DEBUG] 16:19:53.173 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:19:53.173 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatServletStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter>
[DEBUG] 16:19:53.173 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidWebStatServletStarter
[DEBUG] 16:19:53.173 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatServletStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:53.173 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidWebStatServletStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter>
[DEBUG] 16:19:53.173 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidWebStatServletStarter' to [app] 
[DEBUG] 16:19:53.174 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter without AOP
[DEBUG] 16:19:53.178 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:19:53.181 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboStarter'<interface org.nutz.boot.starter.ServerFace>
[DEBUG] 16:19:53.181 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboManager'<class org.nutz.integration.dubbo.DubboManager>
[DEBUG] 16:19:53.181 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboManager
[DEBUG] 16:19:53.181 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboManager) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:53.181 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboManager'<class org.nutz.integration.dubbo.DubboManager>
[DEBUG] 16:19:53.181 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboManager' to [app] 
[DEBUG] 16:19:53.181 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.DubboManager without AOP
[DEBUG] 16:19:53.185 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:19:53.185 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubbo_iobjs
[DEBUG] 16:19:53.185 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubbo_iobjs) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:53.185 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubbo_iobjs'<>
[DEBUG] 16:19:53.186 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubbo_iobjs' to [app] 
[DEBUG] 16:19:53.187 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class java.util.HashMap without AOP
[DEBUG] 16:19:53.188 org.nutz.integration.dubbo.DubboManager.init(DubboManager.java:31) - dubbo obj count=6
[DEBUG] 16:19:53.188 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboAnnotationBean'<class org.nutz.integration.dubbo.AnnotationBean>
[DEBUG] 16:19:53.188 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboAnnotationBean
[DEBUG] 16:19:53.188 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboAnnotationBean) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:53.188 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboAnnotationBean'<class org.nutz.integration.dubbo.AnnotationBean>
[DEBUG] 16:19:53.189 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboAnnotationBean' to [app] 
[DEBUG] 16:19:53.189 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.AnnotationBean without AOP
[DEBUG] 16:19:53.189 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:19:53.201 org.nutz.resource.Scans.scan(Scans.java:280) - Found 100 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:19:53.291 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Protocol$Adaptive implements com.alibaba.dubbo.rpc.Protocol {
public void destroy() {throw new UnsupportedOperationException("method public abstract void com.alibaba.dubbo.rpc.Protocol.destroy() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
}
public int getDefaultPort() {throw new UnsupportedOperationException("method public abstract int com.alibaba.dubbo.rpc.Protocol.getDefaultPort() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
}
public com.alibaba.dubbo.rpc.Invoker refer(java.lang.Class arg0, com.alibaba.dubbo.common.URL arg1) throws com.alibaba.dubbo.rpc.RpcException {
if (arg1 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg1;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class).getExtension(extName);
return extension.refer(arg0, arg1);
}
public com.alibaba.dubbo.rpc.Exporter export(com.alibaba.dubbo.rpc.Invoker arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class).getExtension(extName);
return extension.export(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:53.441 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Cluster$Adaptive implements com.alibaba.dubbo.rpc.cluster.Cluster {
public com.alibaba.dubbo.rpc.Invoker join(com.alibaba.dubbo.rpc.cluster.Directory arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.cluster.Directory argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.cluster.Directory argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = url.getParameter("cluster", "failover");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.Cluster) name from url(" + url.toString() + ") use keys([cluster])");
com.alibaba.dubbo.rpc.cluster.Cluster extension = (com.alibaba.dubbo.rpc.cluster.Cluster)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.Cluster.class).getExtension(extName);
return extension.join(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:53.452 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ProxyFactory$Adaptive implements com.alibaba.dubbo.rpc.ProxyFactory {
public com.alibaba.dubbo.rpc.Invoker getInvoker(java.lang.Object arg0, java.lang.Class arg1, com.alibaba.dubbo.common.URL arg2) throws com.alibaba.dubbo.rpc.RpcException {
if (arg2 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg2;
String extName = url.getParameter("proxy", "javassist");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.ProxyFactory) name from url(" + url.toString() + ") use keys([proxy])");
com.alibaba.dubbo.rpc.ProxyFactory extension = (com.alibaba.dubbo.rpc.ProxyFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.ProxyFactory.class).getExtension(extName);
return extension.getInvoker(arg0, arg1, arg2);
}
public java.lang.Object getProxy(com.alibaba.dubbo.rpc.Invoker arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = url.getParameter("proxy", "javassist");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.ProxyFactory) name from url(" + url.toString() + ") use keys([proxy])");
com.alibaba.dubbo.rpc.ProxyFactory extension = (com.alibaba.dubbo.rpc.ProxyFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.ProxyFactory.class).getExtension(extName);
return extension.getProxy(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:53.483 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:53.483 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:53.483 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:53.483 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:53.483 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:53.483 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:53.484 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:53.484 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:19:53.484 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:19:53.484 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:19:53.484 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:53.484 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:53.484 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:19:53.484 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:53.485 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:53.485 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsLinkServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl>
[DEBUG] 16:19:53.485 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsLinkServiceImpl
[DEBUG] 16:19:53.485 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:53.485 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsLinkServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl>
[DEBUG] 16:19:53.485 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsLinkServiceImpl' to [app] 
[DEBUG] 16:19:53.485 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:53.485 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dao
[DEBUG] 16:19:53.485 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dao) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:53.486 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dao'<>
[DEBUG] 16:19:53.486 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dao' to [app] 
[DEBUG] 16:19:53.486 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:19:53.486 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dataSource
[DEBUG] 16:19:53.486 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:53.486 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:19:53.486 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dataSource' to [app] 
[DEBUG] 16:19:53.487 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<>
[DEBUG] 16:19:53.488 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidDataSource'<interface javax.sql.DataSource>
[DEBUG] 16:19:53.489 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidDataSource
[DEBUG] 16:19:53.489 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:53.489 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidDataSource'<interface javax.sql.DataSource>
[DEBUG] 16:19:53.489 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidDataSource' to [app] 
[DEBUG] 16:19:53.489 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<>
[DEBUG] 16:19:53.615 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:19:53.615 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=sqlManager
[DEBUG] 16:19:53.615 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sqlManager) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:53.615 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:19:53.615 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'sqlManager' to [app] 
[DEBUG] 16:19:53.616 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<>
[DEBUG] 16:19:53.655 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.dao.impl.NutDao without AOP
[DEBUG] 16:19:53.655 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:19:53.655 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:19:53.655 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<>
[DEBUG] 16:19:53.751 org.nutz.dao.jdbc.Jdbcs.<clinit>(Jdbcs.java:93) - Jdbcs init complete
[INFO ] 16:19:53.751 org.nutz.dao.jdbc.Jdbcs.getExpert(Jdbcs.java:106) - Get Connection from DataSource for JdbcExpert, if you lock at here, check your database server and configure
[INFO ] 16:19:53.888 com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:928) - {dataSource-1} inited
[DEBUG] 16:19:54.356 org.nutz.dao.impl.DaoSupport.setDataSource(DaoSupport.java:188) - select expert : org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert
[DEBUG] 16:19:54.362 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:199) - JDBC Driver --> mysql-connector-java-5.1.46 ( Revision: 9cc87a48e75c2d2e87c1a293b2862ce651cb256e )
[DEBUG] 16:19:54.363 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:200) - JDBC Name   --> MySQL Connector Java
[DEBUG] 16:19:54.363 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:202) - JDBC URL    --> jdbc:mysql://119.23.144.5:3306/nb_boot??useUnicode=true&characterEncoding=utf8&useSSL=false
[DEBUG] 16:19:54.390 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_client=utf8
[DEBUG] 16:19:54.390 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_connection=utf8
[DEBUG] 16:19:54.390 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_database=latin1
[DEBUG] 16:19:54.391 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_filesystem=binary
[DEBUG] 16:19:54.391 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_results=
[DEBUG] 16:19:54.391 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_server=latin1
[DEBUG] 16:19:54.391 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_system=utf8
[DEBUG] 16:19:54.391 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_sets_dir=/usr/share/mysql/charsets/
[DEBUG] 16:19:54.408 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:219) - Mysql : binlog_format=STATEMENT
[DEBUG] 16:19:54.418 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:226) - Mysql : database=nb_boot
[DEBUG] 16:19:54.430 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:232) - Mysql : user=nutz_boot@113.77.192.240
[DEBUG] 16:19:54.458 org.nutz.dao.impl.DaoSupport.setDataSource(DaoSupport.java:221) - Database info --> MYSQL:[MySQL - 5.6.36]
[DEBUG] 16:19:54.462 org.nutz.resource.Scans.scan(Scans.java:280) - Found 0 resource by src( sqls/ ) , regex( .(sql|sqlx|sqls)$ )
[DEBUG] 16:19:54.462 org.nutz.dao.impl.DaoSupport.setSqlManager(DaoSupport.java:121) - SqlManager Sql count=0
[DEBUG] 16:19:54.463 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl without AOP
[DEBUG] 16:19:54.463 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:54.527 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_link
[DEBUG] 16:19:54.528 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.529 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.529 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.529 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.529 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.529 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.529 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.529 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:19:54.529 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:19:54.530 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:19:54.530 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:54.530 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:54.530 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:19:54.530 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.530 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.530 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.530 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.530 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.530 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.531 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.531 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsArticleServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl>
[DEBUG] 16:19:54.531 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsArticleServiceImpl
[DEBUG] 16:19:54.531 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.531 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsArticleServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl>
[DEBUG] 16:19:54.531 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsArticleServiceImpl' to [app] 
[DEBUG] 16:19:54.531 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:54.532 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:19:54.532 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheResultInterceptor
[DEBUG] 16:19:54.533 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheResultInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:19:54.533 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:19:54.533 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheResultInterceptor' to [app] 
[DEBUG] 16:19:54.534 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:19:54.536 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:19:54.536 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheUpdateInterceptor
[DEBUG] 16:19:54.536 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheUpdateInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:19:54.536 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:19:54.536 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheUpdateInterceptor' to [app] 
[DEBUG] 16:19:54.537 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:19:54.537 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheRemoveEntryInterceptor
[DEBUG] 16:19:54.538 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheRemoveEntryInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:19:54.538 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:19:54.538 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheRemoveEntryInterceptor' to [app] 
[DEBUG] 16:19:54.539 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:19:54.539 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheRemoveAllInterceptor
[DEBUG] 16:19:54.539 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheRemoveAllInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:19:54.539 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:19:54.539 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheRemoveAllInterceptor' to [app] 
[DEBUG] 16:19:54.569 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:54.572 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_article
[DEBUG] 16:19:54.573 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.573 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.573 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.573 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.573 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.574 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.574 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.574 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:19:54.574 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:19:54.574 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:19:54.574 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:54.574 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:54.574 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:19:54.575 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.575 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsChannelServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl>
[DEBUG] 16:19:54.575 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsChannelServiceImpl
[DEBUG] 16:19:54.575 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.575 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsChannelServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl>
[DEBUG] 16:19:54.576 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsChannelServiceImpl' to [app] 
[DEBUG] 16:19:54.576 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:54.576 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:19:54.576 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:19:54.576 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:19:54.576 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:19:54.576 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:19:54.577 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=txREAD_COMMITTED
[DEBUG] 16:19:54.577 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:54.577 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:19:54.577 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'txREAD_COMMITTED' to [app] 
[DEBUG] 16:19:54.579 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:19:54.582 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:54.586 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_channel
[DEBUG] 16:19:54.586 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.587 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.587 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.587 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.587 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.587 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.587 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.587 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:19:54.587 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:19:54.588 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:19:54.588 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:54.588 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:54.588 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:19:54.588 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.588 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.588 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.588 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsLinkClassServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl>
[DEBUG] 16:19:54.589 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsLinkClassServiceImpl
[DEBUG] 16:19:54.589 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.589 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsLinkClassServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl>
[DEBUG] 16:19:54.589 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsLinkClassServiceImpl' to [app] 
[DEBUG] 16:19:54.589 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:54.590 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl without AOP
[DEBUG] 16:19:54.590 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:54.592 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_link_class
[DEBUG] 16:19:54.593 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.593 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.593 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.593 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.594 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.595 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.595 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.595 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.595 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsTestServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl>
[DEBUG] 16:19:54.595 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsTestServiceImpl
[DEBUG] 16:19:54.595 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:54.595 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsTestServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl>
[DEBUG] 16:19:54.595 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsTestServiceImpl' to [app] 
[DEBUG] 16:19:54.595 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:54.595 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:19:54.597 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:54.599 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_test
[DEBUG] 16:19:54.600 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'redisService'<class org.nutz.integration.jedis.RedisService>
[DEBUG] 16:19:54.600 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=redisService
[DEBUG] 16:19:54.600 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisService) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:19:54.600 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'redisService'<class org.nutz.integration.jedis.RedisService>
[DEBUG] 16:19:54.601 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'redisService' to [app] 
[DEBUG] 16:19:55.072 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.jedis.RedisService without AOP
[DEBUG] 16:19:55.325 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisAgent'<>
[DEBUG] 16:19:55.325 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=jedisAgent
[DEBUG] 16:19:55.325 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jedisAgent) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:19:55.325 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'jedisAgent'<>
[DEBUG] 16:19:55.325 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'jedisAgent' to [app] 
[DEBUG] 16:19:55.326 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.jedis.JedisAgent without AOP
[DEBUG] 16:19:55.335 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:55.336 org.nutz.ioc.val.ReferTypeValue.get(ReferTypeValue.java:64) - name=memberService not found, search for type=cn.wizzer.app.member.modules.services.MemberService
[DEBUG] 16:19:55.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:55.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:55.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:55.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:55.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:55.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:55.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:55.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:19:55.338 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:19:55.338 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:19:55.338 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:55.338 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:55.338 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:19:55.338 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:55.338 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:55.338 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:55.338 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:55.338 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:55.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:55.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:55.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:55.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dao) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSourceStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sqlManager) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutDaoStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.340 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatServletStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.340 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(daoCacheSerializer) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.340 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(daoCacheInterceptor) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.340 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.340 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(hikariDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:19:55.340 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboManager) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:55.340 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(q0d579vobkhv7qmcdcjasn76ap) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:55.340 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'q0d579vobkhv7qmcdcjasn76ap'<interface cn.wizzer.app.member.modules.services.MemberService>
[DEBUG] 16:19:55.340 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=q0d579vobkhv7qmcdcjasn76ap
[DEBUG] 16:19:55.340 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(q0d579vobkhv7qmcdcjasn76ap) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:55.340 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'q0d579vobkhv7qmcdcjasn76ap'<interface cn.wizzer.app.member.modules.services.MemberService>
[DEBUG] 16:19:55.341 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'q0d579vobkhv7qmcdcjasn76ap' to [app] 
[DEBUG] 16:19:55.341 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 's4bvqiboq8jl3p4in94jlig2f7'<>
[DEBUG] 16:19:55.341 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=s4bvqiboq8jl3p4in94jlig2f7
[DEBUG] 16:19:55.341 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(s4bvqiboq8jl3p4in94jlig2f7) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:55.341 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'s4bvqiboq8jl3p4in94jlig2f7'<>
[DEBUG] 16:19:55.341 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 's4bvqiboq8jl3p4in94jlig2f7' to [app] 
[DEBUG] 16:19:55.344 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ReferenceBean without AOP
[DEBUG] 16:19:55.345 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:19:55.386 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:19:55.386 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboApplicationConfig
[DEBUG] 16:19:55.387 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboApplicationConfig) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:55.387 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:19:55.387 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboApplicationConfig' to [app] 
[DEBUG] 16:19:55.388 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.ApplicationConfig without AOP
[DEBUG] 16:19:55.388 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:19:55.388 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboRegistryConfig
[DEBUG] 16:19:55.388 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRegistryConfig) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:55.388 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:19:55.389 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboRegistryConfig' to [app] 
[DEBUG] 16:19:55.389 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.RegistryConfig without AOP
[DEBUG] 16:19:55.519 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.registry;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class RegistryFactory$Adaptive implements com.alibaba.dubbo.registry.RegistryFactory {
public com.alibaba.dubbo.registry.Registry getRegistry(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.registry.RegistryFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.registry.RegistryFactory extension = (com.alibaba.dubbo.registry.RegistryFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.registry.RegistryFactory.class).getExtension(extName);
return extension.getRegistry(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:55.536 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting.zookeeper;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ZookeeperTransporter$Adaptive implements com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter {
public com.alibaba.dubbo.remoting.zookeeper.ZookeeperClient connect(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("client", url.getParameter("transporter", "curator"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter) name from url(" + url.toString() + ") use keys([client, transporter])");
com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter extension = (com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter.class).getExtension(extName);
return extension.connect(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:55.581 com.alibaba.dubbo.registry.support.AbstractRegistry.loadProperties(AbstractRegistry.java:200) -  [DUBBO] Load registry store file /Users/haigo/.dubbo/dubbo-registry-wk-nb-dubbo-cms-119.23.144.5:2181.cache, data: {cn.wizzer.app.cms.modules.services.CmsSiteService=empty://192.168.3.8:16473/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61268&side=provider&timestamp=1533744460766, cn.wizzer.app.cms.modules.services.CmsLinkService=empty://192.168.3.8:16473/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61268&side=provider&timestamp=1533744460483, cn.wizzer.app.cms.modules.services.CmsLinkClassService=empty://192.168.3.8:16473/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61268&side=provider&timestamp=1533744460128, cn.wizzer.app.cms.modules.services.CmsArticleService=empty://192.168.3.8:16473/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61268&side=provider&timestamp=1533744460677, cn.wizzer.app.cms.modules.services.CmsChannelService=empty://192.168.3.8:16473/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61268&side=provider&timestamp=1533744460846, cn.wizzer.app.cms.modules.services.CmsTestService=empty://192.168.3.8:16473/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61268&side=provider&timestamp=1533744460595, cn.wizzer.app.member.modules.services.MemberService=empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61268&side=consumer&timestamp=1533744458633 empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61268&side=consumer&timestamp=1533744458633 empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=providers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61268&side=consumer&timestamp=1533744458633}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:55.784 org.apache.curator.utils.Compatibility.<clinit>(Compatibility.java:41) - Running in ZooKeeper 3.4.x compatibility mode
[INFO ] 16:19:55.849 org.apache.curator.framework.imps.CuratorFrameworkImpl.start(CuratorFrameworkImpl.java:290) - Starting
[DEBUG] 16:19:55.851 org.apache.curator.CuratorZookeeperClient.start(CuratorZookeeperClient.java:207) - Starting
[DEBUG] 16:19:55.851 org.apache.curator.ConnectionState.start(ConnectionState.java:109) - Starting
[DEBUG] 16:19:55.851 org.apache.curator.ConnectionState.reset(ConnectionState.java:194) - reset
[INFO ] 16:19:56.881 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:zookeeper.version=3.4.8--1, built on 02/06/2016 03:18 GMT
[INFO ] 16:19:56.882 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:host.name=192.168.3.8
[INFO ] 16:19:56.882 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.version=1.8.0_131
[INFO ] 16:19:56.882 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.vendor=Oracle Corporation
[INFO ] 16:19:56.882 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre
[INFO ] 16:19:56.883 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.class.path=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/tools.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-service-cms/target/classes:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-framework/target/classes:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-model/target/classes:/Users/haigo/.m2/repository/cn/wizzer/app/wk-code-generator-nb/5.0.1-SNAPSHOT/wk-code-generator-nb-5.0.1-20180409.075514-1.jar:/Users/haigo/.m2/repository/org/atteo/evo-inflector/1.0.1/evo-inflector-1.0.1.jar:/Users/haigo/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/haigo/.m2/repository/org/apache/velocity/velocity/1.7/velocity-1.7.jar:/Users/haigo/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar:/Users/haigo/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-common/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar:/Users/haigo/.m2/repository/org/nutz/nutz/1.r.66-SNAPSHOT/nutz-1.r.66-20180611.015908-74.jar:/Users/haigo/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-dubbo/1.r.66-SNAPSHOT/nutz-integration-dubbo-1.r.66-20180614.031821-63.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-framework/4.0.1/curator-framework-4.0.1.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-client/4.0.1/curator-client-4.0.1.jar:/Users/haigo/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/haigo/.m2/repository/com/alibaba/dubbo/2.6.2/dubbo-2.6.2.jar:/Users/haigo/.m2/repository/org/javassist/javassist/3.22.0-GA/javassist-3.22.0-GA.jar:/Users/haigo/.m2/repository/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/haigo/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/com/101tec/zkclient/0.10/zkclient-0.10.jar:/Users/haigo/.m2/repository/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.jar:/Users/haigo/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/Users/haigo/.m2/repository/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-daocache/1.r.66-SNAPSHOT/nutz-plugins-daocache-1.r.66-20180614.031905-54.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-jedis/1.r.66-SNAPSHOT/nutz-integration-jedis-1.r.66-20180614.031845-61.jar:/Users/haigo/.m2/repository/redis/clients/jedis/2.9.0/jedis-2.9.0.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-wkcache/1.r.66-SNAPSHOT/nutz-plugins-wkcache-1.r.66-20180614.031939-53.jar:/Users/haigo/.m2/repository/com/alibaba/druid/1.1.9/druid-1.1.9.jar:/Users/haigo/.m2/repository/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/Users/haigo/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/Users/haigo/.m2/repository/org/springframework/spring-core/4.1.8.RELEASE/spring-core-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/haigo/.m2/repository/org/springframework/spring-context/4.1.8.RELEASE/spring-context-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-aop/4.1.8.RELEASE/spring-aop-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/Users/haigo/.m2/repository/org/springframework/spring-beans/4.3.16.RELEASE/spring-beans-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-expression/4.3.16.RELEASE/spring-expression-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-tx/4.1.8.RELEASE/spring-tx-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-jms/4.1.8.RELEASE/spring-jms-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-messaging/4.1.8.RELEASE/spring-messaging-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/apache/xbean/xbean-spring/3.16/xbean-spring-3.16.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-core/5.7.0/activemq-core-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1.1/geronimo-jms_1.1_spec-1.1.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/kahadb/5.7.0/kahadb-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar:/Users/haigo/.m2/repository/org/fusesource/mqtt-client/mqtt-client/1.3/mqtt-client-1.3.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch-transport/1.11/hawtdispatch-transport-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch/1.11/hawtdispatch-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar:/Users/haigo/.m2/repository/commons-net/commons-net/3.1/commons-net-3.1.jar:/Users/haigo/.m2/repository/org/jasypt/jasypt/1.9.0/jasypt-1.9.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-pool/5.12.1/activemq-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-jms-pool/5.12.1/activemq-jms-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-client/5.12.1/activemq-client-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar:/Applications/IntelliJ IDEA 15.app/Contents/lib/idea_rt.jar
[INFO ] 16:19:56.883 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.library.path=/Users/haigo/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
[INFO ] 16:19:56.883 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.io.tmpdir=/var/folders/f7/j879sdwj0fncvdxrsmtrjk300000gn/T/
[INFO ] 16:19:56.883 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.compiler=<NA>
[INFO ] 16:19:56.883 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.name=Mac OS X
[INFO ] 16:19:56.883 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.arch=x86_64
[INFO ] 16:19:56.883 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.version=10.12.6
[INFO ] 16:19:56.884 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.name=haigo
[INFO ] 16:19:56.884 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.home=/Users/haigo
[INFO ] 16:19:56.884 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.dir=/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo
[INFO ] 16:19:56.885 org.apache.zookeeper.ZooKeeper.<init>(ZooKeeper.java:438) - Initiating client connection, connectString=119.23.144.5:2181 sessionTimeout=60000 watcher=org.apache.curator.ConnectionState@27068a50
[DEBUG] 16:19:56.917 org.apache.zookeeper.ClientCnxn.<clinit>(ClientCnxn.java:117) - zookeeper.disableAutoWatchReset is false
[INFO ] 16:19:56.972 org.apache.zookeeper.ClientCnxn$SendThread.logStartConnect(ClientCnxn.java:1032) - Opening socket connection to server 119.23.144.5/119.23.144.5:2181. Will not attempt to authenticate using SASL (unknown error)
[INFO ] 16:19:56.986 org.apache.curator.framework.imps.CuratorFrameworkImpl.start(CuratorFrameworkImpl.java:332) - Default schema
[INFO ] 16:19:57.000 org.apache.zookeeper.ClientCnxn$SendThread.primeConnection(ClientCnxn.java:876) - Socket connection established to 119.23.144.5/119.23.144.5:2181, initiating session
[DEBUG] 16:19:57.016 org.apache.zookeeper.ClientCnxn$SendThread.primeConnection(ClientCnxn.java:949) - Session establishment request sent on 119.23.144.5/119.23.144.5:2181
[DEBUG] 16:19:57.039 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class RouterFactory$Adaptive implements com.alibaba.dubbo.rpc.cluster.RouterFactory {
public com.alibaba.dubbo.rpc.cluster.Router getRouter(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getProtocol();
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.RouterFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.cluster.RouterFactory extension = (com.alibaba.dubbo.rpc.cluster.RouterFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.RouterFactory.class).getExtension(extName);
return extension.getRouter(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.049 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ConfiguratorFactory$Adaptive implements com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory {
public com.alibaba.dubbo.rpc.cluster.Configurator getConfigurator(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getProtocol();
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory extension = (com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory.class).getExtension(extName);
return extension.getConfigurator(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.050 org.apache.zookeeper.ClientCnxn$SendThread.onConnected(ClientCnxn.java:1299) - Session establishment complete on server 119.23.144.5/119.23.144.5:2181, sessionid = 0x1003a1f71460038, negotiated timeout = 40000
[INFO ] 16:19:57.057 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=consumers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=consumer&timestamp=1533802795392, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.089 org.apache.curator.ConnectionState.process(ConnectionState.java:174) - Negotiated session timeout: 40000
[INFO ] 16:19:57.119 org.apache.curator.framework.state.ConnectionStateManager.postState(ConnectionStateManager.java:237) - State change: CONNECTED
[DEBUG] 16:19:57.121 org.apache.curator.framework.imps.CuratorFrameworkImpl.unSleepBackgroundOperations(CuratorFrameworkImpl.java:1004) - Clearing sleep for 0 operations
[DEBUG] 16:19:57.165 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 1,3  replyHeader:: 1,5352,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers,F  response:: s{2076,2076,1528451666921,1528451666921,0,238,0,0,0,0,5349} 
[DEBUG] 16:19:57.198 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 2,1  replyHeader:: 2,5353,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers/consumer%253A%252F%252F192.168.3.8%252Fcn.wizzer.app.member.modules.services.MemberService%253Fapplication%253Dwk-nb-dubbo-cms%2526category%253Dconsumers%2526check%253Dfalse%2526dubbo%253D2.6.2%2526interface%253Dcn.wizzer.app.member.modules.services.MemberService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dconsumer%2526timestamp%253D1533802795392,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers/consumer%253A%252F%252F192.168.3.8%252Fcn.wizzer.app.member.modules.services.MemberService%253Fapplication%253Dwk-nb-dubbo-cms%2526category%253Dconsumers%2526check%253Dfalse%2526dubbo%253D2.6.2%2526interface%253Dcn.wizzer.app.member.modules.services.MemberService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dconsumer%2526timestamp%253D1533802795392 
[INFO ] 16:19:57.198 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=providers,configurators,routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=consumer&timestamp=1533802795392, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.210 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 3,3  replyHeader:: 3,5353,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:19:57.221 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 4,1  replyHeader:: 4,5354,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/providers,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:19:57.258 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 5,12  replyHeader:: 5,5354,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/providers,T  response:: v{},s{2073,2073,1528451666917,1528451666917,0,108,0,0,0,0,3955} 
[DEBUG] 16:19:57.268 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 6,3  replyHeader:: 6,5354,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:19:57.280 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 7,1  replyHeader:: 7,5355,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:19:57.290 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 8,12  replyHeader:: 8,5355,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/configurators,T  response:: v{},s{2083,2083,1528451666930,1528451666930,0,0,0,0,0,0,2083} 
[DEBUG] 16:19:57.300 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 9,3  replyHeader:: 9,5355,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:19:57.311 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 10,1  replyHeader:: 10,5356,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/routers,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:19:57.321 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 11,12  replyHeader:: 11,5356,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/routers,T  response:: v{},s{2080,2080,1528451666925,1528451666925,0,0,0,0,0,0,2080} 
[INFO ] 16:19:57.321 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=providers,configurators,routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=consumer&timestamp=1533802795392, urls: [empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=providers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=consumer&timestamp=1533802795392, empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=consumer&timestamp=1533802795392, empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=consumer&timestamp=1533802795392], dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.339 com.alibaba.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:425) -  [DUBBO] Refer dubbo service cn.wizzer.app.member.modules.services.MemberService from url zookeeper://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&register.ip=192.168.3.8&side=consumer&timestamp=1533802795392, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.384 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:57.385 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:57.385 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:57.385 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:57.385 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:57.385 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:57.386 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:57.386 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:19:57.386 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:19:57.386 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:19:57.386 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:57.386 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:19:57.387 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:19:57.387 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:57.387 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:57.387 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:57.387 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:57.387 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:57.387 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:57.387 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:57.387 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:57.387 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsSiteServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl>
[DEBUG] 16:19:57.387 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsSiteServiceImpl
[DEBUG] 16:19:57.388 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:57.388 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsSiteServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl>
[DEBUG] 16:19:57.388 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsSiteServiceImpl' to [app] 
[DEBUG] 16:19:57.388 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:57.388 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:19:57.388 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:19:57.388 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:19:57.388 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:19:57.391 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:19:57.395 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_site
[DEBUG] 16:19:57.395 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '6hd0pocfq6imdr0iel0n1hb7q0'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:57.395 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=6hd0pocfq6imdr0iel0n1hb7q0
[DEBUG] 16:19:57.395 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(6hd0pocfq6imdr0iel0n1hb7q0) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:57.396 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'6hd0pocfq6imdr0iel0n1hb7q0'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:57.396 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '6hd0pocfq6imdr0iel0n1hb7q0' to [app] 
[DEBUG] 16:19:57.397 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:19:57.397 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:19:57.425 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:19:57.425 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:19:57.425 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[DEBUG] 16:19:57.425 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboPrototeConfig
[DEBUG] 16:19:57.425 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboPrototeConfig) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:57.425 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[DEBUG] 16:19:57.425 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboPrototeConfig' to [app] 
[DEBUG] 16:19:57.426 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.ProtocolConfig without AOP
[DEBUG] 16:19:57.482 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.cache;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class CacheFactory$Adaptive implements com.alibaba.dubbo.cache.CacheFactory {
public com.alibaba.dubbo.cache.Cache getCache(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.rpc.Invocation arg1) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
if (arg1 == null) throw new IllegalArgumentException("invocation == null");
String methodName = arg1.getMethodName();
String extName = url.getMethodParameter(methodName, "cache", "lru");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.cache.CacheFactory) name from url(" + url.toString() + ") use keys([cache])");
com.alibaba.dubbo.cache.CacheFactory extension = (com.alibaba.dubbo.cache.CacheFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.cache.CacheFactory.class).getExtension(extName);
return extension.getCache(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.491 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.monitor;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class MonitorFactory$Adaptive implements com.alibaba.dubbo.monitor.MonitorFactory {
public com.alibaba.dubbo.monitor.Monitor getMonitor(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.monitor.MonitorFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.monitor.MonitorFactory extension = (com.alibaba.dubbo.monitor.MonitorFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.monitor.MonitorFactory.class).getExtension(extName);
return extension.getMonitor(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.498 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.validation;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Validation$Adaptive implements com.alibaba.dubbo.validation.Validation {
public com.alibaba.dubbo.validation.Validator getValidator(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("validation", "jvalidation");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.validation.Validation) name from url(" + url.toString() + ") use keys([validation])");
com.alibaba.dubbo.validation.Validation extension = (com.alibaba.dubbo.validation.Validation)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.validation.Validation.class).getExtension(extName);
return extension.getValidator(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.505 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsTestService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.505 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsTestService to url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797430, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.506 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsTestService url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797430 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61790&registry=zookeeper&timestamp=1533802797430, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.519 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Transporter$Adaptive implements com.alibaba.dubbo.remoting.Transporter {
public com.alibaba.dubbo.remoting.Client connect(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.remoting.ChannelHandler arg1) throws com.alibaba.dubbo.remoting.RemotingException {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("client", url.getParameter("transporter", "netty"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Transporter) name from url(" + url.toString() + ") use keys([client, transporter])");
com.alibaba.dubbo.remoting.Transporter extension = (com.alibaba.dubbo.remoting.Transporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Transporter.class).getExtension(extName);
return extension.connect(arg0, arg1);
}
public com.alibaba.dubbo.remoting.Server bind(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.remoting.ChannelHandler arg1) throws com.alibaba.dubbo.remoting.RemotingException {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("server", url.getParameter("transporter", "netty"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Transporter) name from url(" + url.toString() + ") use keys([server, transporter])");
com.alibaba.dubbo.remoting.Transporter extension = (com.alibaba.dubbo.remoting.Transporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Transporter.class).getExtension(extName);
return extension.bind(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.555 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Dispatcher$Adaptive implements com.alibaba.dubbo.remoting.Dispatcher {
public com.alibaba.dubbo.remoting.ChannelHandler dispatch(com.alibaba.dubbo.remoting.ChannelHandler arg0, com.alibaba.dubbo.common.URL arg1) {
if (arg1 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg1;
String extName = url.getParameter("dispatcher", url.getParameter("dispather", url.getParameter("channel.handler", "all")));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Dispatcher) name from url(" + url.toString() + ") use keys([dispatcher, dispather, channel.handler])");
com.alibaba.dubbo.remoting.Dispatcher extension = (com.alibaba.dubbo.remoting.Dispatcher)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Dispatcher.class).getExtension(extName);
return extension.dispatch(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.564 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.common.threadpool;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ThreadPool$Adaptive implements com.alibaba.dubbo.common.threadpool.ThreadPool {
public java.util.concurrent.Executor getExecutor(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("threadpool", "fixed");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.common.threadpool.ThreadPool) name from url(" + url.toString() + ") use keys([threadpool])");
com.alibaba.dubbo.common.threadpool.ThreadPool extension = (com.alibaba.dubbo.common.threadpool.ThreadPool)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.common.threadpool.ThreadPool.class).getExtension(extName);
return extension.getExecutor(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.618 com.alibaba.dubbo.remoting.transport.netty.NettyHelper$DubboLogger.debug(NettyHelper.java:73) -  [DUBBO] Couldn't determine the NIO constraint level from the system properties; using the safest level (2), dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.671 com.alibaba.dubbo.remoting.transport.AbstractServer.<init>(AbstractServer.java:65) -  [DUBBO] Start NettyServer bind /0.0.0.0:16819, export /192.168.3.8:16819, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.674 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797430, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.686 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 12,3  replyHeader:: 12,5356,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers,F  response:: s{2208,2208,1528513630497,1528513630497,0,182,0,0,0,0,5350} 
[DEBUG] 16:19:57.698 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 13,1  replyHeader:: 13,5357,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsTestService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsTestService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802797430,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsTestService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsTestService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802797430 
[INFO ] 16:19:57.699 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797430, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.710 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 14,3  replyHeader:: 14,5357,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService,F  response:: s{2205,2205,1528513630491,1528513630491,0,4,0,0,14,4,2219} 
[DEBUG] 16:19:57.720 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 15,1  replyHeader:: 15,5358,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:19:57.730 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 16,12  replyHeader:: 16,5358,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/configurators,T  response:: v{},s{2219,2219,1528513630516,1528513630516,0,0,0,0,0,0,2219} 
[INFO ] 16:19:57.730 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797430, urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797430], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.730 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797430], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.731 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797430, override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797430], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.732 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '2rghifl0k2jckq14bit1vtnvtu'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:57.732 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=2rghifl0k2jckq14bit1vtnvtu
[DEBUG] 16:19:57.732 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(2rghifl0k2jckq14bit1vtnvtu) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:57.732 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'2rghifl0k2jckq14bit1vtnvtu'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:57.732 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '2rghifl0k2jckq14bit1vtnvtu' to [app] 
[DEBUG] 16:19:57.733 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:19:57.733 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:19:57.733 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:19:57.733 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:19:57.733 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:19:57.754 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.754 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService to url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797736, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.754 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797736 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61790&registry=zookeeper&timestamp=1533802797736, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.755 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797736, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.764 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 17,3  replyHeader:: 17,5358,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers,F  response:: s{41,41,1528272613392,1528272613392,0,190,0,0,14,0,5346} 
[DEBUG] 16:19:57.775 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 18,1  replyHeader:: 18,5359,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsChannelService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsChannelService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetChannel%252ClistChannel%252CgetMaxId%252CgetSubPath%252ChasChannel%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CdeleteAndChild%252Csave%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802797736,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsChannelService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsChannelService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetChannel%252ClistChannel%252CgetMaxId%252CgetSubPath%252ChasChannel%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CdeleteAndChild%252Csave%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802797736 
[INFO ] 16:19:57.775 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797736, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.785 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 19,3  replyHeader:: 19,5359,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService,F  response:: s{40,40,1528272613381,1528272613381,0,4,0,0,14,4,781} 
[DEBUG] 16:19:57.797 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 20,1  replyHeader:: 20,5360,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:19:57.808 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 21,12  replyHeader:: 21,5360,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/configurators,T  response:: v{},s{43,43,1528272613433,1528272613433,0,0,0,0,14,0,43} 
[INFO ] 16:19:57.808 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797736, urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797736], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.808 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797736], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.809 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797736, override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797736], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.809 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '698gofefleg55rnqc3mj4cu6i9'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:57.809 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=698gofefleg55rnqc3mj4cu6i9
[DEBUG] 16:19:57.809 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(698gofefleg55rnqc3mj4cu6i9) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:57.809 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'698gofefleg55rnqc3mj4cu6i9'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:57.809 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '698gofefleg55rnqc3mj4cu6i9' to [app] 
[DEBUG] 16:19:57.809 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:19:57.810 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:19:57.810 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:19:57.810 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:19:57.810 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:19:57.853 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.853 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService to url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797812, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.854 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797812 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61790&registry=zookeeper&timestamp=1533802797812, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:57.854 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797812, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.865 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 22,3  replyHeader:: 22,5360,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers,F  response:: s{53,53,1528272629142,1528272629142,0,192,0,0,14,0,5347} 
[DEBUG] 16:19:57.876 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 23,1  replyHeader:: 23,5361,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsLinkClassService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkClassService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802797812,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsLinkClassService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkClassService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802797812 
[INFO ] 16:19:57.876 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797812, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.885 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 24,3  replyHeader:: 24,5361,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService,F  response:: s{52,52,1528272629057,1528272629057,0,4,0,0,14,4,949} 
[DEBUG] 16:19:57.896 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 25,1  replyHeader:: 25,5362,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:19:57.905 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 26,12  replyHeader:: 26,5362,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/configurators,T  response:: v{},s{55,55,1528272629200,1528272629200,0,0,0,0,14,0,55} 
[INFO ] 16:19:57.905 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797812, urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797812], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:57.905 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797812], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.392 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797812, override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802797812], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.392 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'v45lt7d4jejr4rackdobthvmuf'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:58.392 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=v45lt7d4jejr4rackdobthvmuf
[DEBUG] 16:19:58.392 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(v45lt7d4jejr4rackdobthvmuf) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:58.392 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'v45lt7d4jejr4rackdobthvmuf'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:58.392 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'v45lt7d4jejr4rackdobthvmuf' to [app] 
[DEBUG] 16:19:58.393 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:19:58.393 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:19:58.393 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:19:58.393 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:19:58.393 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:19:58.425 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:58.425 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService to url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798395, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:58.425 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798395 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61790&registry=zookeeper&timestamp=1533802798395, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:58.432 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798395, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.442 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 27,3  replyHeader:: 27,5362,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers,F  response:: s{49,49,1528272623792,1528272623792,0,192,0,0,14,0,5345} 
[DEBUG] 16:19:58.455 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 28,1  replyHeader:: 28,5363,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsSiteService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsSiteService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CgetSite%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802798395,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsSiteService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsSiteService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CgetSite%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802798395 
[INFO ] 16:19:58.455 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798395, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.464 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 29,3  replyHeader:: 29,5363,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService,F  response:: s{48,48,1528272623776,1528272623776,0,4,0,0,14,4,364} 
[DEBUG] 16:19:58.475 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 30,1  replyHeader:: 30,5364,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:19:58.485 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 31,12  replyHeader:: 31,5364,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/configurators,T  response:: v{},s{51,51,1528272623832,1528272623832,0,0,0,0,14,0,51} 
[INFO ] 16:19:58.485 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798395, urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798395], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.485 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798395], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.486 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798395, override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798395], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.486 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'o0flsifagmj7co1643ujeq6k02'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:58.486 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=o0flsifagmj7co1643ujeq6k02
[DEBUG] 16:19:58.486 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(o0flsifagmj7co1643ujeq6k02) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:58.486 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'o0flsifagmj7co1643ujeq6k02'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:58.486 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'o0flsifagmj7co1643ujeq6k02' to [app] 
[DEBUG] 16:19:58.486 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:19:58.487 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:19:58.487 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:19:58.487 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:19:58.487 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:19:58.532 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:58.532 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService to url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798496, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:58.532 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798496 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61790&registry=zookeeper&timestamp=1533802798496, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:58.533 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798496, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.544 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 32,3  replyHeader:: 32,5364,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers,F  response:: s{45,45,1528272618645,1528272618645,0,192,0,0,14,0,5348} 
[DEBUG] 16:19:58.558 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 33,1  replyHeader:: 33,5365,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsLinkService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802798496,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsLinkService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802798496 
[INFO ] 16:19:58.559 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798496, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.570 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 34,3  replyHeader:: 34,5365,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService,F  response:: s{44,44,1528272618636,1528272618636,0,4,0,0,14,4,973} 
[DEBUG] 16:19:58.580 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 35,1  replyHeader:: 35,5366,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:19:58.590 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 36,12  replyHeader:: 36,5366,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/configurators,T  response:: v{},s{47,47,1528272618682,1528272618682,0,0,0,0,14,0,47} 
[INFO ] 16:19:58.591 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798496, urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798496], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.591 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798496], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.591 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798496, override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798496], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.592 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '6k19gkfa76jevp9lnn0g5d8jeo'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:58.592 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=6k19gkfa76jevp9lnn0g5d8jeo
[DEBUG] 16:19:58.592 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(6k19gkfa76jevp9lnn0g5d8jeo) in DubboConfigIocLoader@431506362
[DEBUG] 16:19:58.592 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'6k19gkfa76jevp9lnn0g5d8jeo'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:19:58.592 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '6k19gkfa76jevp9lnn0g5d8jeo' to [app] 
[DEBUG] 16:19:58.592 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:19:58.592 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:19:58.593 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:19:58.593 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:19:58.593 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:19:58.607 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:58.607 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService to url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798594, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:58.607 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService url dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16819&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798594 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61790&registry=zookeeper&timestamp=1533802798594, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:19:58.608 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798594, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.617 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 37,3  replyHeader:: 37,5366,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers,F  response:: s{57,57,1528272634291,1528272634291,0,192,0,0,14,0,5344} 
[DEBUG] 16:19:58.630 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 38,1  replyHeader:: 38,5367,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsArticleService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsArticleService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CgetListPage%252CupdateIgnoreNull%252CgetArticle%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802798594,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers/dubbo%253A%252F%252F192.168.3.8%253A16819%252Fcn.wizzer.app.cms.modules.services.CmsArticleService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsArticleService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CgetListPage%252CupdateIgnoreNull%252CgetArticle%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61790%2526side%253Dprovider%2526timestamp%253D1533802798594 
[INFO ] 16:19:58.630 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798594, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.643 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 39,3  replyHeader:: 39,5367,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService,F  response:: s{56,56,1528272634281,1528272634281,0,4,0,0,14,4,829} 
[DEBUG] 16:19:58.652 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 40,1  replyHeader:: 40,5368,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:19:58.661 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460038, packet:: clientPath:null serverPath:null finished:false header:: 41,12  replyHeader:: 41,5368,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/configurators,T  response:: v{},s{59,59,1528272634328,1528272634328,0,0,0,0,14,0,59} 
[INFO ] 16:19:58.662 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798594, urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798594], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.662 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798594], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.662 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798594, override urls: [empty://192.168.3.8:16819/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61790&side=provider&timestamp=1533802798594], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:19:58.663 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRpcCmsMainLauncher'<class cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher>
[DEBUG] 16:19:58.664 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboRpcCmsMainLauncher
[DEBUG] 16:19:58.664 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:58.664 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboRpcCmsMainLauncher'<class cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher>
[DEBUG] 16:19:58.664 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboRpcCmsMainLauncher' to [app] 
[DEBUG] 16:19:58.664 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher without AOP
[DEBUG] 16:19:58.666 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<interface org.nutz.dao.Dao>
[DEBUG] 16:19:58.667 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:19:58.667 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisAgent'<class org.nutz.integration.jedis.JedisAgent>
[DEBUG] 16:19:58.686 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( org/nutz/conf/NutzDefaultConfig.js ) , regex( \.(js|json)$ )
[DEBUG] 16:19:58.696 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'redisIdGenerator'<class cn.wizzer.app.cms.commons.ig.RedisIdGenerator>
[DEBUG] 16:19:58.697 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=redisIdGenerator
[DEBUG] 16:19:58.697 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:19:58.697 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'redisIdGenerator'<class cn.wizzer.app.cms.commons.ig.RedisIdGenerator>
[DEBUG] 16:19:58.697 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'redisIdGenerator' to [app] 
[DEBUG] 16:19:58.697 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.commons.ig.RedisIdGenerator without AOP
[DEBUG] 16:19:58.699 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisAgent'<class org.nutz.integration.jedis.JedisAgent>
[DEBUG] 16:19:58.702 org.nutz.resource.Scans.scan(Scans.java:280) - Found 25 resource by src( cn/wizzer/app/cms/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:19:58.899 org.nutz.resource.Scans.scan(Scans.java:280) - Found 25 resource by src( cn/wizzer/app/cms/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:19:58.964 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisPool'<class redis.clients.util.Pool>
[DEBUG] 16:19:58.964 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=jedisPool
[DEBUG] 16:19:58.965 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jedisPool) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:19:58.965 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'jedisPool'<class redis.clients.util.Pool>
[DEBUG] 16:19:58.965 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'jedisPool' to [app] 
[DEBUG] 16:19:58.969 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisPoolConfig'<>
[DEBUG] 16:19:58.969 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=jedisPoolConfig
[DEBUG] 16:19:58.969 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jedisPoolConfig) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:19:58.969 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'jedisPoolConfig'<>
[DEBUG] 16:19:58.969 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'jedisPoolConfig' to [app] 
[DEBUG] 16:19:58.970 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class redis.clients.jedis.JedisPoolConfig without AOP
[DEBUG] 16:19:58.984 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:58.985 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:58.985 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:58.985 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:58.985 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:58.985 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:59.000 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class redis.clients.jedis.JedisPool without AOP
[DEBUG] 16:19:59.000 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisPoolConfig'<>
[DEBUG] 16:19:59.000 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:59.000 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:59.000 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:59.000 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:59.001 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:19:59.095 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT table_name FROM information_schema.columns WHERE table_schema='nb_boot' AND column_name='id'
[DEBUG] 16:19:59.110 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=15ms, sql=SELECT table_name FROM information_schema.columns WHERE table_schema='nb_boot' AND column_name='id'
[DEBUG] 16:19:59.117 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_article  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.127 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=10ms, sql=SELECT * FROM cms_article  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.127 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_channel  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.137 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM cms_channel  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.137 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_link  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.147 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=10ms, sql=SELECT * FROM cms_link  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.147 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_link_class  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.159 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=11ms, sql=SELECT * FROM cms_link_class  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.160 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_site  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.172 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=12ms, sql=SELECT * FROM cms_site  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.172 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_test  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.182 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM cms_test  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.182 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM member  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.210 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=28ms, sql=SELECT * FROM member  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.210 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_dict  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.221 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=10ms, sql=SELECT * FROM sys_dict  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.221 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_log_  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.230 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM sys_log_  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.230 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_log_201806  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.239 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM sys_log_201806  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.240 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_menu  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.250 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=10ms, sql=SELECT * FROM sys_menu  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.250 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_province  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.259 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM sys_province  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.259 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_role  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.268 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM sys_role  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.268 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_route  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.276 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM sys_route  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.277 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_task  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.287 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM sys_task  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.287 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_unit  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.296 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM sys_unit  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.297 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_user  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.307 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=10ms, sql=SELECT * FROM sys_user  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.307 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_config  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.316 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_config  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.316 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_mass  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.325 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_mass  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.325 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_mass_news  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.348 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=23ms, sql=SELECT * FROM wx_mass_news  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.348 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_mass_send  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.358 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=10ms, sql=SELECT * FROM wx_mass_send  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.358 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_menu  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.368 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_menu  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.369 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_msg  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.378 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_msg  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.378 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_msg_reply  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.387 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_msg_reply  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.387 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_reply  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.398 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=11ms, sql=SELECT * FROM wx_reply  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.398 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_reply_news  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.408 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_reply_news  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.408 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_reply_txt  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.417 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_reply_txt  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.417 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_tpl_id  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.426 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_tpl_id  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.426 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_tpl_list  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.435 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_tpl_list  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.435 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_tpl_log  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.444 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_tpl_log  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.444 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_user  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:19:59.454 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=10ms, sql=SELECT * FROM wx_user  ORDER BY id DESC   LIMIT 0, 1 
[INFO ] 16:19:59.455 cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher.initRedisIg(DubboRpcCmsMainLauncher.java:139) - init redis ig time::491ms
[DEBUG] 16:19:59.455 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sessionAwareListenerContainer'<class org.springframework.jms.listener.DefaultMessageListenerContainer>
[DEBUG] 16:19:59.455 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=sessionAwareListenerContainer
[DEBUG] 16:19:59.455 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:59.455 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'sessionAwareListenerContainer'<class org.springframework.jms.listener.DefaultMessageListenerContainer>
[DEBUG] 16:19:59.455 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'sessionAwareListenerContainer' to [app] 
[DEBUG] 16:19:59.543 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.springframework.jms.listener.DefaultMessageListenerContainer without AOP
[DEBUG] 16:19:59.641 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'connectionFactory'<>
[DEBUG] 16:19:59.641 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=connectionFactory
[DEBUG] 16:19:59.641 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:59.641 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'connectionFactory'<>
[DEBUG] 16:19:59.641 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'connectionFactory' to [app] 
[DEBUG] 16:19:59.664 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.springframework.jms.connection.SingleConnectionFactory without AOP
[DEBUG] 16:19:59.670 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'pooledConnectionFactory'<>
[DEBUG] 16:19:59.670 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=pooledConnectionFactory
[DEBUG] 16:19:59.670 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:59.670 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'pooledConnectionFactory'<>
[DEBUG] 16:19:59.670 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'pooledConnectionFactory' to [app] 
[DEBUG] 16:19:59.690 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.pool.PooledConnectionFactory without AOP
[DEBUG] 16:19:59.703 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'targetConnectionFactory'<>
[DEBUG] 16:19:59.703 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=targetConnectionFactory
[DEBUG] 16:19:59.703 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:59.704 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'targetConnectionFactory'<>
[DEBUG] 16:19:59.704 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'targetConnectionFactory' to [app] 
[DEBUG] 16:19:59.761 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.ActiveMQConnectionFactory without AOP
[DEBUG] 16:19:59.841 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sessionAwareQueue'<>
[DEBUG] 16:19:59.841 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=sessionAwareQueue
[DEBUG] 16:19:59.841 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:59.841 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'sessionAwareQueue'<>
[DEBUG] 16:19:59.841 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'sessionAwareQueue' to [app] 
[DEBUG] 16:19:59.842 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.command.ActiveMQQueue without AOP
[DEBUG] 16:19:59.856 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'consumerSessionAwareMessageListener'<>
[DEBUG] 16:19:59.856 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=consumerSessionAwareMessageListener
[DEBUG] 16:19:59.857 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:19:59.857 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'consumerSessionAwareMessageListener'<>
[DEBUG] 16:19:59.857 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'consumerSessionAwareMessageListener' to [app] 
[DEBUG] 16:19:59.857 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.commons.activemq.ConsumerSessionAwareMessageListener without AOP
[DEBUG] 16:20:00.089 org.apache.activemq.transport.WireFormatNegotiator.sendWireFormat(WireFormatNegotiator.java:82) - Sending: WireFormatInfo { version=9, properties={TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, StackTraceEnabled=true, CacheEnabled=true, TightEncodingEnabled=true, MaxFrameSize=9223372036854775807, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000}, magic=[A,c,t,i,v,e,M,Q]}
[INFO ] 16:20:00.094 org.springframework.jms.connection.SingleConnectionFactory.initConnection(SingleConnectionFactory.java:311) - Established shared JMS Connection: PooledConnection { ConnectionPool[ActiveMQConnection {id=ID:haigodeiMac.local-51353-1533802799978-1:1,clientId=null,started=false}] }
[DEBUG] 16:20:00.098 org.springframework.jms.listener.AbstractJmsListeningContainer.establishSharedConnection(AbstractJmsListeningContainer.java:382) - Established shared JMS Connection
[DEBUG] 16:20:00.100 org.springframework.jms.listener.AbstractJmsListeningContainer.resumePausedTasks(AbstractJmsListeningContainer.java:549) - Resumed paused task: org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker@31ddb930
[DEBUG] 16:20:00.103 org.apache.activemq.transport.InactivityMonitor.configuredOk(InactivityMonitor.java:92) - Using min of local: WireFormatInfo { version=9, properties={TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, StackTraceEnabled=true, CacheEnabled=true, TightEncodingEnabled=true, MaxFrameSize=9223372036854775807, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=12, properties={TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, ProviderName=ActiveMQ, StackTraceEnabled=true, PlatformDetails=Java, CacheEnabled=true, TightEncodingEnabled=true, MaxFrameSize=104857600, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000, ProviderVersion=5.15.4}, magic=[A,c,t,i,v,e,M,Q]}
[DEBUG] 16:20:00.104 org.apache.activemq.transport.WireFormatNegotiator.negociate(WireFormatNegotiator.java:118) - Received WireFormat: WireFormatInfo { version=12, properties={TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, ProviderName=ActiveMQ, StackTraceEnabled=true, PlatformDetails=Java, CacheEnabled=true, TightEncodingEnabled=true, MaxFrameSize=104857600, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000, ProviderVersion=5.15.4}, magic=[A,c,t,i,v,e,M,Q]}
[DEBUG] 16:20:00.104 org.apache.activemq.transport.WireFormatNegotiator.negociate(WireFormatNegotiator.java:125) - tcp:///127.0.0.1:61616@51354 before negotiation: OpenWireFormat{version=9, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807}
[DEBUG] 16:20:00.104 org.apache.activemq.transport.WireFormatNegotiator.negociate(WireFormatNegotiator.java:140) - tcp:///127.0.0.1:61616@51354 after negotiation: OpenWireFormat{version=9, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=104857600}
ok
[DEBUG] 16:20:00.117 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'activeMqJmsTemplate'<class org.springframework.jms.core.JmsTemplate>
[DEBUG] 16:20:00.118 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=activeMqJmsTemplate
[DEBUG] 16:20:00.118 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:20:00.118 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'activeMqJmsTemplate'<class org.springframework.jms.core.JmsTemplate>
[DEBUG] 16:20:00.118 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'activeMqJmsTemplate' to [app] 
[INFO ] 16:20:00.118 org.nutz.boot.NbApp.execute(NbApp.java:213) - wk-nb-dubbo-cms started : 8856ms
[DEBUG] 16:20:00.123 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.springframework.jms.core.JmsTemplate without AOP
[DEBUG] 16:20:00.146 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'connectionFactory'<>
Thread-6 向队列swj发送消息---------------------->xx
[DEBUG] 16:20:00.148 org.apache.activemq.thread.TaskRunnerFactory.init(TaskRunnerFactory.java:91) - Initialized TaskRunnerFactory[ActiveMQ Session Task] using ExecutorService: java.util.concurrent.ThreadPoolExecutor@4caf5b91[Running, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]
[DEBUG] 16:20:00.151 org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:492) - Executing callback on JMS Session: PooledSession { ActiveMQSession {id=ID:haigodeiMac.local-51353-1533802799978-1:1:2,started=true} }
[DEBUG] 16:20:00.163 org.springframework.jms.core.JmsTemplate.doSend(JmsTemplate.java:605) - Sending created message: ActiveMQTextMessage {commandId = 0, responseRequired = false, messageId = null, originalDestination = null, originalTransactionId = null, producerId = null, destination = null, transactionId = null, expiration = 0, timestamp = 0, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = false, type = null, priority = 0, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, text = xx------------------------}
[DEBUG] 16:20:00.167 org.springframework.jms.listener.AbstractPollingMessageListenerContainer.doReceiveAndExecute(AbstractPollingMessageListenerContainer.java:295) - Received message of type [class org.apache.activemq.command.ActiveMQTextMessage] from consumer [PooledMessageConsumer { ActiveMQMessageConsumer { value=ID:haigodeiMac.local-51353-1533802799978-1:1:1:1, started=true } }] of session [PooledSession { ActiveMQSession {id=ID:haigodeiMac.local-51353-1533802799978-1:1:1,started=true} }]
==>receive message:xx------------------------

这是cms的启动日志

/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/bin/java -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:51363,suspend=y,server=n -Dfile.encoding=UTF-8 -classpath "/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/tools.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-web-api/target/classes:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-framework/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-daocache/1.r.66-SNAPSHOT/nutz-plugins-daocache-1.r.66-20180614.031905-54.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-model/target/classes:/Users/haigo/.m2/repository/cn/wizzer/app/wk-code-generator-nb/5.0.1-SNAPSHOT/wk-code-generator-nb-5.0.1-20180409.075514-1.jar:/Users/haigo/.m2/repository/org/atteo/evo-inflector/1.0.1/evo-inflector-1.0.1.jar:/Users/haigo/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/haigo/.m2/repository/org/apache/velocity/velocity/1.7/velocity-1.7.jar:/Users/haigo/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar:/Users/haigo/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-common/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar:/Users/haigo/.m2/repository/org/nutz/nutz/1.r.66-SNAPSHOT/nutz-1.r.66-20180611.015908-74.jar:/Users/haigo/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-dubbo/1.r.66-SNAPSHOT/nutz-integration-dubbo-1.r.66-20180614.031821-63.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-framework/4.0.1/curator-framework-4.0.1.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-client/4.0.1/curator-client-4.0.1.jar:/Users/haigo/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/haigo/.m2/repository/com/alibaba/dubbo/2.6.2/dubbo-2.6.2.jar:/Users/haigo/.m2/repository/org/javassist/javassist/3.22.0-GA/javassist-3.22.0-GA.jar:/Users/haigo/.m2/repository/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/haigo/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/com/101tec/zkclient/0.10/zkclient-0.10.jar:/Users/haigo/.m2/repository/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.jar:/Users/haigo/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/Users/haigo/.m2/repository/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-mvc/2.2-SNAPSHOT/nutzboot-starter-nutz-mvc-2.2-20180611.111306-187.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jetty/2.2-SNAPSHOT/nutzboot-starter-jetty-2.2-20180611.111230-200.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-servlets/9.4.11.v20180605/jetty-servlets-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-continuation/9.4.11.v20180605/jetty-continuation-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-http/9.4.11.v20180605/jetty-http-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-util/9.4.11.v20180605/jetty-util-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-io/9.4.11.v20180605/jetty-io-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-webapp/9.4.11.v20180605/jetty-webapp-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-xml/9.4.11.v20180605/jetty-xml-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-servlet/9.4.11.v20180605/jetty-servlet-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-security/9.4.11.v20180605/jetty-security-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-server/9.4.11.v20180605/jetty-server-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-server/9.4.11.v20180605/websocket-server-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-common/9.4.11.v20180605/websocket-common-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-api/9.4.11.v20180605/websocket-api-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-client/9.4.11.v20180605/websocket-client-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-client/9.4.11.v20180605/jetty-client-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-servlet/9.4.11.v20180605/websocket-servlet-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.11.v20180605/javax-websocket-server-impl-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-annotations/9.4.11.v20180605/jetty-annotations-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-plus/9.4.11.v20180605/jetty-plus-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-commons/6.1.1/asm-commons-6.1.1.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-tree/6.1.1/asm-tree-6.1.1.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-analysis/6.1.1/asm-analysis-6.1.1.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.11.v20180605/javax-websocket-client-impl-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar:/Users/haigo/.m2/repository/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar:/Users/haigo/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-websocket/1.r.66-SNAPSHOT/nutz-plugins-websocket-1.r.66-20180614.031938-53.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-servlet3/2.2-SNAPSHOT/nutzboot-servlet3-2.2-20180611.111228-44.jar:/Users/haigo/.m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm/6.1.1/asm-6.1.1.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-jedis/1.r.66-SNAPSHOT/nutz-integration-jedis-1.r.66-20180614.031845-61.jar:/Users/haigo/.m2/repository/redis/clients/jedis/2.9.0/jedis-2.9.0.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-test-junit4/2.2-SNAPSHOT/nutzboot-starter-test-junit4-2.2-20180611.111334-80.jar:/Users/haigo/.m2/repository/io/jsonwebtoken/jjwt/0.9.0/jjwt-0.9.0.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.5/jackson-core-2.9.5.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/Users/haigo/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-service-cms/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-wkcache/1.r.66-SNAPSHOT/nutz-plugins-wkcache-1.r.66-20180614.031939-53.jar:/Users/haigo/.m2/repository/com/alibaba/druid/1.1.10/druid-1.1.10.jar:/Users/haigo/.m2/repository/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.jar:/Users/haigo/.m2/repository/org/springframework/spring-core/4.3.16.RELEASE/spring-core-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/haigo/.m2/repository/org/springframework/spring-context/4.3.16.RELEASE/spring-context-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-aop/4.3.16.RELEASE/spring-aop-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-beans/4.3.16.RELEASE/spring-beans-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-expression/4.3.16.RELEASE/spring-expression-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-tx/4.3.16.RELEASE/spring-tx-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-jms/4.1.8.RELEASE/spring-jms-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-messaging/4.1.8.RELEASE/spring-messaging-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/apache/xbean/xbean-spring/3.16/xbean-spring-3.16.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-core/5.7.0/activemq-core-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1.1/geronimo-jms_1.1_spec-1.1.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/kahadb/5.7.0/kahadb-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar:/Users/haigo/.m2/repository/org/fusesource/mqtt-client/mqtt-client/1.3/mqtt-client-1.3.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch-transport/1.11/hawtdispatch-transport-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch/1.11/hawtdispatch-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar:/Users/haigo/.m2/repository/commons-net/commons-net/3.1/commons-net-3.1.jar:/Users/haigo/.m2/repository/org/jasypt/jasypt/1.9.0/jasypt-1.9.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-pool/5.12.1/activemq-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-jms-pool/5.12.1/activemq-jms-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-client/5.12.1/activemq-client-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar:/Applications/IntelliJ IDEA 15.app/Contents/lib/idea_rt.jar" cn.wizzer.app.web.commons.core.WebApiMainLauncher
Connected to the target VM, address: '127.0.0.1:51363', transport: 'socket'
[INFO ] 16:21:04.736 org.nutz.boot.banner.SimpleBannerPrinter.printBanner(SimpleBannerPrinter.java:34) - 
 _  _ _   _ _____ ______      ___  __
| \| | | | |_   _|_  /\ \    / / |/ /
| .` | |_| | | |  / /  \ \/\/ /| ' <
|_|\_|\___/  |_| /___|  \_/\_/ |_|\_\

:: Built with NutzWk

[DEBUG] 16:21:04.828 org.nutz.resource.Scans.printLocations(Scans.java:527) - Locations count=134 time use 81ms
[DEBUG] 16:21:04.839 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( custom/ ) , regex( ^.+[.]properties$ )
[DEBUG] 16:21:04.839 org.nutz.ioc.impl.PropertiesProxy.setPaths(PropertiesProxy.java:114) - load properties from jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar!/custom/emtry.properties
[DEBUG] 16:21:04.841 org.nutz.boot.config.impl.PropertiesConfigureLoader.readPropertiesPath(PropertiesConfigureLoader.java:121) - Loading Properties  - application.properties
[DEBUG] 16:21:04.911 org.nutz.resource.Scans.scan(Scans.java:280) - Found 2 resource by src( ioc/ ) , regex( ^(.+[.])(js|json)$ )
[DEBUG] 16:21:04.911 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [emtry.json]
[DEBUG] 16:21:04.912 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [avtivemq.js]
[DEBUG] 16:21:04.929 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:57) - Loaded 7 bean define from path=[ioc/] --> [activeMqJmsTemplate, sessionAwareQueue, connectionFactory, consumerSessionAwareMessageListener, sessionAwareListenerContainer, targetConnectionFactory, pooledConnectionFactory]
[DEBUG] 16:21:05.011 org.nutz.castor.Castors.reload(Castors.java:116) - Using 101 castor for Castors
[DEBUG] 16:21:05.028 org.nutz.ioc.aop.SimpleAopMaker.<init>(SimpleAopMaker.java:79) - Load AopConfigure for anno=org.nutz.aop.interceptor.async.Async by type=org.nutz.aop.interceptor.async.AsyncAopIocLoader
[INFO ] 16:21:05.035 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'cn.wizzer'
[DEBUG] 16:21:05.072 org.nutz.resource.Scans.scan(Scans.java:280) - Found 111 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[INFO ] 16:21:05.303 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'webApiMainLauncher                      ' - cn.wizzer.app.web.commons.core.WebApiMainLauncher
[INFO ] 16:21:05.311 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'tokenUtil                               ' - cn.wizzer.app.web.commons.utils.TokenUtil
[INFO ] 16:21:05.324 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'apiTestSignController                   ' - cn.wizzer.app.web.modules.controllers.open.ApiTestSignController
[INFO ] 16:21:05.338 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'apiTestTokenController                  ' - cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController
[INFO ] 16:21:05.342 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'apiTokenController                      ' - cn.wizzer.app.web.modules.controllers.open.ApiTokenController
[INFO ] 16:21:05.344 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'apiMemberController                     ' - cn.wizzer.app.web.modules.controllers.open.member.ApiMemberController
[INFO ] 16:21:05.344 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dubboRpcCmsMainLauncher                 ' - cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher
[INFO ] 16:21:05.348 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'redisIdGenerator                        ' - cn.wizzer.app.cms.commons.ig.RedisIdGenerator
[INFO ] 16:21:05.357 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsArticleServiceImpl                   ' - cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl
[INFO ] 16:21:05.369 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsChannelServiceImpl                   ' - cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl
[INFO ] 16:21:05.372 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsLinkClassServiceImpl                 ' - cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl
[INFO ] 16:21:05.373 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsLinkServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl
[INFO ] 16:21:05.380 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsSiteServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl
[INFO ] 16:21:05.383 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsTestServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl
[INFO ] 16:21:05.401 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'org.nutz.boot.starter'
[DEBUG] 16:21:05.403 org.nutz.resource.Scans.scan(Scans.java:280) - Found 24 resource by src( org/nutz/boot/starter/ ) , regex( ^.+[.]class$ )
[INFO ] 16:21:05.458 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'nutDaoStarter                           ' - org.nutz.boot.starter.nutz.dao.NutDaoStarter
[DEBUG] 16:21:05.462 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.getSqlManager(...) define as name=sqlManager
[DEBUG] 16:21:05.463 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.createCacheSerializer(...) define as name=daoCacheSerializer
[DEBUG] 16:21:05.463 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.createDaoCacheInterceptor(...) define as name=daoCacheInterceptor
[DEBUG] 16:21:05.463 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.getDao(...) define as name=dao
[INFO ] 16:21:05.472 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dubboStarter                            ' - org.nutz.boot.starter.dubbo.DubboStarter
[INFO ] 16:21:05.473 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'whaleFilterStarter                      ' - org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter
[DEBUG] 16:21:05.475 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : WhaleFilterStarter.createNutFilter(...) define as name=whaleFilter
[INFO ] 16:21:05.485 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'nutFilterStarter                        ' - org.nutz.boot.starter.nutz.mvc.NutFilterStarter
[DEBUG] 16:21:05.487 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutFilterStarter.createNutFilter(...) define as name=nutFilter
[INFO ] 16:21:05.487 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'jettyStarter                            ' - org.nutz.boot.starter.jetty.JettyStarter
[DEBUG] 16:21:05.628 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : JettyStarter.getJettyServer(...) define as name=jettyServer
[INFO ] 16:21:05.628 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'nbServletContextListener                ' - org.nutz.boot.starter.servlet3.NbServletContextListener
[INFO ] 16:21:05.629 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'druidWebStatFilterStarter               ' - org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter
[INFO ] 16:21:05.630 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'druidWebStatServletStarter              ' - org.nutz.boot.starter.jdbc.DruidWebStatServletStarter
[INFO ] 16:21:05.631 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dataSourceStarter                       ' - org.nutz.boot.starter.jdbc.DataSourceStarter
[DEBUG] 16:21:05.632 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.getDataSource(...) define as name=dataSource
[DEBUG] 16:21:05.632 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.createDruidDataSource(...) define as name=druidDataSource
[DEBUG] 16:21:05.632 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.createHikariCPDataSource(...) define as name=hikariDataSource
[DEBUG] 16:21:05.633 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:21:05.633 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:21:05.633 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-mvc/2.2-SNAPSHOT/nutzboot-starter-nutz-mvc-2.2-20180611.111306-187.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:21:05.634 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jetty/2.2-SNAPSHOT/nutzboot-starter-jetty-2.2-20180611.111230-200.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:21:05.634 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:21:05.634 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:21:05.634 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[INFO ] 16:21:05.648 org.nutz.boot.NbApp.prepare(NbApp.java:279) - Configure Manual:
|id  |key                                     |required  |Possible Values     |Default   |Description         |                                starters|
|----|----------------------------------------|----------|--------------------|----------|--------------------|----------------------------------------|
|0   |druid.web.filter.exclusions             |no        |                    |          |需要排除的路径             |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|1   |druid.web.filter.principalCookieName    |no        |                    |          |用户权限信息的cookie属性名称   |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|2   |druid.web.filter.principalSessionName   |no        |                    |          |用户权限信息的session属性名称  |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|3   |druid.web.filter.profileEnable          |no        |                    |          |是否开启性能监控            |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|4   |druid.web.filter.realIpHeader           |no        |                    |          |Header中ReadIp对应的key |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|5   |druid.web.filter.sessionStatEnable      |no        |                    |true      |是否开启session状态监控     |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|6   |druid.web.filter.sessionStatMaxCount    |no        |                    |          |session最大状态数量       |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|7   |druid.web.servlet.allow                 |no        |                    |          |允许访问的ip列表           |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|8   |druid.web.servlet.deny                  |no        |                    |          |禁止访问的ip列表           |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|9   |druid.web.servlet.jmxPassword           |no        |                    |          |JMX的密码              |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|10  |druid.web.servlet.jmxUrl                |no        |                    |          |读取JMX信息的URL         |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|11  |druid.web.servlet.jmxUsername           |no        |                    |          |JMX的用户名             |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|12  |druid.web.servlet.loginPassword         |no        |                    |随机值,打印在日志中|访问monitor页面的密码      |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|13  |druid.web.servlet.loginUsername         |no        |                    |driud     |访问monitor页面的用户名     |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|14  |druid.web.servlet.resetEnable           |no        |                    |true      |是否允许重置统计结果          |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|15  |jdbc.password                           |no        |                    |          |数据库密码               |org.nutz.boot.starter.jdbc.DataSourceStarter|
|16  |jdbc.type                               |no        |druid,simple,hikari |druid     |连接池类型               |org.nutz.boot.starter.jdbc.DataSourceStarter|
|17  |jdbc.url                                |yes       |                    |          |JDBC URL            |org.nutz.boot.starter.jdbc.DataSourceStarter|
|18  |jdbc.username                           |no        |                    |          |数据库用户名              |org.nutz.boot.starter.jdbc.DataSourceStarter|
|19  |jetty.contextPath                       |no        |                    |/         |上下文路径               |org.nutz.boot.starter.jetty.JettyStarter|
|20  |jetty.gzip.enable                       |no        |                    |false     |是否启用gzip            |org.nutz.boot.starter.jetty.JettyStarter|
|21  |jetty.gzip.level                        |no        |                    |-1        |gzip压缩级别            |org.nutz.boot.starter.jetty.JettyStarter|
|22  |jetty.gzip.minContentSize               |no        |                    |512       |gzip压缩最小触发大小        |org.nutz.boot.starter.jetty.JettyStarter|
|23  |jetty.host                              |no        |                    |0.0.0.0   |监听的ip地址             |org.nutz.boot.starter.jetty.JettyStarter|
|24  |jetty.http.idleTimeout                  |no        |                    |300000    |空闲时间,单位毫秒           |org.nutz.boot.starter.jetty.JettyStarter|
|25  |jetty.httpConfig.blockingTimeout        |no        |                    |-1        |阻塞超时                |org.nutz.boot.starter.jetty.JettyStarter|
|26  |jetty.httpConfig.headerCacheSize        |no        |                    |8192      |头部缓冲区大小             |org.nutz.boot.starter.jetty.JettyStarter|
|27  |jetty.httpConfig.maxErrorDispatches     |no        |                    |10        |最大错误重定向次数           |org.nutz.boot.starter.jetty.JettyStarter|
|28  |jetty.httpConfig.outputAggregationSize  |no        |                    |8192      |输出聚合大小              |org.nutz.boot.starter.jetty.JettyStarter|
|29  |jetty.httpConfig.outputBufferSize       |no        |                    |32768     |输出缓冲区大小             |org.nutz.boot.starter.jetty.JettyStarter|
|30  |jetty.httpConfig.persistentConnectionsEnabled|no        |                    |true      |是否启用持久化连接           |org.nutz.boot.starter.jetty.JettyStarter|
|31  |jetty.httpConfig.requestHeaderSize      |no        |                    |8192      |请求的头部最大值            |org.nutz.boot.starter.jetty.JettyStarter|
|32  |jetty.httpConfig.responseHeaderSize     |no        |                    |8192      |响应的头部最大值            |org.nutz.boot.starter.jetty.JettyStarter|
|33  |jetty.httpConfig.securePort             |no        |                    |          |安全协议的端口,例如8443      |org.nutz.boot.starter.jetty.JettyStarter|
|34  |jetty.httpConfig.secureScheme           |no        |                    |          |安全协议,例如https        |org.nutz.boot.starter.jetty.JettyStarter|
|35  |jetty.httpConfig.sendDateHeader         |no        |                    |true      |是否发送日期信息            |org.nutz.boot.starter.jetty.JettyStarter|
|36  |jetty.httpConfig.sendServerVersion      |no        |                    |true      |是否发送jetty版本号        |org.nutz.boot.starter.jetty.JettyStarter|
|37  |jetty.maxFormContentSize                |no        |                    |1gb       |表单最大尺寸              |org.nutz.boot.starter.jetty.JettyStarter|
|38  |jetty.page.404                          |no        |                    |          |自定义404页面,同理,其他状态码也是支持的|org.nutz.boot.starter.jetty.JettyStarter|
|39  |jetty.page.java.lang.Throwable          |no        |                    |          |自定义java.lang.Throwable页面,同理,其他异常也支持|org.nutz.boot.starter.jetty.JettyStarter|
|40  |jetty.port                              |no        |                    |8080      |监听的端口               |org.nutz.boot.starter.jetty.JettyStarter|
|41  |jetty.staticPath                        |no        |                    |          |额外的静态文件路径           |org.nutz.boot.starter.jetty.JettyStarter|
|42  |jetty.staticPathLocal                   |no        |                    |          |静态文件所在的本地路径         |org.nutz.boot.starter.jetty.JettyStarter|
|43  |jetty.threadpool.idleTimeout            |no        |                    |60000     |线程池idleTimeout,单位毫秒 |org.nutz.boot.starter.jetty.JettyStarter|
|44  |jetty.threadpool.maxThreads             |no        |                    |500       |线程池最大线程数maxThreads  |org.nutz.boot.starter.jetty.JettyStarter|
|45  |jetty.threadpool.minThreads             |no        |                    |200       |线程池最小线程数minThreads  |org.nutz.boot.starter.jetty.JettyStarter|
|46  |jetty.welcome_files                     |no        |                    |index.html,index.htm,index.do|WelcomeFile列表       |org.nutz.boot.starter.jetty.JettyStarter|
|47  |nutz.dao.interceptor.cache.cache4Null   |no        |                    |true      |是否缓存null结果          |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|48  |nutz.dao.interceptor.cache.debug        |no        |                    |false     |打印daocache详细调试日志    |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|49  |nutz.dao.interceptor.cache.enable       |no        |                    |false     |是否使用daocache        |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|50  |nutz.dao.interceptor.cache.enableWhenTrans|no        |                    |false     |事务内是否启用daocache     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|51  |nutz.dao.interceptor.cache.provider.ioc.name|no        |                    |daoCacheProvider|daocache提供者DaoCacheProvider的IocBean名称|org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|52  |nutz.dao.interceptor.cache.provider.memory.cacheSize|no        |                    |          |daocache提供者MemoryDaoCacheProvider的默认缓存大小|org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|53  |nutz.dao.interceptor.cache.provider.type|no        |memory,ehcache,jedis,ioc|memory    |daocache提供者         |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|54  |nutz.dao.interceptor.cache.table.names  |no        |                    |          |需要缓存的表名称,英文逗号分隔     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|55  |nutz.dao.interceptor.cache.table.pattern|no        |                    |          |需要缓存的表名称的正则表达式      |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|56  |nutz.dao.interceptor.log.enable         |no        |                    |true      |是否打印dao的SQL日志       |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|57  |nutz.dao.interceptor.time.enable        |no        |                    |false     |是否打印dao的SQL耗时日志     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|58  |nutz.dao.sqls.path                      |no        |                    |sqls/     |sql目录               |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|59  |nutz.mvc.whale.enc.input                |no        |                    |UTF-8     |在其他Filter之前设置input编码|org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter|
|60  |nutz.mvc.whale.enc.output               |no        |                    |UTF-8     |在其他Filter之前设置output编码|org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter|
|61  |nutz.mvc.whale.http.hidden_method_param |no        |                    |          |隐形http方法参数转换所对应的参数名 |org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter|
|62  |nutz.mvc.whale.http.method_override     |no        |                    |false     |是否允许使用X-HTTP-Method-Override|org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter|
|63  |nutz.mvc.whale.upload.enable            |no        |                    |false     |是否启用隐形Upload支持      |org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter|
|64  |redis.database                          |no        |                    |0         |redis数据库序号          |org.nutz.boot.starter.redis.JedisStarter|
|65  |redis.host                              |no        |                    |127.0.0.1 |redis服务器ip或域名       |org.nutz.boot.starter.redis.JedisStarter|
|66  |redis.max_redir                         |no        |                    |10        |redis集群最大重定向次数      |org.nutz.boot.starter.redis.JedisStarter|
|67  |redis.nodes                             |no        |                    |          |redis集群节点列表         |org.nutz.boot.starter.redis.JedisStarter|
|68  |redis.password                          |no        |                    |          |redis密码             |org.nutz.boot.starter.redis.JedisStarter|
|69  |redis.port                              |no        |                    |6379      |redis服务器端口          |org.nutz.boot.starter.redis.JedisStarter|
|70  |redis.soTimeout                         |no        |                    |0         |redis写超时            |org.nutz.boot.starter.redis.JedisStarter|
|71  |redis.timeout                           |no        |                    |2000      |redis读写超时           |org.nutz.boot.starter.redis.JedisStarter|
|72  |web.session.timeout                     |no        |                    |30        |Session空闲时间,单位分钟    |org.nutz.boot.starter.jetty.JettyStarter|
[INFO ] 16:21:05.654 org.nutz.ioc.impl.NutIoc.<init>(NutIoc.java:130) - ... NutIoc init complete
[DEBUG] 16:21:05.655 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'appContext' to [app] 
[DEBUG] 16:21:05.655 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'conf' to [app] 
[DEBUG] 16:21:05.655 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nbApp' to [app] 
[DEBUG] 16:21:05.656 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'counterService' to [app] 
[DEBUG] 16:21:05.661 org.nutz.boot.starter.dubbo.DubboIocLoaderStarter.getIocLoader(DubboIocLoaderStarter.java:34) - using dubbo configure from PropertiesProxy
[DEBUG] 16:21:05.662 org.nutz.boot.AppContext.getServerPort(AppContext.java:344) - select random port=15960 for dubbo.protocol.port
[INFO ] 16:21:05.667  - using logger: com.alibaba.dubbo.common.logger.log4j.Log4jLoggerAdapter
[DEBUG] 16:21:05.753 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( org/nutz/integration/jedis/jedis.js ) , regex( ^(.+[.])(js|json)$ )
[DEBUG] 16:21:05.753 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [org/nutz/integration/jedis/jedis.js]
[DEBUG] 16:21:05.754 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:57) - Loaded 9 bean define from path=[org/nutz/integration/jedis/jedis.js] --> [redisService, jedisCluster, jedisClusterNodes, jedisClusterWrapper, pubSubService, jedisPoolConfig, jedisPool, jedisAgent, redis]
[INFO ] 16:21:05.756 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'org.nutz.plugins.wkcache'
[DEBUG] 16:21:05.757 org.nutz.resource.Scans.scan(Scans.java:280) - Found 13 resource by src( org/nutz/plugins/wkcache/ ) , regex( ^.+[.]class$ )
[INFO ] 16:21:05.761 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheRemoveEntryInterceptor           ' - org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor
[INFO ] 16:21:05.762 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheResultInterceptor                ' - org.nutz.plugins.wkcache.WkcacheResultInterceptor
[INFO ] 16:21:05.763 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheUpdateInterceptor                ' - org.nutz.plugins.wkcache.WkcacheUpdateInterceptor
[INFO ] 16:21:05.763 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheRemoveAllInterceptor             ' - org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor
[INFO ] 16:21:05.764 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add '$aop_wkcache                            ' - org.nutz.plugins.wkcache.WkcacheAopConfigure
[DEBUG] 16:21:05.764 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<class org.nutz.boot.starter.nutz.dao.NutDaoStarter>
[DEBUG] 16:21:05.765 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '$aop_async'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:21:05.765 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=$aop_async
[DEBUG] 16:21:05.766 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:21:05.766 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'$aop_async'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:21:05.810 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '$aop_async' to [app] 
[DEBUG] 16:21:05.815 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '$aop_wkcache'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:21:05.815 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=$aop_wkcache
[DEBUG] 16:21:05.815 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_wkcache) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:21:05.815 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'$aop_wkcache'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:21:05.815 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '$aop_wkcache' to [app] 
[DEBUG] 16:21:05.817 org.nutz.ioc.aop.SimpleAopMaker.<init>(SimpleAopMaker.java:79) - Load AopConfigure for anno=org.nutz.ioc.aop.Aop by type=org.nutz.ioc.aop.config.impl.AnnotationAopConfigration
[DEBUG] 16:21:05.817 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=nutDaoStarter
[DEBUG] 16:21:05.817 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutDaoStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:05.817 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'nutDaoStarter'<class org.nutz.boot.starter.nutz.dao.NutDaoStarter>
[DEBUG] 16:21:05.818 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nutDaoStarter' to [app] 
[DEBUG] 16:21:05.818 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.nutz.dao.NutDaoStarter without AOP
[DEBUG] 16:21:05.830 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:21:05.831 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboStarter'<class org.nutz.boot.starter.dubbo.DubboStarter>
[DEBUG] 16:21:05.831 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboStarter
[DEBUG] 16:21:05.831 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:05.831 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboStarter'<class org.nutz.boot.starter.dubbo.DubboStarter>
[DEBUG] 16:21:05.831 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboStarter' to [app] 
[DEBUG] 16:21:05.831 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.dubbo.DubboStarter without AOP
[DEBUG] 16:21:05.834 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutFilterStarter'<class org.nutz.boot.starter.nutz.mvc.NutFilterStarter>
[DEBUG] 16:21:05.834 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=nutFilterStarter
[DEBUG] 16:21:05.834 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:05.834 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'nutFilterStarter'<class org.nutz.boot.starter.nutz.mvc.NutFilterStarter>
[DEBUG] 16:21:05.834 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nutFilterStarter' to [app] 
[DEBUG] 16:21:05.835 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.nutz.mvc.NutFilterStarter without AOP
[DEBUG] 16:21:05.843 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:21:05.843 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'appContext'<class org.nutz.boot.AppContext>
[DEBUG] 16:21:05.844 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'whaleFilterStarter'<class org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter>
[DEBUG] 16:21:05.844 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=whaleFilterStarter
[DEBUG] 16:21:05.844 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(whaleFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:05.844 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'whaleFilterStarter'<class org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter>
[DEBUG] 16:21:05.844 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'whaleFilterStarter' to [app] 
[DEBUG] 16:21:05.844 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter without AOP
[DEBUG] 16:21:05.849 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:21:05.850 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jettyStarter'<class org.nutz.boot.starter.jetty.JettyStarter>
[DEBUG] 16:21:05.850 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=jettyStarter
[DEBUG] 16:21:05.850 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jettyStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:05.850 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'jettyStarter'<class org.nutz.boot.starter.jetty.JettyStarter>
[DEBUG] 16:21:05.850 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'jettyStarter' to [app] 
[DEBUG] 16:21:05.850 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jetty.JettyStarter without AOP
[DEBUG] 16:21:05.862 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:21:05.862 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<class org.nutz.boot.starter.jdbc.DataSourceStarter>
[DEBUG] 16:21:05.862 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dataSourceStarter
[DEBUG] 16:21:05.863 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSourceStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:05.863 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dataSourceStarter'<class org.nutz.boot.starter.jdbc.DataSourceStarter>
[DEBUG] 16:21:05.863 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dataSourceStarter' to [app] 
[DEBUG] 16:21:05.863 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DataSourceStarter without AOP
[DEBUG] 16:21:05.870 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:21:05.870 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatFilterStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter>
[DEBUG] 16:21:05.871 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidWebStatFilterStarter
[DEBUG] 16:21:05.871 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:05.871 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidWebStatFilterStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter>
[DEBUG] 16:21:05.871 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidWebStatFilterStarter' to [app] 
[DEBUG] 16:21:05.871 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter without AOP
[DEBUG] 16:21:05.875 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:21:05.875 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatServletStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter>
[DEBUG] 16:21:05.875 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidWebStatServletStarter
[DEBUG] 16:21:05.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatServletStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:05.875 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidWebStatServletStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter>
[DEBUG] 16:21:05.876 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidWebStatServletStarter' to [app] 
[DEBUG] 16:21:05.876 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter without AOP
[DEBUG] 16:21:05.880 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[INFO ] 16:21:05.905 org.eclipse.jetty.util.log.Log.initialized(Log.java:193) - Logging initialized @3673ms to org.eclipse.jetty.util.log.Slf4jLog
[DEBUG] 16:21:07.041 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nbServletContextListener'<class org.nutz.boot.starter.servlet3.NbServletContextListener>
[DEBUG] 16:21:07.042 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=nbServletContextListener
[DEBUG] 16:21:07.042 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nbServletContextListener) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:07.042 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'nbServletContextListener'<class org.nutz.boot.starter.servlet3.NbServletContextListener>
[DEBUG] 16:21:07.042 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nbServletContextListener' to [app] 
[DEBUG] 16:21:07.042 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.servlet3.NbServletContextListener without AOP
[DEBUG] 16:21:07.045 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'appContext'<class org.nutz.boot.AppContext>
[DEBUG] 16:21:07.466 org.nutz.resource.Scans.scan(Scans.java:280) - Found 111 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:21:07.469 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboStarter'<interface org.nutz.boot.starter.ServerFace>
[DEBUG] 16:21:07.470 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jettyStarter'<interface org.nutz.boot.starter.ServerFace>
[DEBUG] 16:21:07.470 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboManager'<class org.nutz.integration.dubbo.DubboManager>
[DEBUG] 16:21:07.470 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboManager
[DEBUG] 16:21:07.470 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboManager) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:07.470 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboManager'<class org.nutz.integration.dubbo.DubboManager>
[DEBUG] 16:21:07.470 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboManager' to [app] 
[DEBUG] 16:21:07.471 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.DubboManager without AOP
[DEBUG] 16:21:07.486 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:21:07.486 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubbo_iobjs
[DEBUG] 16:21:07.487 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubbo_iobjs) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:07.487 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubbo_iobjs'<>
[DEBUG] 16:21:07.487 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubbo_iobjs' to [app] 
[DEBUG] 16:21:07.500 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class java.util.HashMap without AOP
[DEBUG] 16:21:07.501 org.nutz.integration.dubbo.DubboManager.init(DubboManager.java:31) - dubbo obj count=6
[DEBUG] 16:21:07.501 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboAnnotationBean'<class org.nutz.integration.dubbo.AnnotationBean>
[DEBUG] 16:21:07.501 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboAnnotationBean
[DEBUG] 16:21:07.501 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboAnnotationBean) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:07.501 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboAnnotationBean'<class org.nutz.integration.dubbo.AnnotationBean>
[DEBUG] 16:21:07.501 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboAnnotationBean' to [app] 
[DEBUG] 16:21:07.502 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.AnnotationBean without AOP
[DEBUG] 16:21:07.503 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:21:07.536 org.nutz.resource.Scans.scan(Scans.java:280) - Found 111 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:21:07.667 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Protocol$Adaptive implements com.alibaba.dubbo.rpc.Protocol {
public void destroy() {throw new UnsupportedOperationException("method public abstract void com.alibaba.dubbo.rpc.Protocol.destroy() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
}
public int getDefaultPort() {throw new UnsupportedOperationException("method public abstract int com.alibaba.dubbo.rpc.Protocol.getDefaultPort() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
}
public com.alibaba.dubbo.rpc.Exporter export(com.alibaba.dubbo.rpc.Invoker arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class).getExtension(extName);
return extension.export(arg0);
}
public com.alibaba.dubbo.rpc.Invoker refer(java.lang.Class arg0, com.alibaba.dubbo.common.URL arg1) throws com.alibaba.dubbo.rpc.RpcException {
if (arg1 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg1;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class).getExtension(extName);
return extension.refer(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:07.800 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Cluster$Adaptive implements com.alibaba.dubbo.rpc.cluster.Cluster {
public com.alibaba.dubbo.rpc.Invoker join(com.alibaba.dubbo.rpc.cluster.Directory arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.cluster.Directory argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.cluster.Directory argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = url.getParameter("cluster", "failover");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.Cluster) name from url(" + url.toString() + ") use keys([cluster])");
com.alibaba.dubbo.rpc.cluster.Cluster extension = (com.alibaba.dubbo.rpc.cluster.Cluster)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.Cluster.class).getExtension(extName);
return extension.join(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:07.813 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ProxyFactory$Adaptive implements com.alibaba.dubbo.rpc.ProxyFactory {
public com.alibaba.dubbo.rpc.Invoker getInvoker(java.lang.Object arg0, java.lang.Class arg1, com.alibaba.dubbo.common.URL arg2) throws com.alibaba.dubbo.rpc.RpcException {
if (arg2 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg2;
String extName = url.getParameter("proxy", "javassist");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.ProxyFactory) name from url(" + url.toString() + ") use keys([proxy])");
com.alibaba.dubbo.rpc.ProxyFactory extension = (com.alibaba.dubbo.rpc.ProxyFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.ProxyFactory.class).getExtension(extName);
return extension.getInvoker(arg0, arg1, arg2);
}
public java.lang.Object getProxy(com.alibaba.dubbo.rpc.Invoker arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = url.getParameter("proxy", "javassist");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.ProxyFactory) name from url(" + url.toString() + ") use keys([proxy])");
com.alibaba.dubbo.rpc.ProxyFactory extension = (com.alibaba.dubbo.rpc.ProxyFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.ProxyFactory.class).getExtension(extName);
return extension.getProxy(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:07.839 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:07.839 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:07.839 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:07.839 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:07.839 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:07.839 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@628487793
[DEBUG] 16:21:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@628487793
[DEBUG] 16:21:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@628487793
[DEBUG] 16:21:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:21:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:07.841 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:07.841 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:07.841 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestSignController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:07.841 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:07.841 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:07.841 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsLinkServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl>
[DEBUG] 16:21:07.841 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsLinkServiceImpl
[DEBUG] 16:21:07.841 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:07.843 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsLinkServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl>
[DEBUG] 16:21:07.843 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsLinkServiceImpl' to [app] 
[DEBUG] 16:21:07.843 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:07.844 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dao
[DEBUG] 16:21:07.844 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dao) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:07.844 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dao'<>
[DEBUG] 16:21:07.845 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dao' to [app] 
[DEBUG] 16:21:07.845 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:21:07.845 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dataSource
[DEBUG] 16:21:07.845 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:07.845 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:21:07.845 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dataSource' to [app] 
[DEBUG] 16:21:07.846 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<>
[DEBUG] 16:21:07.847 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidDataSource'<interface javax.sql.DataSource>
[DEBUG] 16:21:07.848 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidDataSource
[DEBUG] 16:21:07.848 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:07.848 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidDataSource'<interface javax.sql.DataSource>
[DEBUG] 16:21:07.848 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidDataSource' to [app] 
[DEBUG] 16:21:07.848 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<>
[DEBUG] 16:21:08.009 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:21:08.009 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=sqlManager
[DEBUG] 16:21:08.010 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sqlManager) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:08.010 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:21:08.010 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'sqlManager' to [app] 
[DEBUG] 16:21:08.010 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<>
[DEBUG] 16:21:08.019 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.dao.impl.NutDao without AOP
[DEBUG] 16:21:08.019 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:21:08.020 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:21:08.021 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<>
[DEBUG] 16:21:08.155 org.nutz.dao.jdbc.Jdbcs.<clinit>(Jdbcs.java:93) - Jdbcs init complete
[INFO ] 16:21:08.155 org.nutz.dao.jdbc.Jdbcs.getExpert(Jdbcs.java:106) - Get Connection from DataSource for JdbcExpert, if you lock at here, check your database server and configure
[INFO ] 16:21:08.332 com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:930) - {dataSource-1} inited
[DEBUG] 16:21:08.727 org.nutz.dao.impl.DaoSupport.setDataSource(DaoSupport.java:188) - select expert : org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert
[DEBUG] 16:21:08.732 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:199) - JDBC Driver --> mysql-connector-java-5.1.46 ( Revision: 9cc87a48e75c2d2e87c1a293b2862ce651cb256e )
[DEBUG] 16:21:08.732 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:200) - JDBC Name   --> MySQL Connector Java
[DEBUG] 16:21:08.733 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:202) - JDBC URL    --> jdbc:mysql://119.23.144.5:3306/nb_boot??useUnicode=true&characterEncoding=utf8&useSSL=false
[DEBUG] 16:21:08.757 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_client=utf8
[DEBUG] 16:21:08.757 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_connection=utf8
[DEBUG] 16:21:08.757 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_database=latin1
[DEBUG] 16:21:08.757 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_filesystem=binary
[DEBUG] 16:21:08.757 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_results=
[DEBUG] 16:21:08.758 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_server=latin1
[DEBUG] 16:21:08.758 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_system=utf8
[DEBUG] 16:21:08.758 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_sets_dir=/usr/share/mysql/charsets/
[DEBUG] 16:21:08.771 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:219) - Mysql : binlog_format=STATEMENT
[DEBUG] 16:21:08.780 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:226) - Mysql : database=nb_boot
[DEBUG] 16:21:08.792 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:232) - Mysql : user=nutz_boot@113.77.192.240
[DEBUG] 16:21:08.818 org.nutz.dao.impl.DaoSupport.setDataSource(DaoSupport.java:221) - Database info --> MYSQL:[MySQL - 5.6.36]
[DEBUG] 16:21:08.822 org.nutz.resource.Scans.scan(Scans.java:280) - Found 0 resource by src( sqls/ ) , regex( .(sql|sqlx|sqls)$ )
[DEBUG] 16:21:08.823 org.nutz.dao.impl.DaoSupport.setSqlManager(DaoSupport.java:121) - SqlManager Sql count=0
[DEBUG] 16:21:08.824 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl without AOP
[DEBUG] 16:21:08.824 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:08.873 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_link
[DEBUG] 16:21:08.874 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.874 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.874 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.874 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@628487793
[DEBUG] 16:21:08.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@628487793
[DEBUG] 16:21:08.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@628487793
[DEBUG] 16:21:08.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:08.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:08.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:21:08.875 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.876 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.876 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.876 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.876 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.876 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestSignController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.876 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.876 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.876 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(tokenUtil) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.876 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.876 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsLinkClassServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl>
[DEBUG] 16:21:08.876 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsLinkClassServiceImpl
[DEBUG] 16:21:08.876 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.877 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsLinkClassServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl>
[DEBUG] 16:21:08.877 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsLinkClassServiceImpl' to [app] 
[DEBUG] 16:21:08.877 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:08.877 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl without AOP
[DEBUG] 16:21:08.877 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:08.879 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_link_class
[DEBUG] 16:21:08.880 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.880 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.880 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.880 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.880 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.880 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.880 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.880 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@628487793
[DEBUG] 16:21:08.880 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@628487793
[DEBUG] 16:21:08.880 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@628487793
[DEBUG] 16:21:08.881 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:08.881 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:08.881 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:21:08.881 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.881 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.881 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.881 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.881 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.881 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestSignController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.881 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.881 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsSiteServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl>
[DEBUG] 16:21:08.882 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsSiteServiceImpl
[DEBUG] 16:21:08.882 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.882 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsSiteServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl>
[DEBUG] 16:21:08.882 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsSiteServiceImpl' to [app] 
[DEBUG] 16:21:08.882 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:08.882 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:21:08.883 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheResultInterceptor
[DEBUG] 16:21:08.883 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheResultInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:21:08.883 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:21:08.883 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheResultInterceptor' to [app] 
[DEBUG] 16:21:08.885 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:21:08.886 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:21:08.886 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheUpdateInterceptor
[DEBUG] 16:21:08.886 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheUpdateInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:21:08.886 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:21:08.886 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheUpdateInterceptor' to [app] 
[DEBUG] 16:21:08.888 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:21:08.888 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheRemoveEntryInterceptor
[DEBUG] 16:21:08.888 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheRemoveEntryInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:21:08.888 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:21:08.888 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheRemoveEntryInterceptor' to [app] 
[DEBUG] 16:21:08.889 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:21:08.889 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheRemoveAllInterceptor
[DEBUG] 16:21:08.889 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheRemoveAllInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:21:08.889 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:21:08.890 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheRemoveAllInterceptor' to [app] 
[DEBUG] 16:21:08.899 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:08.902 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_site
[DEBUG] 16:21:08.902 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.902 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.903 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.903 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.903 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.903 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.903 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:08.903 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@628487793
[DEBUG] 16:21:08.903 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@628487793
[DEBUG] 16:21:08.903 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@628487793
[DEBUG] 16:21:08.903 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:08.904 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:08.904 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:21:08.904 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.904 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.904 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.904 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.904 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.904 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsTestServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl>
[DEBUG] 16:21:08.904 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsTestServiceImpl
[DEBUG] 16:21:08.904 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:08.904 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsTestServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl>
[DEBUG] 16:21:08.904 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsTestServiceImpl' to [app] 
[DEBUG] 16:21:08.904 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:08.905 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:21:08.905 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=txREAD_COMMITTED
[DEBUG] 16:21:08.905 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:08.905 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:21:08.905 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'txREAD_COMMITTED' to [app] 
[DEBUG] 16:21:08.909 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:08.913 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_test
[DEBUG] 16:21:08.913 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'redisService'<class org.nutz.integration.jedis.RedisService>
[DEBUG] 16:21:08.914 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=redisService
[DEBUG] 16:21:08.914 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisService) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:21:08.914 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'redisService'<class org.nutz.integration.jedis.RedisService>
[DEBUG] 16:21:08.914 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'redisService' to [app] 
[DEBUG] 16:21:08.940 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.jedis.RedisService without AOP
[DEBUG] 16:21:09.216 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisAgent'<>
[DEBUG] 16:21:09.217 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=jedisAgent
[DEBUG] 16:21:09.217 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jedisAgent) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:21:09.217 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'jedisAgent'<>
[DEBUG] 16:21:09.217 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'jedisAgent' to [app] 
[DEBUG] 16:21:09.218 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.jedis.JedisAgent without AOP
[DEBUG] 16:21:09.311 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:21:09.312 org.nutz.ioc.val.ReferTypeValue.get(ReferTypeValue.java:64) - name=memberService not found, search for type=cn.wizzer.app.member.modules.services.MemberService
[DEBUG] 16:21:09.313 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:09.313 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:09.313 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:09.313 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:09.319 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:09.321 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:09.321 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:09.321 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@628487793
[DEBUG] 16:21:09.322 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@628487793
[DEBUG] 16:21:09.328 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@628487793
[DEBUG] 16:21:09.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:09.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:09.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:21:09.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.330 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestSignController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.330 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.330 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.331 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(tokenUtil) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.335 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.335 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.335 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:09.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSourceStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.341 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(whaleFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.341 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sqlManager) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.341 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jettyServer) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.341 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatServletStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.341 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(daoCacheSerializer) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.342 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(daoCacheInterceptor) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.342 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.342 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nbServletContextListener) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.342 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dao) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.343 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(whaleFilter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.343 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutFilter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.343 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jettyStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.343 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.343 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.343 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutDaoStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.349 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.349 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(hikariDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:09.349 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(qtjenbth4kjulrjisbmcqpibkv) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:09.349 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(5gemm9m4l6hvfp0t5pcnsf028u) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:09.349 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(u3n8ij73vghuvrde4de7giaid0) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:09.349 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'u3n8ij73vghuvrde4de7giaid0'<interface cn.wizzer.app.member.modules.services.MemberService>
[DEBUG] 16:21:09.349 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=u3n8ij73vghuvrde4de7giaid0
[DEBUG] 16:21:09.349 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(u3n8ij73vghuvrde4de7giaid0) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:09.349 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'u3n8ij73vghuvrde4de7giaid0'<interface cn.wizzer.app.member.modules.services.MemberService>
[DEBUG] 16:21:09.349 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'u3n8ij73vghuvrde4de7giaid0' to [app] 
[DEBUG] 16:21:09.350 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'pks6i5kgqagr6rrl2050gd2tal'<>
[DEBUG] 16:21:09.350 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=pks6i5kgqagr6rrl2050gd2tal
[DEBUG] 16:21:09.350 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pks6i5kgqagr6rrl2050gd2tal) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:09.350 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'pks6i5kgqagr6rrl2050gd2tal'<>
[DEBUG] 16:21:09.350 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'pks6i5kgqagr6rrl2050gd2tal' to [app] 
[DEBUG] 16:21:09.354 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ReferenceBean without AOP
[DEBUG] 16:21:09.355 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:21:09.513 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:21:09.513 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboApplicationConfig
[DEBUG] 16:21:09.513 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboApplicationConfig) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:09.514 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:21:09.514 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboApplicationConfig' to [app] 
[DEBUG] 16:21:09.515 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.ApplicationConfig without AOP
[DEBUG] 16:21:09.516 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:21:09.516 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboRegistryConfig
[DEBUG] 16:21:09.517 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRegistryConfig) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:09.521 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:21:09.521 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboRegistryConfig' to [app] 
[DEBUG] 16:21:09.522 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.RegistryConfig without AOP
[DEBUG] 16:21:09.650 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.registry;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class RegistryFactory$Adaptive implements com.alibaba.dubbo.registry.RegistryFactory {
public com.alibaba.dubbo.registry.Registry getRegistry(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.registry.RegistryFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.registry.RegistryFactory extension = (com.alibaba.dubbo.registry.RegistryFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.registry.RegistryFactory.class).getExtension(extName);
return extension.getRegistry(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:09.661 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting.zookeeper;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ZookeeperTransporter$Adaptive implements com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter {
public com.alibaba.dubbo.remoting.zookeeper.ZookeeperClient connect(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("client", url.getParameter("transporter", "curator"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter) name from url(" + url.toString() + ") use keys([client, transporter])");
com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter extension = (com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter.class).getExtension(extName);
return extension.connect(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:09.732 com.alibaba.dubbo.registry.support.AbstractRegistry.loadProperties(AbstractRegistry.java:200) -  [DUBBO] Load registry store file /Users/haigo/.dubbo/dubbo-registry-wk-nb-web-api-119.23.144.5:2181.cache, data: {cn.wizzer.app.cms.modules.services.CmsSiteService=empty://192.168.3.8:14270/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61277&side=provider&timestamp=1533744488669, cn.wizzer.app.cms.modules.services.CmsLinkService=empty://192.168.3.8:14270/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61277&side=provider&timestamp=1533744488510, cn.wizzer.app.cms.modules.services.CmsLinkClassService=empty://192.168.3.8:14270/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61277&side=provider&timestamp=1533744488417, cn.wizzer.app.cms.modules.services.CmsArticleService=empty://192.168.3.8:14270/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61277&side=provider&timestamp=1533744488605, cn.wizzer.app.cms.modules.services.CmsChannelService=empty://192.168.3.8:14270/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61277&side=provider&timestamp=1533744488071, cn.wizzer.app.cms.modules.services.CmsTestService=empty://192.168.3.8:14270/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61277&side=provider&timestamp=1533744488321, cn.wizzer.app.member.modules.services.MemberService=empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61277&side=consumer&timestamp=1533744487475 empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61277&side=consumer&timestamp=1533744487475 empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=providers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61277&side=consumer&timestamp=1533744487475}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:09.798 org.apache.curator.utils.Compatibility.<clinit>(Compatibility.java:41) - Running in ZooKeeper 3.4.x compatibility mode
[INFO ] 16:21:09.821 org.apache.curator.framework.imps.CuratorFrameworkImpl.start(CuratorFrameworkImpl.java:290) - Starting
[DEBUG] 16:21:09.822 org.apache.curator.CuratorZookeeperClient.start(CuratorZookeeperClient.java:207) - Starting
[DEBUG] 16:21:09.822 org.apache.curator.ConnectionState.start(ConnectionState.java:109) - Starting
[DEBUG] 16:21:09.822 org.apache.curator.ConnectionState.reset(ConnectionState.java:194) - reset
[INFO ] 16:21:10.831 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:zookeeper.version=3.4.8--1, built on 02/06/2016 03:18 GMT
[INFO ] 16:21:10.831 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:host.name=192.168.3.8
[INFO ] 16:21:10.831 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.version=1.8.0_131
[INFO ] 16:21:10.831 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.vendor=Oracle Corporation
[INFO ] 16:21:10.831 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre
[INFO ] 16:21:10.832 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.class.path=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/tools.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-web-api/target/classes:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-framework/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-daocache/1.r.66-SNAPSHOT/nutz-plugins-daocache-1.r.66-20180614.031905-54.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-model/target/classes:/Users/haigo/.m2/repository/cn/wizzer/app/wk-code-generator-nb/5.0.1-SNAPSHOT/wk-code-generator-nb-5.0.1-20180409.075514-1.jar:/Users/haigo/.m2/repository/org/atteo/evo-inflector/1.0.1/evo-inflector-1.0.1.jar:/Users/haigo/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/haigo/.m2/repository/org/apache/velocity/velocity/1.7/velocity-1.7.jar:/Users/haigo/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar:/Users/haigo/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-common/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar:/Users/haigo/.m2/repository/org/nutz/nutz/1.r.66-SNAPSHOT/nutz-1.r.66-20180611.015908-74.jar:/Users/haigo/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-dubbo/1.r.66-SNAPSHOT/nutz-integration-dubbo-1.r.66-20180614.031821-63.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-framework/4.0.1/curator-framework-4.0.1.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-client/4.0.1/curator-client-4.0.1.jar:/Users/haigo/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/haigo/.m2/repository/com/alibaba/dubbo/2.6.2/dubbo-2.6.2.jar:/Users/haigo/.m2/repository/org/javassist/javassist/3.22.0-GA/javassist-3.22.0-GA.jar:/Users/haigo/.m2/repository/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/haigo/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/com/101tec/zkclient/0.10/zkclient-0.10.jar:/Users/haigo/.m2/repository/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.jar:/Users/haigo/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/Users/haigo/.m2/repository/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-mvc/2.2-SNAPSHOT/nutzboot-starter-nutz-mvc-2.2-20180611.111306-187.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jetty/2.2-SNAPSHOT/nutzboot-starter-jetty-2.2-20180611.111230-200.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-servlets/9.4.11.v20180605/jetty-servlets-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-continuation/9.4.11.v20180605/jetty-continuation-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-http/9.4.11.v20180605/jetty-http-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-util/9.4.11.v20180605/jetty-util-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-io/9.4.11.v20180605/jetty-io-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-webapp/9.4.11.v20180605/jetty-webapp-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-xml/9.4.11.v20180605/jetty-xml-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-servlet/9.4.11.v20180605/jetty-servlet-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-security/9.4.11.v20180605/jetty-security-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-server/9.4.11.v20180605/jetty-server-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-server/9.4.11.v20180605/websocket-server-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-common/9.4.11.v20180605/websocket-common-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-api/9.4.11.v20180605/websocket-api-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-client/9.4.11.v20180605/websocket-client-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-client/9.4.11.v20180605/jetty-client-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-servlet/9.4.11.v20180605/websocket-servlet-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.11.v20180605/javax-websocket-server-impl-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-annotations/9.4.11.v20180605/jetty-annotations-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-plus/9.4.11.v20180605/jetty-plus-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-commons/6.1.1/asm-commons-6.1.1.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-tree/6.1.1/asm-tree-6.1.1.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-analysis/6.1.1/asm-analysis-6.1.1.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.11.v20180605/javax-websocket-client-impl-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar:/Users/haigo/.m2/repository/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar:/Users/haigo/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-websocket/1.r.66-SNAPSHOT/nutz-plugins-websocket-1.r.66-20180614.031938-53.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-servlet3/2.2-SNAPSHOT/nutzboot-servlet3-2.2-20180611.111228-44.jar:/Users/haigo/.m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm/6.1.1/asm-6.1.1.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-jedis/1.r.66-SNAPSHOT/nutz-integration-jedis-1.r.66-20180614.031845-61.jar:/Users/haigo/.m2/repository/redis/clients/jedis/2.9.0/jedis-2.9.0.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-test-junit4/2.2-SNAPSHOT/nutzboot-starter-test-junit4-2.2-20180611.111334-80.jar:/Users/haigo/.m2/repository/io/jsonwebtoken/jjwt/0.9.0/jjwt-0.9.0.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.5/jackson-core-2.9.5.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/Users/haigo/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-service-cms/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-wkcache/1.r.66-SNAPSHOT/nutz-plugins-wkcache-1.r.66-20180614.031939-53.jar:/Users/haigo/.m2/repository/com/alibaba/druid/1.1.10/druid-1.1.10.jar:/Users/haigo/.m2/repository/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.jar:/Users/haigo/.m2/repository/org/springframework/spring-core/4.3.16.RELEASE/spring-core-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/haigo/.m2/repository/org/springframework/spring-context/4.3.16.RELEASE/spring-context-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-aop/4.3.16.RELEASE/spring-aop-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-beans/4.3.16.RELEASE/spring-beans-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-expression/4.3.16.RELEASE/spring-expression-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-tx/4.3.16.RELEASE/spring-tx-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-jms/4.1.8.RELEASE/spring-jms-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-messaging/4.1.8.RELEASE/spring-messaging-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/apache/xbean/xbean-spring/3.16/xbean-spring-3.16.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-core/5.7.0/activemq-core-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1.1/geronimo-jms_1.1_spec-1.1.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/kahadb/5.7.0/kahadb-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar:/Users/haigo/.m2/repository/org/fusesource/mqtt-client/mqtt-client/1.3/mqtt-client-1.3.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch-transport/1.11/hawtdispatch-transport-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch/1.11/hawtdispatch-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar:/Users/haigo/.m2/repository/commons-net/commons-net/3.1/commons-net-3.1.jar:/Users/haigo/.m2/repository/org/jasypt/jasypt/1.9.0/jasypt-1.9.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-pool/5.12.1/activemq-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-jms-pool/5.12.1/activemq-jms-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-client/5.12.1/activemq-client-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar:/Applications/IntelliJ IDEA 15.app/Contents/lib/idea_rt.jar
[INFO ] 16:21:10.832 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.library.path=/Users/haigo/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
[INFO ] 16:21:10.832 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.io.tmpdir=/var/folders/f7/j879sdwj0fncvdxrsmtrjk300000gn/T/
[INFO ] 16:21:10.832 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.compiler=<NA>
[INFO ] 16:21:10.832 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.name=Mac OS X
[INFO ] 16:21:10.832 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.arch=x86_64
[INFO ] 16:21:10.832 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.version=10.12.6
[INFO ] 16:21:10.832 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.name=haigo
[INFO ] 16:21:10.832 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.home=/Users/haigo
[INFO ] 16:21:10.833 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.dir=/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo
[INFO ] 16:21:10.834 org.apache.zookeeper.ZooKeeper.<init>(ZooKeeper.java:438) - Initiating client connection, connectString=119.23.144.5:2181 sessionTimeout=60000 watcher=org.apache.curator.ConnectionState@3fbcfe81
[DEBUG] 16:21:10.836 org.apache.zookeeper.ClientCnxn.<clinit>(ClientCnxn.java:117) - zookeeper.disableAutoWatchReset is false
[INFO ] 16:21:10.853 org.apache.curator.framework.imps.CuratorFrameworkImpl.start(CuratorFrameworkImpl.java:332) - Default schema
[DEBUG] 16:21:10.865 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class RouterFactory$Adaptive implements com.alibaba.dubbo.rpc.cluster.RouterFactory {
public com.alibaba.dubbo.rpc.cluster.Router getRouter(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getProtocol();
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.RouterFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.cluster.RouterFactory extension = (com.alibaba.dubbo.rpc.cluster.RouterFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.RouterFactory.class).getExtension(extName);
return extension.getRouter(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:10.862 org.apache.zookeeper.ClientCnxn$SendThread.logStartConnect(ClientCnxn.java:1032) - Opening socket connection to server 119.23.144.5/119.23.144.5:2181. Will not attempt to authenticate using SASL (unknown error)
[DEBUG] 16:21:10.875 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ConfiguratorFactory$Adaptive implements com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory {
public com.alibaba.dubbo.rpc.cluster.Configurator getConfigurator(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getProtocol();
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory extension = (com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory.class).getExtension(extName);
return extension.getConfigurator(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:10.902 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=consumers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=consumer&timestamp=1533802869525, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:10.905 org.apache.zookeeper.ClientCnxn$SendThread.primeConnection(ClientCnxn.java:876) - Socket connection established to 119.23.144.5/119.23.144.5:2181, initiating session
[DEBUG] 16:21:10.906 org.apache.zookeeper.ClientCnxn$SendThread.primeConnection(ClientCnxn.java:949) - Session establishment request sent on 119.23.144.5/119.23.144.5:2181
[INFO ] 16:21:10.923 org.apache.zookeeper.ClientCnxn$SendThread.onConnected(ClientCnxn.java:1299) - Session establishment complete on server 119.23.144.5/119.23.144.5:2181, sessionid = 0x1003a1f71460039, negotiated timeout = 40000
[DEBUG] 16:21:10.927 org.apache.curator.ConnectionState.process(ConnectionState.java:174) - Negotiated session timeout: 40000
[INFO ] 16:21:10.931 org.apache.curator.framework.state.ConnectionStateManager.postState(ConnectionStateManager.java:237) - State change: CONNECTED
[DEBUG] 16:21:10.932 org.apache.curator.framework.imps.CuratorFrameworkImpl.unSleepBackgroundOperations(CuratorFrameworkImpl.java:1004) - Clearing sleep for 0 operations
[DEBUG] 16:21:10.957 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 1,3  replyHeader:: 1,5369,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers,F  response:: s{2076,2076,1528451666921,1528451666921,0,239,0,0,0,1,5353} 
[DEBUG] 16:21:10.973 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 2,1  replyHeader:: 2,5370,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers/consumer%253A%252F%252F192.168.3.8%252Fcn.wizzer.app.member.modules.services.MemberService%253Fapplication%253Dwk-nb-web-api%2526category%253Dconsumers%2526check%253Dfalse%2526dubbo%253D2.6.2%2526interface%253Dcn.wizzer.app.member.modules.services.MemberService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dconsumer%2526timestamp%253D1533802869525,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers/consumer%253A%252F%252F192.168.3.8%252Fcn.wizzer.app.member.modules.services.MemberService%253Fapplication%253Dwk-nb-web-api%2526category%253Dconsumers%2526check%253Dfalse%2526dubbo%253D2.6.2%2526interface%253Dcn.wizzer.app.member.modules.services.MemberService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dconsumer%2526timestamp%253D1533802869525 
[INFO ] 16:21:10.973 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=providers,configurators,routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=consumer&timestamp=1533802869525, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:10.984 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 3,3  replyHeader:: 3,5370,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:21:10.997 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 4,1  replyHeader:: 4,5371,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/providers,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:21:11.015 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 5,12  replyHeader:: 5,5371,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/providers,T  response:: v{},s{2073,2073,1528451666917,1528451666917,0,108,0,0,0,0,3955} 
[DEBUG] 16:21:11.025 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 6,3  replyHeader:: 6,5371,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:21:11.036 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 7,1  replyHeader:: 7,5372,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:21:11.046 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 8,12  replyHeader:: 8,5372,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/configurators,T  response:: v{},s{2083,2083,1528451666930,1528451666930,0,0,0,0,0,0,2083} 
[DEBUG] 16:21:11.057 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 9,3  replyHeader:: 9,5372,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:21:11.069 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 10,1  replyHeader:: 10,5373,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/routers,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:21:11.079 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 11,12  replyHeader:: 11,5373,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/routers,T  response:: v{},s{2080,2080,1528451666925,1528451666925,0,0,0,0,0,0,2080} 
[INFO ] 16:21:11.079 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=providers,configurators,routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=consumer&timestamp=1533802869525, urls: [empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=providers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=consumer&timestamp=1533802869525, empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=consumer&timestamp=1533802869525, empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=consumer&timestamp=1533802869525], dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.084 com.alibaba.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:425) -  [DUBBO] Refer dubbo service cn.wizzer.app.member.modules.services.MemberService from url zookeeper://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&register.ip=192.168.3.8&side=consumer&timestamp=1533802869525, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.116 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.116 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.116 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.116 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.117 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.117 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.118 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.118 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@628487793
[DEBUG] 16:21:11.118 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@628487793
[DEBUG] 16:21:11.118 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@628487793
[DEBUG] 16:21:11.118 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:11.118 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:11.118 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:21:11.119 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.119 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.119 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsChannelServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl>
[DEBUG] 16:21:11.119 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsChannelServiceImpl
[DEBUG] 16:21:11.119 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.119 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsChannelServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl>
[DEBUG] 16:21:11.119 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsChannelServiceImpl' to [app] 
[DEBUG] 16:21:11.119 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:11.119 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:21:11.119 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:21:11.119 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:21:11.120 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:21:11.120 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:21:11.121 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:21:11.124 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:11.131 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_channel
[DEBUG] 16:21:11.134 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.134 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.134 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.134 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.135 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.135 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.135 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:21:11.135 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@628487793
[DEBUG] 16:21:11.135 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@628487793
[DEBUG] 16:21:11.135 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@628487793
[DEBUG] 16:21:11.135 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:11.136 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@628487793
[DEBUG] 16:21:11.136 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:21:11.136 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestSignController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(tokenUtil) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.137 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.138 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsArticleServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl>
[DEBUG] 16:21:11.138 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsArticleServiceImpl
[DEBUG] 16:21:11.138 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:11.138 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsArticleServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl>
[DEBUG] 16:21:11.138 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsArticleServiceImpl' to [app] 
[DEBUG] 16:21:11.138 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:11.138 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:21:11.138 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:21:11.138 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:21:11.138 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:21:11.142 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:21:11.148 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_article
[DEBUG] 16:21:11.148 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'qtjenbth4kjulrjisbmcqpibkv'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.148 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=qtjenbth4kjulrjisbmcqpibkv
[DEBUG] 16:21:11.148 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(qtjenbth4kjulrjisbmcqpibkv) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:11.149 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'qtjenbth4kjulrjisbmcqpibkv'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.149 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'qtjenbth4kjulrjisbmcqpibkv' to [app] 
[DEBUG] 16:21:11.150 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:21:11.151 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:21:11.194 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:21:11.194 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:21:11.194 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[DEBUG] 16:21:11.194 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboPrototeConfig
[DEBUG] 16:21:11.194 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboPrototeConfig) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:11.194 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[DEBUG] 16:21:11.194 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboPrototeConfig' to [app] 
[DEBUG] 16:21:11.195 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.ProtocolConfig without AOP
[DEBUG] 16:21:11.358 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.cache;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class CacheFactory$Adaptive implements com.alibaba.dubbo.cache.CacheFactory {
public com.alibaba.dubbo.cache.Cache getCache(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.rpc.Invocation arg1) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
if (arg1 == null) throw new IllegalArgumentException("invocation == null");
String methodName = arg1.getMethodName();
String extName = url.getMethodParameter(methodName, "cache", "lru");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.cache.CacheFactory) name from url(" + url.toString() + ") use keys([cache])");
com.alibaba.dubbo.cache.CacheFactory extension = (com.alibaba.dubbo.cache.CacheFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.cache.CacheFactory.class).getExtension(extName);
return extension.getCache(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.394 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.monitor;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class MonitorFactory$Adaptive implements com.alibaba.dubbo.monitor.MonitorFactory {
public com.alibaba.dubbo.monitor.Monitor getMonitor(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.monitor.MonitorFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.monitor.MonitorFactory extension = (com.alibaba.dubbo.monitor.MonitorFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.monitor.MonitorFactory.class).getExtension(extName);
return extension.getMonitor(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.404 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.validation;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Validation$Adaptive implements com.alibaba.dubbo.validation.Validation {
public com.alibaba.dubbo.validation.Validator getValidator(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("validation", "jvalidation");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.validation.Validation) name from url(" + url.toString() + ") use keys([validation])");
com.alibaba.dubbo.validation.Validation extension = (com.alibaba.dubbo.validation.Validation)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.validation.Validation.class).getExtension(extName);
return extension.getValidator(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.411 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.411 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService to url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871201, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.412 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871201 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61792&registry=zookeeper&timestamp=1533802871201, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.423 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Transporter$Adaptive implements com.alibaba.dubbo.remoting.Transporter {
public com.alibaba.dubbo.remoting.Client connect(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.remoting.ChannelHandler arg1) throws com.alibaba.dubbo.remoting.RemotingException {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("client", url.getParameter("transporter", "netty"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Transporter) name from url(" + url.toString() + ") use keys([client, transporter])");
com.alibaba.dubbo.remoting.Transporter extension = (com.alibaba.dubbo.remoting.Transporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Transporter.class).getExtension(extName);
return extension.connect(arg0, arg1);
}
public com.alibaba.dubbo.remoting.Server bind(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.remoting.ChannelHandler arg1) throws com.alibaba.dubbo.remoting.RemotingException {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("server", url.getParameter("transporter", "netty"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Transporter) name from url(" + url.toString() + ") use keys([server, transporter])");
com.alibaba.dubbo.remoting.Transporter extension = (com.alibaba.dubbo.remoting.Transporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Transporter.class).getExtension(extName);
return extension.bind(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.435 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Dispatcher$Adaptive implements com.alibaba.dubbo.remoting.Dispatcher {
public com.alibaba.dubbo.remoting.ChannelHandler dispatch(com.alibaba.dubbo.remoting.ChannelHandler arg0, com.alibaba.dubbo.common.URL arg1) {
if (arg1 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg1;
String extName = url.getParameter("dispatcher", url.getParameter("dispather", url.getParameter("channel.handler", "all")));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Dispatcher) name from url(" + url.toString() + ") use keys([dispatcher, dispather, channel.handler])");
com.alibaba.dubbo.remoting.Dispatcher extension = (com.alibaba.dubbo.remoting.Dispatcher)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Dispatcher.class).getExtension(extName);
return extension.dispatch(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.450 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.common.threadpool;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ThreadPool$Adaptive implements com.alibaba.dubbo.common.threadpool.ThreadPool {
public java.util.concurrent.Executor getExecutor(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("threadpool", "fixed");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.common.threadpool.ThreadPool) name from url(" + url.toString() + ") use keys([threadpool])");
com.alibaba.dubbo.common.threadpool.ThreadPool extension = (com.alibaba.dubbo.common.threadpool.ThreadPool)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.common.threadpool.ThreadPool.class).getExtension(extName);
return extension.getExecutor(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.481 com.alibaba.dubbo.remoting.transport.netty.NettyHelper$DubboLogger.debug(NettyHelper.java:73) -  [DUBBO] Couldn't determine the NIO constraint level from the system properties; using the safest level (2), dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.512 com.alibaba.dubbo.remoting.transport.AbstractServer.<init>(AbstractServer.java:65) -  [DUBBO] Start NettyServer bind /0.0.0.0:15960, export /192.168.3.8:15960, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.515 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871201, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.525 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 12,3  replyHeader:: 12,5373,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers,F  response:: s{45,45,1528272618645,1528272618645,0,193,0,0,14,1,5365} 
[DEBUG] 16:21:11.538 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 13,1  replyHeader:: 13,5374,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsLinkService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871201,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsLinkService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871201 
[INFO ] 16:21:11.540 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871201, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.550 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 14,3  replyHeader:: 14,5374,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService,F  response:: s{44,44,1528272618636,1528272618636,0,4,0,0,14,4,973} 
[DEBUG] 16:21:11.561 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 15,1  replyHeader:: 15,5375,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:21:11.571 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 16,12  replyHeader:: 16,5375,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/configurators,T  response:: v{},s{47,47,1528272618682,1528272618682,0,0,0,0,14,0,47} 
[INFO ] 16:21:11.572 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871201, urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871201], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.572 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871201], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.572 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871201, override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871201], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.574 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'q139nddtssgqdou0hh319bf1gk'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.574 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=q139nddtssgqdou0hh319bf1gk
[DEBUG] 16:21:11.574 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(q139nddtssgqdou0hh319bf1gk) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:11.574 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'q139nddtssgqdou0hh319bf1gk'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.574 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'q139nddtssgqdou0hh319bf1gk' to [app] 
[DEBUG] 16:21:11.575 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:21:11.575 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:21:11.575 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:21:11.575 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:21:11.575 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:21:11.615 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.615 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService to url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871578, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.615 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871578 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61792&registry=zookeeper&timestamp=1533802871578, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.616 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871578, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.626 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 17,3  replyHeader:: 17,5375,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers,F  response:: s{53,53,1528272629142,1528272629142,0,193,0,0,14,1,5361} 
[DEBUG] 16:21:11.640 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 18,1  replyHeader:: 18,5376,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsLinkClassService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkClassService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871578,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsLinkClassService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkClassService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871578 
[INFO ] 16:21:11.641 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871578, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.651 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 19,3  replyHeader:: 19,5376,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService,F  response:: s{52,52,1528272629057,1528272629057,0,4,0,0,14,4,949} 
[DEBUG] 16:21:11.662 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 20,1  replyHeader:: 20,5377,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:21:11.673 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 21,12  replyHeader:: 21,5377,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/configurators,T  response:: v{},s{55,55,1528272629200,1528272629200,0,0,0,0,14,0,55} 
[INFO ] 16:21:11.673 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871578, urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871578], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.674 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871578], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.674 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871578, override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871578], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.674 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'vubghls66ij06q9drgo798c5td'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.674 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=vubghls66ij06q9drgo798c5td
[DEBUG] 16:21:11.675 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(vubghls66ij06q9drgo798c5td) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:11.675 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'vubghls66ij06q9drgo798c5td'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.675 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'vubghls66ij06q9drgo798c5td' to [app] 
[DEBUG] 16:21:11.675 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:21:11.675 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:21:11.675 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:21:11.676 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:21:11.676 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:21:11.698 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.698 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService to url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871679, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.698 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871679 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61792&registry=zookeeper&timestamp=1533802871679, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.699 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871679, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.711 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 22,3  replyHeader:: 22,5377,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers,F  response:: s{41,41,1528272613392,1528272613392,0,191,0,0,14,1,5359} 
[DEBUG] 16:21:11.726 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 23,1  replyHeader:: 23,5378,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsChannelService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsChannelService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetChannel%252ClistChannel%252CgetMaxId%252CgetSubPath%252ChasChannel%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CdeleteAndChild%252Csave%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871679,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsChannelService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsChannelService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetChannel%252ClistChannel%252CgetMaxId%252CgetSubPath%252ChasChannel%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CdeleteAndChild%252Csave%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871679 
[INFO ] 16:21:11.726 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871679, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.736 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 24,3  replyHeader:: 24,5378,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService,F  response:: s{40,40,1528272613381,1528272613381,0,4,0,0,14,4,781} 
[DEBUG] 16:21:11.747 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 25,1  replyHeader:: 25,5379,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:21:11.757 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 26,12  replyHeader:: 26,5379,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/configurators,T  response:: v{},s{43,43,1528272613433,1528272613433,0,0,0,0,14,0,43} 
[INFO ] 16:21:11.757 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871679, urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871679], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.758 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871679], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.758 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871679, override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871679], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.758 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'ttd2v072qegqupls7aidgauhjr'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.758 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=ttd2v072qegqupls7aidgauhjr
[DEBUG] 16:21:11.758 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(ttd2v072qegqupls7aidgauhjr) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:11.758 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'ttd2v072qegqupls7aidgauhjr'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.758 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'ttd2v072qegqupls7aidgauhjr' to [app] 
[DEBUG] 16:21:11.759 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:21:11.759 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:21:11.759 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:21:11.759 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:21:11.759 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:21:11.779 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.779 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService to url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871761, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.780 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871761 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61792&registry=zookeeper&timestamp=1533802871761, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.781 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871761, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.790 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 27,3  replyHeader:: 27,5379,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers,F  response:: s{49,49,1528272623792,1528272623792,0,193,0,0,14,1,5363} 
[DEBUG] 16:21:11.803 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 28,1  replyHeader:: 28,5380,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsSiteService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsSiteService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CgetSite%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871761,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsSiteService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsSiteService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CgetSite%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871761 
[INFO ] 16:21:11.803 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871761, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.813 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 29,3  replyHeader:: 29,5380,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService,F  response:: s{48,48,1528272623776,1528272623776,0,4,0,0,14,4,364} 
[DEBUG] 16:21:11.824 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 30,1  replyHeader:: 30,5381,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:21:11.836 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 31,12  replyHeader:: 31,5381,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/configurators,T  response:: v{},s{51,51,1528272623832,1528272623832,0,0,0,0,14,0,51} 
[INFO ] 16:21:11.837 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871761, urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871761], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.837 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871761], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.837 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871761, override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871761], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.838 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '51l5rple9si6ip5ssbou7o1ctu'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.838 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=51l5rple9si6ip5ssbou7o1ctu
[DEBUG] 16:21:11.838 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(51l5rple9si6ip5ssbou7o1ctu) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:11.838 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'51l5rple9si6ip5ssbou7o1ctu'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.838 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '51l5rple9si6ip5ssbou7o1ctu' to [app] 
[DEBUG] 16:21:11.838 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:21:11.839 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:21:11.839 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:21:11.839 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:21:11.839 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:21:11.860 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsTestService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.860 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsTestService to url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871847, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.860 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsTestService url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871847 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61792&registry=zookeeper&timestamp=1533802871847, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.861 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871847, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.872 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 32,3  replyHeader:: 32,5381,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers,F  response:: s{2208,2208,1528513630497,1528513630497,0,183,0,0,0,1,5357} 
[DEBUG] 16:21:11.884 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 33,1  replyHeader:: 33,5382,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsTestService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsTestService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871847,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsTestService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsTestService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871847 
[INFO ] 16:21:11.884 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871847, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.894 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 34,3  replyHeader:: 34,5382,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService,F  response:: s{2205,2205,1528513630491,1528513630491,0,4,0,0,14,4,2219} 
[DEBUG] 16:21:11.907 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 35,1  replyHeader:: 35,5383,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:21:11.917 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 36,12  replyHeader:: 36,5383,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/configurators,T  response:: v{},s{2219,2219,1528513630516,1528513630516,0,0,0,0,0,0,2219} 
[INFO ] 16:21:11.917 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871847, urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871847], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.918 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871847], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.918 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871847, override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871847], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.918 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '2kqt8bvc3giieqq90cf2jjhki8'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.918 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=2kqt8bvc3giieqq90cf2jjhki8
[DEBUG] 16:21:11.919 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(2kqt8bvc3giieqq90cf2jjhki8) in DubboConfigIocLoader@1919834117
[DEBUG] 16:21:11.919 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'2kqt8bvc3giieqq90cf2jjhki8'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:21:11.919 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '2kqt8bvc3giieqq90cf2jjhki8' to [app] 
[DEBUG] 16:21:11.919 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:21:11.919 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:21:11.919 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:21:11.919 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:21:11.920 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:21:11.936 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.936 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService to url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871921, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.936 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService url dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=15960&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871921 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61792&registry=zookeeper&timestamp=1533802871921, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:11.937 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871921, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.951 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 37,3  replyHeader:: 37,5383,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers,F  response:: s{57,57,1528272634291,1528272634291,0,193,0,0,14,1,5367} 
[DEBUG] 16:21:11.968 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 38,1  replyHeader:: 38,5384,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsArticleService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsArticleService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CgetListPage%252CupdateIgnoreNull%252CgetArticle%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871921,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers/dubbo%253A%252F%252F192.168.3.8%253A15960%252Fcn.wizzer.app.cms.modules.services.CmsArticleService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsArticleService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CgetListPage%252CupdateIgnoreNull%252CgetArticle%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61792%2526side%253Dprovider%2526timestamp%253D1533802871921 
[INFO ] 16:21:11.971 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871921, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:11.982 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 39,3  replyHeader:: 39,5384,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService,F  response:: s{56,56,1528272634281,1528272634281,0,4,0,0,14,4,829} 
[DEBUG] 16:21:11.993 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 40,1  replyHeader:: 40,5385,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:21:12.011 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460039, packet:: clientPath:null serverPath:null finished:false header:: 41,12  replyHeader:: 41,5385,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/configurators,T  response:: v{},s{59,59,1528272634328,1528272634328,0,0,0,0,14,0,59} 
[INFO ] 16:21:12.011 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871921, urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871921], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:12.012 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871921], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:21:12.012 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871921, override urls: [empty://192.168.3.8:15960/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61792&side=provider&timestamp=1533802871921], dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:21:12.033 org.eclipse.jetty.server.Server.doStart(Server.java:374) - jetty-9.4.11.v20180605; built: 2018-06-05T18:24:03.829Z; git: d5fc0523cfa96bfebfbda19606cad384d772f04c; jvm 1.8.0_131-b11
[INFO ] 16:21:12.096 org.eclipse.jetty.util.thread.ThreadPoolBudget.lambda$infoOnLeases$1(ThreadPoolBudget.java:165) - ReservedThreadExecutor@f4a3a8d{s=0/1,p=0} requires 1 threads from QueuedThreadPool[qtp404648734]@181e731e{STARTING,4<=0<=8,i=0,q=0}[ReservedThreadExecutor@f4a3a8d{s=0/1,p=0}]
[WARN ] 16:21:12.097 org.eclipse.jetty.util.thread.ThreadPoolBudget.check(ThreadPoolBudget.java:156) - Low configured threads: (max=8 - required=1)=7 < warnAt=8 for QueuedThreadPool[qtp404648734]@181e731e{STARTING,4<=0<=8,i=0,q=0}[ReservedThreadExecutor@f4a3a8d{s=0/1,p=0}]
[WARN ] 16:21:12.327 org.eclipse.jetty.annotations.AnnotationParser.asmVersion(AnnotationParser.java:95) - Unknown asm implementation version, assuming version 393216
[INFO ] 16:21:12.327 org.eclipse.jetty.annotations.AnnotationConfiguration.scanForAnnotations(AnnotationConfiguration.java:489) - Scanning elapsed time=0ms
[INFO ] 16:21:12.347 org.eclipse.jetty.webapp.StandardDescriptorProcessor.visitServlet(StandardDescriptorProcessor.java:283) - NO JSP Support for /, did not find org.eclipse.jetty.jsp.JettyJspServlet
[INFO ] 16:21:12.382 org.eclipse.jetty.server.session.DefaultSessionIdManager.doStart(DefaultSessionIdManager.java:365) - DefaultSessionIdManager workerName=node0
[INFO ] 16:21:12.382 org.eclipse.jetty.server.session.DefaultSessionIdManager.doStart(DefaultSessionIdManager.java:370) - No SessionScavenger set, using defaults
[INFO ] 16:21:12.384 org.eclipse.jetty.server.session.HouseKeeper.startScavenging(HouseKeeper.java:149) - node0 Scavenging every 600000ms
[DEBUG] 16:21:12.398 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatServletStarter'<interface org.nutz.boot.starter.WebServletFace>
[DEBUG] 16:21:12.412 org.nutz.boot.starter.servlet3.NbServletContextListener.lambda$contextInitialized$0(NbServletContextListener.java:76) - add Servlet name=druid pathSpec=/druid/*
[INFO ] 16:21:12.413 org.nutz.boot.starter.jdbc.DruidWebStatServletStarter.getInitParameters(DruidWebStatServletStarter.java:73) - druid stat view random user=druid password=3sm2952n8cgk9pkoe58fj3ulhm
[DEBUG] 16:21:12.415 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatFilterStarter'<interface org.nutz.boot.starter.WebFilterFace>
[DEBUG] 16:21:12.415 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'whaleFilterStarter'<interface org.nutz.boot.starter.WebFilterFace>
[DEBUG] 16:21:12.415 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutFilterStarter'<interface org.nutz.boot.starter.WebFilterFace>
[DEBUG] 16:21:12.417 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'whaleFilter'<class org.nutz.mvc.WhaleFilter>
[DEBUG] 16:21:12.417 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=whaleFilter
[DEBUG] 16:21:12.418 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(whaleFilter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:12.418 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'whaleFilter'<class org.nutz.mvc.WhaleFilter>
[DEBUG] 16:21:12.418 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'whaleFilter' to [app] 
[DEBUG] 16:21:12.435 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.mvc.WhaleFilter without AOP
[DEBUG] 16:21:12.435 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'whaleFilterStarter'<>
[DEBUG] 16:21:12.435 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'whaleFilter'<class org.nutz.mvc.WhaleFilter>
[DEBUG] 16:21:12.436 org.nutz.boot.starter.servlet3.NbServletContextListener.lambda$contextInitialized$2(NbServletContextListener.java:106) - add filter name=whale pathSpec=/*
[DEBUG] 16:21:12.473 org.nutz.boot.starter.servlet3.NbServletContextListener.lambda$contextInitialized$2(NbServletContextListener.java:106) - add filter name=druid pathSpec=/*
[DEBUG] 16:21:12.473 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutFilter'<class org.nutz.mvc.NutFilter>
[DEBUG] 16:21:12.473 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=nutFilter
[DEBUG] 16:21:12.473 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutFilter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:21:12.473 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'nutFilter'<class org.nutz.mvc.NutFilter>
[DEBUG] 16:21:12.473 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nutFilter' to [app] 
[DEBUG] 16:21:12.483 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.mvc.NutFilter without AOP
[DEBUG] 16:21:12.483 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutFilterStarter'<>
[DEBUG] 16:21:12.483 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutFilter'<class org.nutz.mvc.NutFilter>
[DEBUG] 16:21:12.484 org.nutz.boot.starter.servlet3.NbServletContextListener.lambda$contextInitialized$2(NbServletContextListener.java:106) - add filter name=nutz pathSpec=/*
[DEBUG] 16:21:12.484 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatServletStarter'<interface org.nutz.boot.starter.WebServletFace>
[INFO ] 16:21:12.530 org.nutz.mvc.NutFilter._init(NutFilter.java:85) - NutFilter[nutz] starting ...
[DEBUG] 16:21:12.550 org.nutz.resource.Scans.printLocations(Scans.java:527) - Locations count=135 time use 0ms
[DEBUG] 16:21:12.551 org.nutz.mvc.config.AbstractNutConfig.createLoading(AbstractNutConfig.java:67) - Loading by class org.nutz.boot.starter.nutz.mvc.NbMvcLoading
[INFO ] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:55) - Nutz Version : 1.r.66-SNAPSHOT 
[INFO ] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:56) - Nutz.Mvc[nutz] is initializing ...
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:60) - Web Container Information:
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:61) -  - Default Charset : UTF-8
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:62) -  - Current . path  : /Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/.
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:63) -  - Java Version    : 1.8.0_131
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:64) -  - File separator  : /
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:65) -  - Timezone        : Asia/Shanghai
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:66) -  - OS              : Mac OS X x86_64
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:67) -  - ServerInfo      : jetty/9.4.11.v20180605
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:68) -  - Servlet API     : 3.1
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:73) -  - ContextPath     : 
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:74) -  - context.tempdir : /Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/temp
[DEBUG] 16:21:12.560 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:75) -  - MainModule      : cn.wizzer.app.web.commons.core.WebApiMainLauncher
[INFO ] 16:21:12.561 org.nutz.mvc.config.AbstractNutConfig.getAppRoot(AbstractNutConfig.java:82) - /WEB-INF/ not Found?!
[DEBUG] 16:21:12.561 org.nutz.mvc.impl.NutLoading.createContext(NutLoading.java:239) - >> app.root = ./webapp
[INFO ] 16:21:12.573 org.nutz.mvc.impl.NutLoading.evalUrlMapping(NutLoading.java:159) - Build URL mapping by org.nutz.mvc.impl.UrlMappingImpl ...
[DEBUG] 16:21:12.575 org.nutz.mvc.impl.NutLoading.createViewMakers(NutLoading.java:369) - @Views(DefaultViewMaker.class)
[DEBUG] 16:21:12.577 org.nutz.mvc.impl.NutLoading.createChainMaker(NutLoading.java:267) - @ChainBy(org.nutz.mvc.impl.NutActionChainMaker)
[DEBUG] 16:21:12.592 org.nutz.mvc.impl.Loadings.scanModuleInPackage(Loadings.java:185) -  > scan 'cn.wizzer'
[DEBUG] 16:21:12.600 org.nutz.resource.Scans.scan(Scans.java:280) - Found 111 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:21:12.602 org.nutz.mvc.impl.Loadings.checkModule(Loadings.java:204) -    >> add 'cn.wizzer.app.web.modules.controllers.open.ApiTestSignController'
[DEBUG] 16:21:12.603 org.nutz.mvc.impl.Loadings.checkModule(Loadings.java:204) -    >> add 'cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController'
[DEBUG] 16:21:12.603 org.nutz.mvc.impl.Loadings.checkModule(Loadings.java:204) -    >> add 'cn.wizzer.app.web.modules.controllers.open.ApiTokenController'
[DEBUG] 16:21:12.735 org.nutz.mvc.impl.Loadings.scanModules(Loadings.java:155) - module class location 'file:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-web-api/target/classes/'
[DEBUG] 16:21:12.735 org.nutz.mvc.impl.Loadings.scanModuleInPackage(Loadings.java:185) -  > scan 'cn.wizzer.app.web.commons.core'
[DEBUG] 16:21:12.737 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( cn/wizzer/app/web/commons/core/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:21:12.738 org.nutz.mvc.impl.NutLoading.evalUrlMapping(NutLoading.java:196) - Use org.nutz.mvc.impl.NutEntryDeterminer as EntryMethodDeterminer
[INFO ] 16:21:12.784 org.nutz.mvc.impl.NutActionChainMaker.getProcessorByName(NutActionChainMaker.java:72) - Optional processor class not found, disabled : org.nutz.integration.shiro.NutShiroProcessor
[INFO ] 16:21:12.801 org.nutz.mvc.impl.NutActionChainMaker.getProcessorByName(NutActionChainMaker.java:72) - Optional processor class not found, disabled : org.nutz.plugins.validation.ValidationProcessor
[DEBUG] 16:21:12.811 org.nutz.mvc.impl.UrlMappingImpl.print(UrlMappingImpl.java:146) -    '/open/api/token/get'       >> (ApiTokenController.java:38).get      : Object     | @Ok(json ) @Fail(null ) | by 1 Filters | (I:UTF-8/O:UTF-8)
[DEBUG] 16:21:12.825 org.nutz.mvc.impl.UrlMappingImpl.print(UrlMappingImpl.java:146) -    '/open/api/test/test2'      >> (ApiTestSignController.java:27).test2 : Object     | @Ok(json ) @Fail(null ) | by 0 Filters | (I:UTF-8/O:UTF-8)
[DEBUG] 16:21:12.825 org.nutz.mvc.impl.UrlMappingImpl.print(UrlMappingImpl.java:146) -    '/open/api/test/test'       >> (ApiTestSignController.java:45).test1 : Object     | @Ok(json ) @Fail(null ) | by 0 Filters | (I:UTF-8/O:UTF-8)
[DEBUG] 16:21:12.826 org.nutz.mvc.impl.UrlMappingImpl.print(UrlMappingImpl.java:146) -    '/open/api/test/test1'      >> (ApiTestTokenController.java:33).test1 : Object     | @Ok(json ) @Fail(null ) | by 0 Filters | (I:UTF-8/O:UTF-8)
[INFO ] 16:21:12.826 org.nutz.mvc.impl.NutLoading.evalUrlMapping(NutLoading.java:221) - Found 4 module methods
[DEBUG] 16:21:12.826 org.nutz.mvc.impl.NutLoading.evalLocalization(NutLoading.java:307) - Localization: org.nutz.mvc.impl.NutMessageLoader('locales/')  dft<>
[DEBUG] 16:21:12.832 org.nutz.resource.Scans.scan(Scans.java:280) - Found 0 resource by src( locales/ ) , regex( ^.+[.]properties$ )
[DEBUG] 16:21:12.833 org.nutz.mvc.impl.NutMessageLoader.load(NutMessageLoader.java:27) - Load Messages in 0 resource : [[]]
[DEBUG] 16:21:12.833 org.nutz.mvc.impl.NutMessageLoader.load(NutMessageLoader.java:95) - Message Loaded, size = 0
[INFO ] 16:21:12.833 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:141) - Nutz.Mvc[nutz] is up in 273ms
[INFO ] 16:21:12.834 org.nutz.mvc.NutFilter._init(NutFilter.java:117) - exclusionsPrefix  = ^(/druid/)
[INFO ] 16:21:12.874 org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:851) - Started o.e.j.w.WebAppContext@608b1fd2{/,[],AVAILABLE}
[INFO ] 16:21:12.875 org.eclipse.jetty.util.thread.ThreadPoolBudget.lambda$infoOnLeases$1(ThreadPoolBudget.java:165) - ServerConnector@6ba060f3{HTTP/1.1,[http/1.1]}{0.0.0.0:9001} requires 1 threads from QueuedThreadPool[qtp404648734]@181e731e{STARTED,4<=4<=8,i=4,q=0}[ReservedThreadExecutor@f4a3a8d{s=0/1,p=0}]
[INFO ] 16:21:12.875 org.eclipse.jetty.util.thread.ThreadPoolBudget.lambda$infoOnLeases$1(ThreadPoolBudget.java:165) - SelectorManager@ServerConnector@6ba060f3{HTTP/1.1,[http/1.1]}{0.0.0.0:9001} requires 1 threads from QueuedThreadPool[qtp404648734]@181e731e{STARTED,4<=4<=8,i=4,q=0}[ReservedThreadExecutor@f4a3a8d{s=0/1,p=0}]
[INFO ] 16:21:12.901 org.eclipse.jetty.server.AbstractConnector.doStart(AbstractConnector.java:289) - Started ServerConnector@6ba060f3{HTTP/1.1,[http/1.1]}{0.0.0.0:9001}
[INFO ] 16:21:12.901 org.eclipse.jetty.server.Server.doStart(Server.java:411) - Started @10671ms
[DEBUG] 16:21:12.902 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'webApiMainLauncher'<class cn.wizzer.app.web.commons.core.WebApiMainLauncher>
[DEBUG] 16:21:12.902 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=webApiMainLauncher
[DEBUG] 16:21:12.902 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:21:12.902 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'webApiMainLauncher'<class cn.wizzer.app.web.commons.core.WebApiMainLauncher>
[DEBUG] 16:21:12.902 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'webApiMainLauncher' to [app] 
[DEBUG] 16:21:12.902 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.web.commons.core.WebApiMainLauncher without AOP
[DEBUG] 16:21:12.904 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[INFO ] 16:21:12.905 org.nutz.boot.NbApp.execute(NbApp.java:213) - wk-nb-web-api started : 8476ms
[DEBUG] 16:21:25.341 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f71460039 after 9ms

这是api的启动日志

我刚刚试了一下 竟然也成功了

[DEBUG] 16:27:29.067 org.apache.activemq.transport.AbstractInactivityMonitor$2.run(AbstractInactivityMonitor.java:113) - WriteChecker 10002 ms elapsed since last write check.
[DEBUG] 16:27:29.068 org.apache.activemq.transport.AbstractInactivityMonitor$3.run(AbstractInactivityMonitor.java:156) - Running WriteCheck[tcp://127.0.0.1:61616] [DEBUG] 16:27:31.560 org.nutz.mvc.impl.UrlMappingImpl.get(UrlMappingImpl.java:101) - Found mapping for [POST] path=/open/api/test/test1 : ApiTestTokenController.test1(ApiTestTokenController.java:33)
[DEBUG] 16:27:31.561 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'apiTestTokenController'<class cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController>
[DEBUG] 16:27:31.561 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'activeMqJmsTemplate'<class org.springframework.jms.core.JmsTemplate>
qtp895766599-27 向队列swj发送消息---------------------->xx
[DEBUG] 16:27:31.561 org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:492) - Executing callback on JMS Session: PooledSession { ActiveMQSession {id=ID:haigodeiMac.local-51433-1533803068905-1:1:1,started=false} }
[DEBUG] 16:27:31.561 org.springframework.jms.core.JmsTemplate.doSend(JmsTemplate.java:605) - Sending created message: ActiveMQTextMessage {commandId = 0, responseRequired = false, messageId = null, originalDestination = null, originalTransactionId = null, producerId = null, destination = null, transactionId = null, expiration = 0, timestamp = 0, arrival = 0, brokerInTime = 0, brokerOutTime = 0, correlationId = null, replyTo = null, persistent = false, type = null, priority = 0, groupID = null, groupSequence = 0, targetConsumerId = null, compressed = false, userID = null, content = null, marshalledProperties = null, dataStructure = null, redeliveryCounter = 0, size = 0, properties = null, readOnlyProperties = false, readOnlyBody = false, droppable = false, text = xx}

[DEBUG] 16:27:27.109 org.apache.activemq.transport.AbstractInactivityMonitor$2.run(AbstractInactivityMonitor.java:113) - WriteChecker 10000 ms elapsed since last write check.
[DEBUG] 16:27:27.109 org.apache.activemq.transport.AbstractInactivityMonitor$3.run(AbstractInactivityMonitor.java:156) - Running WriteCheck[tcp://127.0.0.1:61616]
[DEBUG] 16:27:31.564 org.springframework.jms.listener.AbstractPollingMessageListenerContainer.doReceiveAndExecute(AbstractPollingMessageListenerContainer.java:295) - Received message of type [class org.apache.activemq.command.ActiveMQTextMessage] from consumer [PooledMessageConsumer { ActiveMQMessageConsumer { value=ID:haigodeiMac.local-51466-1533803186983-1:1:1:1, started=true } }] of session [PooledSession { ActiveMQSession {id=ID:haigodeiMac.local-51466-1533803186983-1:1:1,started=true} }]
==>receive message:xx
[DEBUG] 16:27:32.756 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f7146003c after 8ms
[DEBUG] 16:27:37.104 org.apache.activemq.transport.AbstractInactivityMonitor$1.run(AbstractInactivityMonitor.java:81) - 30002 ms elapsed since last read check.
[DEBUG] 16:27:37.112 org.apache.activemq.transport.AbstractInactivityMonitor$2.run(AbstractInactivityMonitor.java:113) - WriteChecker 10002 ms elapsed since last write check.
[DEBUG] 16:27:46.092 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:742) - Got ping response for sessionid: 0x1003a1f7146003c after 10ms
[DEBUG] 16:27:47.113 org.apache.activemq.transport.AbstractInactivityMonitor$2.run(AbstractInactivityMonitor.java:113) - WriteChecker 10002 ms elapsed since last write check.
[DEBUG] 16:27:47.114 org.apache.activemq.transport.AbstractInactivityMonitor$3.run(AbstractInactivityMonitor.java:156) - Running WriteCheck[tcp://127.0.0.1:61616]

-_- 有时候就是自己改乱了...

== 刚刚好像代码没有重新编译

[INFO ] 16:46:57.421 org.nutz.boot.banner.SimpleBannerPrinter.printBanner(SimpleBannerPrinter.java:34) - 
 _  _ _   _ _____ ______      ___  __
| \| | | | |_   _|_  /\ \    / / |/ /
| .` | |_| | | |  / /  \ \/\/ /| ' <
|_|\_|\___/  |_| /___|  \_/\_/ |_|\_\

:: Built with NutzWk

[DEBUG] 16:46:57.641 org.nutz.resource.Scans.printLocations(Scans.java:527) - Locations count=96 time use 209ms
[DEBUG] 16:46:57.654 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( custom/ ) , regex( ^.+[.]properties$ )
[DEBUG] 16:46:57.654 org.nutz.ioc.impl.PropertiesProxy.setPaths(PropertiesProxy.java:114) - load properties from jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar!/custom/emtry.properties
[DEBUG] 16:46:57.656 org.nutz.boot.config.impl.PropertiesConfigureLoader.readPropertiesPath(PropertiesConfigureLoader.java:121) - Loading Properties  - application.properties
[DEBUG] 16:46:57.706 org.nutz.resource.Scans.scan(Scans.java:280) - Found 2 resource by src( ioc/ ) , regex( ^(.+[.])(js|json)$ )
[DEBUG] 16:46:57.707 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [emtry.json]
[DEBUG] 16:46:57.707 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [avtivemq.js]
[DEBUG] 16:46:57.709 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:57) - Loaded 7 bean define from path=[ioc/] --> [activeMqJmsTemplate, sessionAwareQueue, connectionFactory, consumerSessionAwareMessageListener, sessionAwareListenerContainer, targetConnectionFactory, pooledConnectionFactory]
[DEBUG] 16:46:57.778 org.nutz.castor.Castors.reload(Castors.java:116) - Using 101 castor for Castors
[DEBUG] 16:46:57.796 org.nutz.ioc.aop.SimpleAopMaker.<init>(SimpleAopMaker.java:79) - Load AopConfigure for anno=org.nutz.aop.interceptor.async.Async by type=org.nutz.aop.interceptor.async.AsyncAopIocLoader
[INFO ] 16:46:57.802 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'cn.wizzer'
[DEBUG] 16:46:57.871 org.nutz.resource.Scans.scan(Scans.java:280) - Found 100 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[INFO ] 16:46:58.055 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dubboRpcCmsMainLauncher                 ' - cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher
[INFO ] 16:46:58.061 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'redisIdGenerator                        ' - cn.wizzer.app.cms.commons.ig.RedisIdGenerator
[INFO ] 16:46:58.069 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsArticleServiceImpl                   ' - cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl
[INFO ] 16:46:58.079 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsChannelServiceImpl                   ' - cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl
[INFO ] 16:46:58.082 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsLinkClassServiceImpl                 ' - cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl
[INFO ] 16:46:58.083 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsLinkServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl
[INFO ] 16:46:58.085 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsSiteServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl
[INFO ] 16:46:58.087 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsTestServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl
[INFO ] 16:46:58.112 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'org.nutz.boot.starter'
[DEBUG] 16:46:58.114 org.nutz.resource.Scans.scan(Scans.java:280) - Found 15 resource by src( org/nutz/boot/starter/ ) , regex( ^.+[.]class$ )
[INFO ] 16:46:58.121 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dubboStarter                            ' - org.nutz.boot.starter.dubbo.DubboStarter
[INFO ] 16:46:58.121 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'nutDaoStarter                           ' - org.nutz.boot.starter.nutz.dao.NutDaoStarter
[DEBUG] 16:46:58.126 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.getDao(...) define as name=dao
[DEBUG] 16:46:58.129 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.getSqlManager(...) define as name=sqlManager
[DEBUG] 16:46:58.129 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.createCacheSerializer(...) define as name=daoCacheSerializer
[DEBUG] 16:46:58.129 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.createDaoCacheInterceptor(...) define as name=daoCacheInterceptor
[INFO ] 16:46:58.129 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'druidWebStatFilterStarter               ' - org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter
[INFO ] 16:46:58.132 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'druidWebStatServletStarter              ' - org.nutz.boot.starter.jdbc.DruidWebStatServletStarter
[INFO ] 16:46:58.134 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dataSourceStarter                       ' - org.nutz.boot.starter.jdbc.DataSourceStarter
[DEBUG] 16:46:58.135 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.getDataSource(...) define as name=dataSource
[DEBUG] 16:46:58.135 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.createDruidDataSource(...) define as name=druidDataSource
[DEBUG] 16:46:58.135 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.createHikariCPDataSource(...) define as name=hikariDataSource
[DEBUG] 16:46:58.137 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:46:58.137 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:46:58.137 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:46:58.138 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:46:58.138 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[INFO ] 16:46:58.147 org.nutz.boot.NbApp.prepare(NbApp.java:279) - Configure Manual:
|id  |key                                     |required  |Possible Values     |Default   |Description         |                                starters|
|----|----------------------------------------|----------|--------------------|----------|--------------------|----------------------------------------|
|0   |druid.web.filter.exclusions             |no        |                    |          |需要排除的路径             |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|1   |druid.web.filter.principalCookieName    |no        |                    |          |用户权限信息的cookie属性名称   |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|2   |druid.web.filter.principalSessionName   |no        |                    |          |用户权限信息的session属性名称  |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|3   |druid.web.filter.profileEnable          |no        |                    |          |是否开启性能监控            |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|4   |druid.web.filter.realIpHeader           |no        |                    |          |Header中ReadIp对应的key |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|5   |druid.web.filter.sessionStatEnable      |no        |                    |true      |是否开启session状态监控     |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|6   |druid.web.filter.sessionStatMaxCount    |no        |                    |          |session最大状态数量       |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|7   |druid.web.servlet.allow                 |no        |                    |          |允许访问的ip列表           |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|8   |druid.web.servlet.deny                  |no        |                    |          |禁止访问的ip列表           |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|9   |druid.web.servlet.jmxPassword           |no        |                    |          |JMX的密码              |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|10  |druid.web.servlet.jmxUrl                |no        |                    |          |读取JMX信息的URL         |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|11  |druid.web.servlet.jmxUsername           |no        |                    |          |JMX的用户名             |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|12  |druid.web.servlet.loginPassword         |no        |                    |随机值,打印在日志中|访问monitor页面的密码      |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|13  |druid.web.servlet.loginUsername         |no        |                    |driud     |访问monitor页面的用户名     |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|14  |druid.web.servlet.resetEnable           |no        |                    |true      |是否允许重置统计结果          |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|15  |jdbc.password                           |no        |                    |          |数据库密码               |org.nutz.boot.starter.jdbc.DataSourceStarter|
|16  |jdbc.type                               |no        |druid,simple,hikari |druid     |连接池类型               |org.nutz.boot.starter.jdbc.DataSourceStarter|
|17  |jdbc.url                                |yes       |                    |          |JDBC URL            |org.nutz.boot.starter.jdbc.DataSourceStarter|
|18  |jdbc.username                           |no        |                    |          |数据库用户名              |org.nutz.boot.starter.jdbc.DataSourceStarter|
|19  |nutz.dao.interceptor.cache.cache4Null   |no        |                    |true      |是否缓存null结果          |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|20  |nutz.dao.interceptor.cache.debug        |no        |                    |false     |打印daocache详细调试日志    |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|21  |nutz.dao.interceptor.cache.enable       |no        |                    |false     |是否使用daocache        |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|22  |nutz.dao.interceptor.cache.enableWhenTrans|no        |                    |false     |事务内是否启用daocache     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|23  |nutz.dao.interceptor.cache.provider.ioc.name|no        |                    |daoCacheProvider|daocache提供者DaoCacheProvider的IocBean名称|org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|24  |nutz.dao.interceptor.cache.provider.memory.cacheSize|no        |                    |          |daocache提供者MemoryDaoCacheProvider的默认缓存大小|org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|25  |nutz.dao.interceptor.cache.provider.type|no        |memory,ehcache,jedis,ioc|memory    |daocache提供者         |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|26  |nutz.dao.interceptor.cache.table.names  |no        |                    |          |需要缓存的表名称,英文逗号分隔     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|27  |nutz.dao.interceptor.cache.table.pattern|no        |                    |          |需要缓存的表名称的正则表达式      |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|28  |nutz.dao.interceptor.log.enable         |no        |                    |true      |是否打印dao的SQL日志       |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|29  |nutz.dao.interceptor.time.enable        |no        |                    |false     |是否打印dao的SQL耗时日志     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|30  |nutz.dao.sqls.path                      |no        |                    |sqls/     |sql目录               |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|31  |redis.database                          |no        |                    |0         |redis数据库序号          |org.nutz.boot.starter.redis.JedisStarter|
|32  |redis.host                              |no        |                    |127.0.0.1 |redis服务器ip或域名       |org.nutz.boot.starter.redis.JedisStarter|
|33  |redis.max_redir                         |no        |                    |10        |redis集群最大重定向次数      |org.nutz.boot.starter.redis.JedisStarter|
|34  |redis.nodes                             |no        |                    |          |redis集群节点列表         |org.nutz.boot.starter.redis.JedisStarter|
|35  |redis.password                          |no        |                    |          |redis密码             |org.nutz.boot.starter.redis.JedisStarter|
|36  |redis.port                              |no        |                    |6379      |redis服务器端口          |org.nutz.boot.starter.redis.JedisStarter|
|37  |redis.soTimeout                         |no        |                    |0         |redis写超时            |org.nutz.boot.starter.redis.JedisStarter|
|38  |redis.timeout                           |no        |                    |2000      |redis读写超时           |org.nutz.boot.starter.redis.JedisStarter|
[INFO ] 16:46:58.154 org.nutz.ioc.impl.NutIoc.<init>(NutIoc.java:130) - ... NutIoc init complete
[DEBUG] 16:46:58.154 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'appContext' to [app] 
[DEBUG] 16:46:58.155 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'conf' to [app] 
[DEBUG] 16:46:58.155 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nbApp' to [app] 
[DEBUG] 16:46:58.156 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'counterService' to [app] 
[DEBUG] 16:46:58.163 org.nutz.boot.starter.dubbo.DubboIocLoaderStarter.getIocLoader(DubboIocLoaderStarter.java:34) - using dubbo configure from PropertiesProxy
[DEBUG] 16:46:58.164 org.nutz.boot.AppContext.getServerPort(AppContext.java:344) - select random port=16199 for dubbo.protocol.port
[INFO ] 16:46:58.170  - using logger: com.alibaba.dubbo.common.logger.log4j.Log4jLoggerAdapter
[DEBUG] 16:46:58.270 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( org/nutz/integration/jedis/jedis.js ) , regex( ^(.+[.])(js|json)$ )
[DEBUG] 16:46:58.271 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [org/nutz/integration/jedis/jedis.js]
[DEBUG] 16:46:58.271 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:57) - Loaded 9 bean define from path=[org/nutz/integration/jedis/jedis.js] --> [redisService, jedisCluster, jedisClusterNodes, jedisClusterWrapper, pubSubService, jedisPoolConfig, jedisPool, jedisAgent, redis]
[INFO ] 16:46:58.274 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'org.nutz.plugins.wkcache'
[DEBUG] 16:46:58.277 org.nutz.resource.Scans.scan(Scans.java:280) - Found 13 resource by src( org/nutz/plugins/wkcache/ ) , regex( ^.+[.]class$ )
[INFO ] 16:46:58.280 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheRemoveEntryInterceptor           ' - org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor
[INFO ] 16:46:58.282 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheResultInterceptor                ' - org.nutz.plugins.wkcache.WkcacheResultInterceptor
[INFO ] 16:46:58.282 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheUpdateInterceptor                ' - org.nutz.plugins.wkcache.WkcacheUpdateInterceptor
[INFO ] 16:46:58.283 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheRemoveAllInterceptor             ' - org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor
[INFO ] 16:46:58.284 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add '$aop_wkcache                            ' - org.nutz.plugins.wkcache.WkcacheAopConfigure
[DEBUG] 16:46:58.284 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboStarter'<class org.nutz.boot.starter.dubbo.DubboStarter>
[DEBUG] 16:46:58.285 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '$aop_async'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:46:58.286 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=$aop_async
[DEBUG] 16:46:58.286 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:46:58.286 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'$aop_async'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:46:58.314 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '$aop_async' to [app] 
[DEBUG] 16:46:58.320 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '$aop_wkcache'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:46:58.320 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=$aop_wkcache
[DEBUG] 16:46:58.320 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_wkcache) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:46:58.320 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'$aop_wkcache'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:46:58.320 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '$aop_wkcache' to [app] 
[DEBUG] 16:46:58.322 org.nutz.ioc.aop.SimpleAopMaker.<init>(SimpleAopMaker.java:79) - Load AopConfigure for anno=org.nutz.ioc.aop.Aop by type=org.nutz.ioc.aop.config.impl.AnnotationAopConfigration
[DEBUG] 16:46:58.322 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboStarter
[DEBUG] 16:46:58.322 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:58.322 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboStarter'<class org.nutz.boot.starter.dubbo.DubboStarter>
[DEBUG] 16:46:58.322 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboStarter' to [app] 
[DEBUG] 16:46:58.323 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.dubbo.DubboStarter without AOP
[DEBUG] 16:46:58.332 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<class org.nutz.boot.starter.nutz.dao.NutDaoStarter>
[DEBUG] 16:46:58.332 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=nutDaoStarter
[DEBUG] 16:46:58.332 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutDaoStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:58.332 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'nutDaoStarter'<class org.nutz.boot.starter.nutz.dao.NutDaoStarter>
[DEBUG] 16:46:58.332 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nutDaoStarter' to [app] 
[DEBUG] 16:46:58.333 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.nutz.dao.NutDaoStarter without AOP
[DEBUG] 16:46:58.336 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:46:58.336 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<class org.nutz.boot.starter.jdbc.DataSourceStarter>
[DEBUG] 16:46:58.336 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dataSourceStarter
[DEBUG] 16:46:58.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSourceStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:58.337 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dataSourceStarter'<class org.nutz.boot.starter.jdbc.DataSourceStarter>
[DEBUG] 16:46:58.337 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dataSourceStarter' to [app] 
[DEBUG] 16:46:58.337 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DataSourceStarter without AOP
[DEBUG] 16:46:58.343 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:46:58.343 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatFilterStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter>
[DEBUG] 16:46:58.343 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidWebStatFilterStarter
[DEBUG] 16:46:58.343 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:58.343 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidWebStatFilterStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter>
[DEBUG] 16:46:58.343 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidWebStatFilterStarter' to [app] 
[DEBUG] 16:46:58.344 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter without AOP
[DEBUG] 16:46:58.348 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:46:58.349 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatServletStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter>
[DEBUG] 16:46:58.349 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidWebStatServletStarter
[DEBUG] 16:46:58.349 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatServletStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:58.349 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidWebStatServletStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter>
[DEBUG] 16:46:58.349 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidWebStatServletStarter' to [app] 
[DEBUG] 16:46:58.349 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter without AOP
[DEBUG] 16:46:58.354 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:46:58.357 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboStarter'<interface org.nutz.boot.starter.ServerFace>
[DEBUG] 16:46:58.358 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboManager'<class org.nutz.integration.dubbo.DubboManager>
[DEBUG] 16:46:58.358 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboManager
[DEBUG] 16:46:58.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboManager) in DubboConfigIocLoader@431506362
[DEBUG] 16:46:58.358 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboManager'<class org.nutz.integration.dubbo.DubboManager>
[DEBUG] 16:46:58.358 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboManager' to [app] 
[DEBUG] 16:46:58.358 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.DubboManager without AOP
[DEBUG] 16:46:58.363 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:46:58.363 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubbo_iobjs
[DEBUG] 16:46:58.363 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubbo_iobjs) in DubboConfigIocLoader@431506362
[DEBUG] 16:46:58.364 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubbo_iobjs'<>
[DEBUG] 16:46:58.364 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubbo_iobjs' to [app] 
[DEBUG] 16:46:58.365 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class java.util.HashMap without AOP
[DEBUG] 16:46:58.366 org.nutz.integration.dubbo.DubboManager.init(DubboManager.java:31) - dubbo obj count=6
[DEBUG] 16:46:58.366 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboAnnotationBean'<class org.nutz.integration.dubbo.AnnotationBean>
[DEBUG] 16:46:58.366 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboAnnotationBean
[DEBUG] 16:46:58.366 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboAnnotationBean) in DubboConfigIocLoader@431506362
[DEBUG] 16:46:58.366 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboAnnotationBean'<class org.nutz.integration.dubbo.AnnotationBean>
[DEBUG] 16:46:58.366 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboAnnotationBean' to [app] 
[DEBUG] 16:46:58.367 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.AnnotationBean without AOP
[DEBUG] 16:46:58.367 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:46:58.382 org.nutz.resource.Scans.scan(Scans.java:280) - Found 100 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:46:58.467 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Protocol$Adaptive implements com.alibaba.dubbo.rpc.Protocol {
public void destroy() {throw new UnsupportedOperationException("method public abstract void com.alibaba.dubbo.rpc.Protocol.destroy() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
}
public int getDefaultPort() {throw new UnsupportedOperationException("method public abstract int com.alibaba.dubbo.rpc.Protocol.getDefaultPort() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
}
public com.alibaba.dubbo.rpc.Invoker refer(java.lang.Class arg0, com.alibaba.dubbo.common.URL arg1) throws com.alibaba.dubbo.rpc.RpcException {
if (arg1 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg1;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class).getExtension(extName);
return extension.refer(arg0, arg1);
}
public com.alibaba.dubbo.rpc.Exporter export(com.alibaba.dubbo.rpc.Invoker arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class).getExtension(extName);
return extension.export(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:46:58.612 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Cluster$Adaptive implements com.alibaba.dubbo.rpc.cluster.Cluster {
public com.alibaba.dubbo.rpc.Invoker join(com.alibaba.dubbo.rpc.cluster.Directory arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.cluster.Directory argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.cluster.Directory argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = url.getParameter("cluster", "failover");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.Cluster) name from url(" + url.toString() + ") use keys([cluster])");
com.alibaba.dubbo.rpc.cluster.Cluster extension = (com.alibaba.dubbo.rpc.cluster.Cluster)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.Cluster.class).getExtension(extName);
return extension.join(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:46:58.630 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ProxyFactory$Adaptive implements com.alibaba.dubbo.rpc.ProxyFactory {
public com.alibaba.dubbo.rpc.Invoker getInvoker(java.lang.Object arg0, java.lang.Class arg1, com.alibaba.dubbo.common.URL arg2) throws com.alibaba.dubbo.rpc.RpcException {
if (arg2 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg2;
String extName = url.getParameter("proxy", "javassist");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.ProxyFactory) name from url(" + url.toString() + ") use keys([proxy])");
com.alibaba.dubbo.rpc.ProxyFactory extension = (com.alibaba.dubbo.rpc.ProxyFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.ProxyFactory.class).getExtension(extName);
return extension.getInvoker(arg0, arg1, arg2);
}
public java.lang.Object getProxy(com.alibaba.dubbo.rpc.Invoker arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = url.getParameter("proxy", "javassist");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.ProxyFactory) name from url(" + url.toString() + ") use keys([proxy])");
com.alibaba.dubbo.rpc.ProxyFactory extension = (com.alibaba.dubbo.rpc.ProxyFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.ProxyFactory.class).getExtension(extName);
return extension.getProxy(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:46:58.664 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:58.664 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:58.664 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:58.664 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:58.664 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:58.664 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:58.664 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:58.665 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:46:58.665 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:46:58.665 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:46:58.665 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:58.665 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:58.665 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:46:58.665 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:58.665 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:58.665 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsLinkServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl>
[DEBUG] 16:46:58.666 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsLinkServiceImpl
[DEBUG] 16:46:58.666 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:58.666 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsLinkServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl>
[DEBUG] 16:46:58.666 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsLinkServiceImpl' to [app] 
[DEBUG] 16:46:58.666 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:46:58.666 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dao
[DEBUG] 16:46:58.666 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dao) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:58.666 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dao'<>
[DEBUG] 16:46:58.666 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dao' to [app] 
[DEBUG] 16:46:58.667 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:46:58.667 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dataSource
[DEBUG] 16:46:58.668 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:58.668 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:46:58.668 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dataSource' to [app] 
[DEBUG] 16:46:58.669 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<>
[DEBUG] 16:46:58.672 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidDataSource'<interface javax.sql.DataSource>
[DEBUG] 16:46:58.672 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidDataSource
[DEBUG] 16:46:58.672 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:58.672 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidDataSource'<interface javax.sql.DataSource>
[DEBUG] 16:46:58.672 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidDataSource' to [app] 
[DEBUG] 16:46:58.672 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<>
[DEBUG] 16:46:58.754 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:46:58.754 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=sqlManager
[DEBUG] 16:46:58.754 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sqlManager) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:58.754 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:46:58.754 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'sqlManager' to [app] 
[DEBUG] 16:46:58.754 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<>
[DEBUG] 16:46:58.763 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.dao.impl.NutDao without AOP
[DEBUG] 16:46:58.763 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:46:58.763 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:46:58.763 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<>
[DEBUG] 16:46:58.898 org.nutz.dao.jdbc.Jdbcs.<clinit>(Jdbcs.java:93) - Jdbcs init complete
[INFO ] 16:46:58.898 org.nutz.dao.jdbc.Jdbcs.getExpert(Jdbcs.java:106) - Get Connection from DataSource for JdbcExpert, if you lock at here, check your database server and configure
[INFO ] 16:46:59.045 com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:928) - {dataSource-1} inited
[DEBUG] 16:46:59.381 org.nutz.dao.impl.DaoSupport.setDataSource(DaoSupport.java:188) - select expert : org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert
[DEBUG] 16:46:59.388 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:199) - JDBC Driver --> mysql-connector-java-5.1.46 ( Revision: 9cc87a48e75c2d2e87c1a293b2862ce651cb256e )
[DEBUG] 16:46:59.388 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:200) - JDBC Name   --> MySQL Connector Java
[DEBUG] 16:46:59.388 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:202) - JDBC URL    --> jdbc:mysql://119.23.144.5:3306/nb_boot??useUnicode=true&characterEncoding=utf8&useSSL=false
[DEBUG] 16:46:59.415 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_client=utf8
[DEBUG] 16:46:59.415 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_connection=utf8
[DEBUG] 16:46:59.415 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_database=latin1
[DEBUG] 16:46:59.415 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_filesystem=binary
[DEBUG] 16:46:59.416 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_results=
[DEBUG] 16:46:59.416 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_server=latin1
[DEBUG] 16:46:59.416 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_system=utf8
[DEBUG] 16:46:59.416 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_sets_dir=/usr/share/mysql/charsets/
[DEBUG] 16:46:59.424 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:219) - Mysql : binlog_format=STATEMENT
[DEBUG] 16:46:59.432 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:226) - Mysql : database=nb_boot
[DEBUG] 16:46:59.441 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:232) - Mysql : user=nutz_boot@113.77.192.240
[DEBUG] 16:46:59.467 org.nutz.dao.impl.DaoSupport.setDataSource(DaoSupport.java:221) - Database info --> MYSQL:[MySQL - 5.6.36]
[DEBUG] 16:46:59.472 org.nutz.resource.Scans.scan(Scans.java:280) - Found 0 resource by src( sqls/ ) , regex( .(sql|sqlx|sqls)$ )
[DEBUG] 16:46:59.473 org.nutz.dao.impl.DaoSupport.setSqlManager(DaoSupport.java:121) - SqlManager Sql count=0
[DEBUG] 16:46:59.474 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl without AOP
[DEBUG] 16:46:59.474 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:46:59.574 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_link
[DEBUG] 16:46:59.575 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.577 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.577 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.577 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.577 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.577 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.577 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.577 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:46:59.577 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:46:59.578 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:46:59.578 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.578 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.578 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:46:59.578 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.578 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.578 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.578 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.578 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.578 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.579 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.579 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsArticleServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl>
[DEBUG] 16:46:59.579 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsArticleServiceImpl
[DEBUG] 16:46:59.579 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.579 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsArticleServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl>
[DEBUG] 16:46:59.579 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsArticleServiceImpl' to [app] 
[DEBUG] 16:46:59.579 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:46:59.580 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:46:59.580 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheResultInterceptor
[DEBUG] 16:46:59.580 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheResultInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:46:59.580 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:46:59.580 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheResultInterceptor' to [app] 
[DEBUG] 16:46:59.582 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:46:59.583 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:46:59.583 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheUpdateInterceptor
[DEBUG] 16:46:59.583 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheUpdateInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:46:59.583 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:46:59.583 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheUpdateInterceptor' to [app] 
[DEBUG] 16:46:59.586 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:46:59.586 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheRemoveEntryInterceptor
[DEBUG] 16:46:59.586 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheRemoveEntryInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:46:59.586 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:46:59.586 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheRemoveEntryInterceptor' to [app] 
[DEBUG] 16:46:59.587 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:46:59.587 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheRemoveAllInterceptor
[DEBUG] 16:46:59.587 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheRemoveAllInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:46:59.587 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:46:59.588 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheRemoveAllInterceptor' to [app] 
[DEBUG] 16:46:59.598 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:46:59.601 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_article
[DEBUG] 16:46:59.602 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.602 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.602 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.602 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.603 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.603 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.603 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.603 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:46:59.603 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:46:59.603 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:46:59.603 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.603 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.603 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:46:59.604 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.604 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsChannelServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl>
[DEBUG] 16:46:59.604 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsChannelServiceImpl
[DEBUG] 16:46:59.604 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.604 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsChannelServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl>
[DEBUG] 16:46:59.604 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsChannelServiceImpl' to [app] 
[DEBUG] 16:46:59.604 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:46:59.604 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:46:59.604 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:46:59.604 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:46:59.605 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:46:59.605 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:46:59.605 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=txREAD_COMMITTED
[DEBUG] 16:46:59.605 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.605 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:46:59.605 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'txREAD_COMMITTED' to [app] 
[DEBUG] 16:46:59.607 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:46:59.609 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:46:59.614 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_channel
[DEBUG] 16:46:59.615 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.615 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.615 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.615 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.615 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.615 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.615 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.616 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:46:59.616 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:46:59.616 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:46:59.616 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.616 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.616 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:46:59.616 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.616 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.616 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.616 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsLinkClassServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl>
[DEBUG] 16:46:59.616 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsLinkClassServiceImpl
[DEBUG] 16:46:59.616 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.617 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsLinkClassServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl>
[DEBUG] 16:46:59.617 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsLinkClassServiceImpl' to [app] 
[DEBUG] 16:46:59.617 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:46:59.618 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl without AOP
[DEBUG] 16:46:59.618 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:46:59.619 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_link_class
[DEBUG] 16:46:59.620 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.620 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.620 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.620 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.620 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.620 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.620 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.621 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.622 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsTestServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl>
[DEBUG] 16:46:59.622 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsTestServiceImpl
[DEBUG] 16:46:59.622 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.622 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsTestServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl>
[DEBUG] 16:46:59.622 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsTestServiceImpl' to [app] 
[DEBUG] 16:46:59.622 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:46:59.622 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:46:59.624 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:46:59.626 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_test
[DEBUG] 16:46:59.627 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'redisService'<class org.nutz.integration.jedis.RedisService>
[DEBUG] 16:46:59.627 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=redisService
[DEBUG] 16:46:59.627 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisService) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:46:59.627 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'redisService'<class org.nutz.integration.jedis.RedisService>
[DEBUG] 16:46:59.627 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'redisService' to [app] 
[DEBUG] 16:46:59.697 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.jedis.RedisService without AOP
[DEBUG] 16:46:59.988 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisAgent'<>
[DEBUG] 16:46:59.988 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=jedisAgent
[DEBUG] 16:46:59.989 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jedisAgent) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:46:59.989 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'jedisAgent'<>
[DEBUG] 16:46:59.989 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'jedisAgent' to [app] 
[DEBUG] 16:46:59.989 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.jedis.JedisAgent without AOP
[DEBUG] 16:46:59.996 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:46:59.996 org.nutz.ioc.val.ReferTypeValue.get(ReferTypeValue.java:64) - name=memberService not found, search for type=cn.wizzer.app.member.modules.services.MemberService
[DEBUG] 16:46:59.996 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.996 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.997 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.997 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.997 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.997 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.997 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:46:59.997 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:46:59.997 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:46:59.997 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:46:59.997 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.997 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.998 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dao) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSourceStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sqlManager) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutDaoStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatServletStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(daoCacheSerializer) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(daoCacheInterceptor) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(hikariDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboManager) in DubboConfigIocLoader@431506362
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(4rllblefr4jjhrr2maa9bkg83c) in DubboConfigIocLoader@431506362
[DEBUG] 16:46:59.999 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubbo_iobjs) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.000 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(7cap9qsst6j4frtfk0moct4ihu) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.000 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboPrototeConfig) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.000 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRegistryConfig) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.000 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboAnnotationBean) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.000 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(6ru6ulrdgcifuqa7hmqt2a021e) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.000 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(11foftpciigb5o7b9uhrtdetbu) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.000 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(62988jg7luhf6rk3qv9ltjm2eo) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.000 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '62988jg7luhf6rk3qv9ltjm2eo'<interface cn.wizzer.app.member.modules.services.MemberService>
[DEBUG] 16:47:00.000 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=62988jg7luhf6rk3qv9ltjm2eo
[DEBUG] 16:47:00.000 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(62988jg7luhf6rk3qv9ltjm2eo) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.000 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'62988jg7luhf6rk3qv9ltjm2eo'<interface cn.wizzer.app.member.modules.services.MemberService>
[DEBUG] 16:47:00.002 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '62988jg7luhf6rk3qv9ltjm2eo' to [app] 
[DEBUG] 16:47:00.003 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '7cap9qsst6j4frtfk0moct4ihu'<>
[DEBUG] 16:47:00.003 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=7cap9qsst6j4frtfk0moct4ihu
[DEBUG] 16:47:00.003 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(7cap9qsst6j4frtfk0moct4ihu) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.003 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'7cap9qsst6j4frtfk0moct4ihu'<>
[DEBUG] 16:47:00.003 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '7cap9qsst6j4frtfk0moct4ihu' to [app] 
[DEBUG] 16:47:00.005 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ReferenceBean without AOP
[DEBUG] 16:47:00.007 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:47:00.047 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:47:00.047 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboApplicationConfig
[DEBUG] 16:47:00.048 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboApplicationConfig) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.048 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:47:00.048 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboApplicationConfig' to [app] 
[DEBUG] 16:47:00.049 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.ApplicationConfig without AOP
[DEBUG] 16:47:00.049 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:47:00.049 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboRegistryConfig
[DEBUG] 16:47:00.049 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRegistryConfig) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:00.049 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:47:00.049 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboRegistryConfig' to [app] 
[DEBUG] 16:47:00.050 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.RegistryConfig without AOP
[DEBUG] 16:47:00.132 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.registry;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class RegistryFactory$Adaptive implements com.alibaba.dubbo.registry.RegistryFactory {
public com.alibaba.dubbo.registry.Registry getRegistry(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.registry.RegistryFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.registry.RegistryFactory extension = (com.alibaba.dubbo.registry.RegistryFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.registry.RegistryFactory.class).getExtension(extName);
return extension.getRegistry(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:00.140 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting.zookeeper;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ZookeeperTransporter$Adaptive implements com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter {
public com.alibaba.dubbo.remoting.zookeeper.ZookeeperClient connect(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("client", url.getParameter("transporter", "curator"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter) name from url(" + url.toString() + ") use keys([client, transporter])");
com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter extension = (com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter.class).getExtension(extName);
return extension.connect(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:00.265 com.alibaba.dubbo.registry.support.AbstractRegistry.loadProperties(AbstractRegistry.java:200) -  [DUBBO] Load registry store file /Users/haigo/.dubbo/dubbo-registry-wk-nb-dubbo-cms-119.23.144.5:2181.cache, data: {cn.wizzer.app.cms.modules.services.CmsSiteService=empty://192.168.3.8:11213/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61885&side=provider&timestamp=1533804126504, cn.wizzer.app.cms.modules.services.CmsLinkService=empty://192.168.3.8:11213/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61885&side=provider&timestamp=1533804126671, cn.wizzer.app.cms.modules.services.CmsLinkClassService=empty://192.168.3.8:11213/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61885&side=provider&timestamp=1533804126778, cn.wizzer.app.cms.modules.services.CmsArticleService=empty://192.168.3.8:11213/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61885&side=provider&timestamp=1533804126585, cn.wizzer.app.cms.modules.services.CmsChannelService=empty://192.168.3.8:11213/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61885&side=provider&timestamp=1533804126248, cn.wizzer.app.cms.modules.services.CmsTestService=empty://192.168.3.8:11213/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61885&side=provider&timestamp=1533804126875, cn.wizzer.app.member.modules.services.MemberService=empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61885&side=consumer&timestamp=1533804124739 empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61885&side=consumer&timestamp=1533804124739 empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=providers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61885&side=consumer&timestamp=1533804124739}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:00.324 org.apache.curator.utils.Compatibility.<clinit>(Compatibility.java:41) - Running in ZooKeeper 3.4.x compatibility mode
[INFO ] 16:47:00.354 org.apache.curator.framework.imps.CuratorFrameworkImpl.start(CuratorFrameworkImpl.java:290) - Starting
[DEBUG] 16:47:00.355 org.apache.curator.CuratorZookeeperClient.start(CuratorZookeeperClient.java:207) - Starting
[DEBUG] 16:47:00.355 org.apache.curator.ConnectionState.start(ConnectionState.java:109) - Starting
[DEBUG] 16:47:00.355 org.apache.curator.ConnectionState.reset(ConnectionState.java:194) - reset
[INFO ] 16:47:01.366 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:zookeeper.version=3.4.8--1, built on 02/06/2016 03:18 GMT
[INFO ] 16:47:01.367 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:host.name=192.168.3.8
[INFO ] 16:47:01.367 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.version=1.8.0_131
[INFO ] 16:47:01.367 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.vendor=Oracle Corporation
[INFO ] 16:47:01.367 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre
[INFO ] 16:47:01.367 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.class.path=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/tools.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-service-cms/target/classes:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-framework/target/classes:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-model/target/classes:/Users/haigo/.m2/repository/cn/wizzer/app/wk-code-generator-nb/5.0.1-SNAPSHOT/wk-code-generator-nb-5.0.1-20180409.075514-1.jar:/Users/haigo/.m2/repository/org/atteo/evo-inflector/1.0.1/evo-inflector-1.0.1.jar:/Users/haigo/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/haigo/.m2/repository/org/apache/velocity/velocity/1.7/velocity-1.7.jar:/Users/haigo/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar:/Users/haigo/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-common/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar:/Users/haigo/.m2/repository/org/nutz/nutz/1.r.66-SNAPSHOT/nutz-1.r.66-20180611.015908-74.jar:/Users/haigo/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-dubbo/1.r.66-SNAPSHOT/nutz-integration-dubbo-1.r.66-20180614.031821-63.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-framework/4.0.1/curator-framework-4.0.1.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-client/4.0.1/curator-client-4.0.1.jar:/Users/haigo/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/haigo/.m2/repository/com/alibaba/dubbo/2.6.2/dubbo-2.6.2.jar:/Users/haigo/.m2/repository/org/javassist/javassist/3.22.0-GA/javassist-3.22.0-GA.jar:/Users/haigo/.m2/repository/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/haigo/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/com/101tec/zkclient/0.10/zkclient-0.10.jar:/Users/haigo/.m2/repository/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.jar:/Users/haigo/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/Users/haigo/.m2/repository/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-daocache/1.r.66-SNAPSHOT/nutz-plugins-daocache-1.r.66-20180614.031905-54.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-jedis/1.r.66-SNAPSHOT/nutz-integration-jedis-1.r.66-20180614.031845-61.jar:/Users/haigo/.m2/repository/redis/clients/jedis/2.9.0/jedis-2.9.0.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-wkcache/1.r.66-SNAPSHOT/nutz-plugins-wkcache-1.r.66-20180614.031939-53.jar:/Users/haigo/.m2/repository/com/alibaba/druid/1.1.9/druid-1.1.9.jar:/Users/haigo/.m2/repository/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/Users/haigo/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/Users/haigo/.m2/repository/org/springframework/spring-core/4.1.8.RELEASE/spring-core-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/haigo/.m2/repository/org/springframework/spring-context/4.1.8.RELEASE/spring-context-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-aop/4.1.8.RELEASE/spring-aop-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/Users/haigo/.m2/repository/org/springframework/spring-beans/4.3.16.RELEASE/spring-beans-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-expression/4.3.16.RELEASE/spring-expression-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-tx/4.1.8.RELEASE/spring-tx-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-jms/4.1.8.RELEASE/spring-jms-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-messaging/4.1.8.RELEASE/spring-messaging-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/apache/xbean/xbean-spring/3.16/xbean-spring-3.16.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-core/5.7.0/activemq-core-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1.1/geronimo-jms_1.1_spec-1.1.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/kahadb/5.7.0/kahadb-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar:/Users/haigo/.m2/repository/org/fusesource/mqtt-client/mqtt-client/1.3/mqtt-client-1.3.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch-transport/1.11/hawtdispatch-transport-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch/1.11/hawtdispatch-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar:/Users/haigo/.m2/repository/commons-net/commons-net/3.1/commons-net-3.1.jar:/Users/haigo/.m2/repository/org/jasypt/jasypt/1.9.0/jasypt-1.9.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-pool/5.12.1/activemq-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-jms-pool/5.12.1/activemq-jms-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-client/5.12.1/activemq-client-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar:/Applications/IntelliJ IDEA 15.app/Contents/lib/idea_rt.jar
[INFO ] 16:47:01.367 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.library.path=/Users/haigo/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
[INFO ] 16:47:01.367 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.io.tmpdir=/var/folders/f7/j879sdwj0fncvdxrsmtrjk300000gn/T/
[INFO ] 16:47:01.367 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.compiler=<NA>
[INFO ] 16:47:01.368 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.name=Mac OS X
[INFO ] 16:47:01.368 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.arch=x86_64
[INFO ] 16:47:01.368 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.version=10.12.6
[INFO ] 16:47:01.368 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.name=haigo
[INFO ] 16:47:01.368 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.home=/Users/haigo
[INFO ] 16:47:01.368 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.dir=/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo
[INFO ] 16:47:01.369 org.apache.zookeeper.ZooKeeper.<init>(ZooKeeper.java:438) - Initiating client connection, connectString=119.23.144.5:2181 sessionTimeout=60000 watcher=org.apache.curator.ConnectionState@27068a50
[DEBUG] 16:47:01.372 org.apache.zookeeper.ClientCnxn.<clinit>(ClientCnxn.java:117) - zookeeper.disableAutoWatchReset is false
[INFO ] 16:47:01.387 org.apache.zookeeper.ClientCnxn$SendThread.logStartConnect(ClientCnxn.java:1032) - Opening socket connection to server 119.23.144.5/119.23.144.5:2181. Will not attempt to authenticate using SASL (unknown error)
[INFO ] 16:47:01.389 org.apache.curator.framework.imps.CuratorFrameworkImpl.start(CuratorFrameworkImpl.java:332) - Default schema
[DEBUG] 16:47:01.394 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class RouterFactory$Adaptive implements com.alibaba.dubbo.rpc.cluster.RouterFactory {
public com.alibaba.dubbo.rpc.cluster.Router getRouter(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getProtocol();
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.RouterFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.cluster.RouterFactory extension = (com.alibaba.dubbo.rpc.cluster.RouterFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.RouterFactory.class).getExtension(extName);
return extension.getRouter(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.402 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ConfiguratorFactory$Adaptive implements com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory {
public com.alibaba.dubbo.rpc.cluster.Configurator getConfigurator(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getProtocol();
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory extension = (com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory.class).getExtension(extName);
return extension.getConfigurator(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:01.408 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=consumers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=consumer&timestamp=1533804420052, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:01.415 org.apache.zookeeper.ClientCnxn$SendThread.primeConnection(ClientCnxn.java:876) - Socket connection established to 119.23.144.5/119.23.144.5:2181, initiating session
[DEBUG] 16:47:01.417 org.apache.zookeeper.ClientCnxn$SendThread.primeConnection(ClientCnxn.java:949) - Session establishment request sent on 119.23.144.5/119.23.144.5:2181
[INFO ] 16:47:01.435 org.apache.zookeeper.ClientCnxn$SendThread.onConnected(ClientCnxn.java:1299) - Session establishment complete on server 119.23.144.5/119.23.144.5:2181, sessionid = 0x1003a1f71460042, negotiated timeout = 40000
[DEBUG] 16:47:01.438 org.apache.curator.ConnectionState.process(ConnectionState.java:174) - Negotiated session timeout: 40000
[INFO ] 16:47:01.440 org.apache.curator.framework.state.ConnectionStateManager.postState(ConnectionStateManager.java:237) - State change: CONNECTED
[DEBUG] 16:47:01.441 org.apache.curator.framework.imps.CuratorFrameworkImpl.unSleepBackgroundOperations(CuratorFrameworkImpl.java:1004) - Clearing sleep for 0 operations
[DEBUG] 16:47:01.464 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 1,3  replyHeader:: 1,5648,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers,F  response:: s{2076,2076,1528451666921,1528451666921,0,262,0,0,0,0,5643} 
[DEBUG] 16:47:01.488 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 2,1  replyHeader:: 2,5649,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers/consumer%253A%252F%252F192.168.3.8%252Fcn.wizzer.app.member.modules.services.MemberService%253Fapplication%253Dwk-nb-dubbo-cms%2526category%253Dconsumers%2526check%253Dfalse%2526dubbo%253D2.6.2%2526interface%253Dcn.wizzer.app.member.modules.services.MemberService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dconsumer%2526timestamp%253D1533804420052,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers/consumer%253A%252F%252F192.168.3.8%252Fcn.wizzer.app.member.modules.services.MemberService%253Fapplication%253Dwk-nb-dubbo-cms%2526category%253Dconsumers%2526check%253Dfalse%2526dubbo%253D2.6.2%2526interface%253Dcn.wizzer.app.member.modules.services.MemberService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dconsumer%2526timestamp%253D1533804420052 
[INFO ] 16:47:01.488 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=providers,configurators,routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=consumer&timestamp=1533804420052, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.500 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 3,3  replyHeader:: 3,5649,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:47:01.514 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 4,1  replyHeader:: 4,5650,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/providers,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:47:01.533 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 5,12  replyHeader:: 5,5650,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/providers,T  response:: v{},s{2073,2073,1528451666917,1528451666917,0,108,0,0,0,0,3955} 
[DEBUG] 16:47:01.545 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 6,3  replyHeader:: 6,5650,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:47:01.560 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 7,1  replyHeader:: 7,5651,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:47:01.572 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 8,12  replyHeader:: 8,5651,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/configurators,T  response:: v{},s{2083,2083,1528451666930,1528451666930,0,0,0,0,0,0,2083} 
[DEBUG] 16:47:01.584 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 9,3  replyHeader:: 9,5651,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:47:01.596 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 10,1  replyHeader:: 10,5652,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/routers,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:47:01.609 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 11,12  replyHeader:: 11,5652,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/routers,T  response:: v{},s{2080,2080,1528451666925,1528451666925,0,0,0,0,0,0,2080} 
[INFO ] 16:47:01.610 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=providers,configurators,routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=consumer&timestamp=1533804420052, urls: [empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=providers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=consumer&timestamp=1533804420052, empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=consumer&timestamp=1533804420052, empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-dubbo-cms&category=routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=consumer&timestamp=1533804420052], dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:01.614 com.alibaba.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:425) -  [DUBBO] Refer dubbo service cn.wizzer.app.member.modules.services.MemberService from url zookeeper://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&register.ip=192.168.3.8&side=consumer&timestamp=1533804420052, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.650 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:01.651 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:01.651 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:01.651 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:01.651 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:01.651 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:01.651 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@768185844
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@768185844
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@768185844
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@768185844
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@768185844
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@76659128
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:01.652 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:01.653 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:01.653 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsSiteServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl>
[DEBUG] 16:47:01.653 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsSiteServiceImpl
[DEBUG] 16:47:01.653 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:01.653 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsSiteServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl>
[DEBUG] 16:47:01.653 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsSiteServiceImpl' to [app] 
[DEBUG] 16:47:01.653 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:47:01.653 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:47:01.653 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:47:01.653 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:47:01.653 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:47:01.655 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:47:01.659 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_site
[DEBUG] 16:47:01.659 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '3ufq8orur4jmiobcl4n5dinas8'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:01.659 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=3ufq8orur4jmiobcl4n5dinas8
[DEBUG] 16:47:01.659 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(3ufq8orur4jmiobcl4n5dinas8) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:01.659 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'3ufq8orur4jmiobcl4n5dinas8'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:01.660 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '3ufq8orur4jmiobcl4n5dinas8' to [app] 
[DEBUG] 16:47:01.660 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:47:01.661 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:47:01.689 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:47:01.689 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:47:01.689 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[DEBUG] 16:47:01.689 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboPrototeConfig
[DEBUG] 16:47:01.689 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboPrototeConfig) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:01.689 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[DEBUG] 16:47:01.689 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboPrototeConfig' to [app] 
[DEBUG] 16:47:01.690 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.ProtocolConfig without AOP
[DEBUG] 16:47:01.749 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.cache;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class CacheFactory$Adaptive implements com.alibaba.dubbo.cache.CacheFactory {
public com.alibaba.dubbo.cache.Cache getCache(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.rpc.Invocation arg1) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
if (arg1 == null) throw new IllegalArgumentException("invocation == null");
String methodName = arg1.getMethodName();
String extName = url.getMethodParameter(methodName, "cache", "lru");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.cache.CacheFactory) name from url(" + url.toString() + ") use keys([cache])");
com.alibaba.dubbo.cache.CacheFactory extension = (com.alibaba.dubbo.cache.CacheFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.cache.CacheFactory.class).getExtension(extName);
return extension.getCache(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.764 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.monitor;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class MonitorFactory$Adaptive implements com.alibaba.dubbo.monitor.MonitorFactory {
public com.alibaba.dubbo.monitor.Monitor getMonitor(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.monitor.MonitorFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.monitor.MonitorFactory extension = (com.alibaba.dubbo.monitor.MonitorFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.monitor.MonitorFactory.class).getExtension(extName);
return extension.getMonitor(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.773 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.validation;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Validation$Adaptive implements com.alibaba.dubbo.validation.Validation {
public com.alibaba.dubbo.validation.Validator getValidator(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("validation", "jvalidation");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.validation.Validation) name from url(" + url.toString() + ") use keys([validation])");
com.alibaba.dubbo.validation.Validation extension = (com.alibaba.dubbo.validation.Validation)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.validation.Validation.class).getExtension(extName);
return extension.getValidator(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:01.783 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:01.783 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService to url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804421693, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:01.783 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804421693 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61892&registry=zookeeper&timestamp=1533804421693, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.802 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Transporter$Adaptive implements com.alibaba.dubbo.remoting.Transporter {
public com.alibaba.dubbo.remoting.Client connect(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.remoting.ChannelHandler arg1) throws com.alibaba.dubbo.remoting.RemotingException {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("client", url.getParameter("transporter", "netty"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Transporter) name from url(" + url.toString() + ") use keys([client, transporter])");
com.alibaba.dubbo.remoting.Transporter extension = (com.alibaba.dubbo.remoting.Transporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Transporter.class).getExtension(extName);
return extension.connect(arg0, arg1);
}
public com.alibaba.dubbo.remoting.Server bind(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.remoting.ChannelHandler arg1) throws com.alibaba.dubbo.remoting.RemotingException {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("server", url.getParameter("transporter", "netty"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Transporter) name from url(" + url.toString() + ") use keys([server, transporter])");
com.alibaba.dubbo.remoting.Transporter extension = (com.alibaba.dubbo.remoting.Transporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Transporter.class).getExtension(extName);
return extension.bind(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.815 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Dispatcher$Adaptive implements com.alibaba.dubbo.remoting.Dispatcher {
public com.alibaba.dubbo.remoting.ChannelHandler dispatch(com.alibaba.dubbo.remoting.ChannelHandler arg0, com.alibaba.dubbo.common.URL arg1) {
if (arg1 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg1;
String extName = url.getParameter("dispatcher", url.getParameter("dispather", url.getParameter("channel.handler", "all")));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Dispatcher) name from url(" + url.toString() + ") use keys([dispatcher, dispather, channel.handler])");
com.alibaba.dubbo.remoting.Dispatcher extension = (com.alibaba.dubbo.remoting.Dispatcher)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Dispatcher.class).getExtension(extName);
return extension.dispatch(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.832 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.common.threadpool;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ThreadPool$Adaptive implements com.alibaba.dubbo.common.threadpool.ThreadPool {
public java.util.concurrent.Executor getExecutor(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("threadpool", "fixed");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.common.threadpool.ThreadPool) name from url(" + url.toString() + ") use keys([threadpool])");
com.alibaba.dubbo.common.threadpool.ThreadPool extension = (com.alibaba.dubbo.common.threadpool.ThreadPool)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.common.threadpool.ThreadPool.class).getExtension(extName);
return extension.getExecutor(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.859 com.alibaba.dubbo.remoting.transport.netty.NettyHelper$DubboLogger.debug(NettyHelper.java:73) -  [DUBBO] Couldn't determine the NIO constraint level from the system properties; using the safest level (2), dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:01.904 com.alibaba.dubbo.remoting.transport.AbstractServer.<init>(AbstractServer.java:65) -  [DUBBO] Start NettyServer bind /0.0.0.0:16199, export /192.168.3.8:16199, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:01.907 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804421693, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.921 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 12,3  replyHeader:: 12,5652,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers,F  response:: s{49,49,1528272623792,1528272623792,0,216,0,0,14,0,5646} 
[DEBUG] 16:47:01.936 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 13,1  replyHeader:: 13,5653,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsSiteService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsSiteService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CgetSite%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804421693,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsSiteService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsSiteService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CgetSite%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804421693 
[INFO ] 16:47:01.937 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804421693, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.949 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 14,3  replyHeader:: 14,5653,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService,F  response:: s{48,48,1528272623776,1528272623776,0,4,0,0,14,4,364} 
[DEBUG] 16:47:01.961 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 15,1  replyHeader:: 15,5654,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:47:01.981 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 16,12  replyHeader:: 16,5654,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/configurators,T  response:: v{},s{51,51,1528272623832,1528272623832,0,0,0,0,14,0,51} 
[INFO ] 16:47:01.981 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804421693, urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804421693], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.983 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804421693], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.983 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804421693, override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804421693], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:01.986 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '11foftpciigb5o7b9uhrtdetbu'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:01.986 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=11foftpciigb5o7b9uhrtdetbu
[DEBUG] 16:47:01.986 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(11foftpciigb5o7b9uhrtdetbu) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:01.986 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'11foftpciigb5o7b9uhrtdetbu'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:01.986 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '11foftpciigb5o7b9uhrtdetbu' to [app] 
[DEBUG] 16:47:01.987 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:47:01.987 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:47:01.987 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:47:01.989 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:47:01.990 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:47:02.047 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.048 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService to url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422000, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.048 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422000 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61892&registry=zookeeper&timestamp=1533804422000, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.050 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422000, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.063 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 17,3  replyHeader:: 17,5654,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers,F  response:: s{41,41,1528272613392,1528272613392,0,214,0,0,14,0,5642} 
[DEBUG] 16:47:02.094 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 18,1  replyHeader:: 18,5655,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsChannelService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsChannelService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetChannel%252ClistChannel%252CgetMaxId%252CgetSubPath%252ChasChannel%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CdeleteAndChild%252Csave%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804422000,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsChannelService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsChannelService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetChannel%252ClistChannel%252CgetMaxId%252CgetSubPath%252ChasChannel%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CdeleteAndChild%252Csave%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804422000 
[INFO ] 16:47:02.095 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422000, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.106 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 19,3  replyHeader:: 19,5655,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService,F  response:: s{40,40,1528272613381,1528272613381,0,4,0,0,14,4,781} 
[DEBUG] 16:47:02.118 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 20,1  replyHeader:: 20,5656,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:47:02.129 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 21,12  replyHeader:: 21,5656,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/configurators,T  response:: v{},s{43,43,1528272613433,1528272613433,0,0,0,0,14,0,43} 
[INFO ] 16:47:02.130 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422000, urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422000], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.130 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422000], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.130 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422000, override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422000], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.130 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'ugk3sn7mo6hrvol22l7048ekld'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:02.131 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=ugk3sn7mo6hrvol22l7048ekld
[DEBUG] 16:47:02.131 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(ugk3sn7mo6hrvol22l7048ekld) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:02.131 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'ugk3sn7mo6hrvol22l7048ekld'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:02.131 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'ugk3sn7mo6hrvol22l7048ekld' to [app] 
[DEBUG] 16:47:02.131 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:47:02.131 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:47:02.132 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:47:02.132 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:47:02.132 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:47:02.155 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.155 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService to url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422134, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.155 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422134 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61892&registry=zookeeper&timestamp=1533804422134, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.156 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422134, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.169 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 22,3  replyHeader:: 22,5656,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers,F  response:: s{57,57,1528272634291,1528272634291,0,216,0,0,14,0,5645} 
[DEBUG] 16:47:02.184 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 23,1  replyHeader:: 23,5657,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsArticleService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsArticleService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CgetListPage%252CupdateIgnoreNull%252CgetArticle%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804422134,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsArticleService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsArticleService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CgetListPage%252CupdateIgnoreNull%252CgetArticle%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804422134 
[INFO ] 16:47:02.184 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422134, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.196 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 24,3  replyHeader:: 24,5657,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService,F  response:: s{56,56,1528272634281,1528272634281,0,4,0,0,14,4,829} 
[DEBUG] 16:47:02.208 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 25,1  replyHeader:: 25,5658,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:47:02.221 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 26,12  replyHeader:: 26,5658,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/configurators,T  response:: v{},s{59,59,1528272634328,1528272634328,0,0,0,0,14,0,59} 
[INFO ] 16:47:02.221 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422134, urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422134], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.221 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422134], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.222 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422134, override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422134], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.222 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '4rllblefr4jjhrr2maa9bkg83c'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:02.222 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=4rllblefr4jjhrr2maa9bkg83c
[DEBUG] 16:47:02.222 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(4rllblefr4jjhrr2maa9bkg83c) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:02.222 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'4rllblefr4jjhrr2maa9bkg83c'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:02.222 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '4rllblefr4jjhrr2maa9bkg83c' to [app] 
[DEBUG] 16:47:02.222 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:47:02.223 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:47:02.223 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:47:02.223 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:47:02.223 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:47:02.266 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.266 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService to url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422225, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.266 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422225 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61892&registry=zookeeper&timestamp=1533804422225, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.267 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422225, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.280 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 27,3  replyHeader:: 27,5658,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers,F  response:: s{53,53,1528272629142,1528272629142,0,216,0,0,14,0,5641} 
[DEBUG] 16:47:02.309 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 28,1  replyHeader:: 28,5659,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsLinkClassService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkClassService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804422225,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsLinkClassService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkClassService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804422225 
[INFO ] 16:47:02.309 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422225, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.321 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 29,3  replyHeader:: 29,5659,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService,F  response:: s{52,52,1528272629057,1528272629057,0,4,0,0,14,4,949} 
[DEBUG] 16:47:02.333 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 30,1  replyHeader:: 30,5660,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:47:02.344 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 31,12  replyHeader:: 31,5660,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/configurators,T  response:: v{},s{55,55,1528272629200,1528272629200,0,0,0,0,14,0,55} 
[INFO ] 16:47:02.345 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422225, urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422225], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.345 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422225], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.345 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422225, override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422225], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.345 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '3pd05t4gnkg4uphjlm5t1vgbeg'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:02.346 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=3pd05t4gnkg4uphjlm5t1vgbeg
[DEBUG] 16:47:02.346 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(3pd05t4gnkg4uphjlm5t1vgbeg) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:02.346 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'3pd05t4gnkg4uphjlm5t1vgbeg'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:02.346 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '3pd05t4gnkg4uphjlm5t1vgbeg' to [app] 
[DEBUG] 16:47:02.346 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:47:02.346 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:47:02.347 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:47:02.347 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:47:02.347 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:47:02.367 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsTestService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.367 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsTestService to url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422353, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.367 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsTestService url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422353 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61892&registry=zookeeper&timestamp=1533804422353, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.368 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422353, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.379 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 32,3  replyHeader:: 32,5660,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers,F  response:: s{2208,2208,1528513630497,1528513630497,0,206,0,0,0,0,5640} 
[DEBUG] 16:47:02.403 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 33,1  replyHeader:: 33,5661,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsTestService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsTestService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804422353,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsTestService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsTestService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804422353 
[INFO ] 16:47:02.403 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422353, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.414 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 34,3  replyHeader:: 34,5661,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService,F  response:: s{2205,2205,1528513630491,1528513630491,0,4,0,0,14,4,2219} 
[DEBUG] 16:47:02.427 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 35,1  replyHeader:: 35,5662,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:47:02.438 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 36,12  replyHeader:: 36,5662,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/configurators,T  response:: v{},s{2219,2219,1528513630516,1528513630516,0,0,0,0,0,0,2219} 
[INFO ] 16:47:02.438 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422353, urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422353], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.439 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422353], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.439 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422353, override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422353], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.440 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '6ru6ulrdgcifuqa7hmqt2a021e'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:02.440 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=6ru6ulrdgcifuqa7hmqt2a021e
[DEBUG] 16:47:02.440 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(6ru6ulrdgcifuqa7hmqt2a021e) in DubboConfigIocLoader@431506362
[DEBUG] 16:47:02.440 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'6ru6ulrdgcifuqa7hmqt2a021e'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:47:02.440 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '6ru6ulrdgcifuqa7hmqt2a021e' to [app] 
[DEBUG] 16:47:02.440 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:47:02.441 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:47:02.441 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:47:02.441 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:47:02.441 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:47:02.478 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.478 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService to url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422442, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.478 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService url dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&bind.ip=192.168.3.8&bind.port=16199&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422442 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-dubbo-cms&dubbo=2.6.2&pid=61892&registry=zookeeper&timestamp=1533804422442, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:47:02.479 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422442, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.493 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 37,3  replyHeader:: 37,5662,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers,F  response:: s{45,45,1528272618645,1528272618645,0,216,0,0,14,0,5644} 
[DEBUG] 16:47:02.512 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 38,1  replyHeader:: 38,5663,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsLinkService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804422442,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers/dubbo%253A%252F%252F192.168.3.8%253A16199%252Fcn.wizzer.app.cms.modules.services.CmsLinkService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-dubbo-cms%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkService%2526methods%253DupdateWithVersion%252Cdata%252CinsertRelation%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61892%2526side%253Dprovider%2526timestamp%253D1533804422442 
[INFO ] 16:47:02.512 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422442, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.524 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 39,3  replyHeader:: 39,5663,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService,F  response:: s{44,44,1528272618636,1528272618636,0,4,0,0,14,4,973} 
[DEBUG] 16:47:02.536 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 40,1  replyHeader:: 40,5664,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:47:02.549 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460042, packet:: clientPath:null serverPath:null finished:false header:: 41,12  replyHeader:: 41,5664,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/configurators,T  response:: v{},s{47,47,1528272618682,1528272618682,0,0,0,0,14,0,47} 
[INFO ] 16:47:02.550 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422442, urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422442], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.550 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422442], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.550 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422442, override urls: [empty://192.168.3.8:16199/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-dubbo-cms&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61892&side=provider&timestamp=1533804422442], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:47:02.551 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRpcCmsMainLauncher'<class cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher>
[DEBUG] 16:47:02.551 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboRpcCmsMainLauncher
[DEBUG] 16:47:02.551 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:02.551 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboRpcCmsMainLauncher'<class cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher>
[DEBUG] 16:47:02.551 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboRpcCmsMainLauncher' to [app] 
[DEBUG] 16:47:02.551 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher without AOP
[DEBUG] 16:47:02.554 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<interface org.nutz.dao.Dao>
[DEBUG] 16:47:02.555 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:47:02.555 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisAgent'<class org.nutz.integration.jedis.JedisAgent>
[DEBUG] 16:47:02.558 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( org/nutz/conf/NutzDefaultConfig.js ) , regex( \.(js|json)$ )
[DEBUG] 16:47:02.563 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'redisIdGenerator'<class cn.wizzer.app.cms.commons.ig.RedisIdGenerator>
[DEBUG] 16:47:02.563 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=redisIdGenerator
[DEBUG] 16:47:02.563 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:47:02.563 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'redisIdGenerator'<class cn.wizzer.app.cms.commons.ig.RedisIdGenerator>
[DEBUG] 16:47:02.563 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'redisIdGenerator' to [app] 
[DEBUG] 16:47:02.563 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.commons.ig.RedisIdGenerator without AOP
[DEBUG] 16:47:02.566 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisAgent'<class org.nutz.integration.jedis.JedisAgent>
[DEBUG] 16:47:02.569 org.nutz.resource.Scans.scan(Scans.java:280) - Found 25 resource by src( cn/wizzer/app/cms/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:47:02.718 org.nutz.resource.Scans.scan(Scans.java:280) - Found 25 resource by src( cn/wizzer/app/cms/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:47:02.781 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisPool'<class redis.clients.util.Pool>
[DEBUG] 16:47:02.781 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=jedisPool
[DEBUG] 16:47:02.781 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jedisPool) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:47:02.781 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'jedisPool'<class redis.clients.util.Pool>
[DEBUG] 16:47:02.781 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'jedisPool' to [app] 
[DEBUG] 16:47:02.784 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisPoolConfig'<>
[DEBUG] 16:47:02.784 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=jedisPoolConfig
[DEBUG] 16:47:02.784 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jedisPoolConfig) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:47:02.785 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'jedisPoolConfig'<>
[DEBUG] 16:47:02.785 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'jedisPoolConfig' to [app] 
[DEBUG] 16:47:02.785 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class redis.clients.jedis.JedisPoolConfig without AOP
[DEBUG] 16:47:02.805 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.807 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.807 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.807 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.807 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.807 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.810 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class redis.clients.jedis.JedisPool without AOP
[DEBUG] 16:47:02.811 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisPoolConfig'<>
[DEBUG] 16:47:02.811 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.811 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.811 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.812 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.812 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:02.864 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT table_name FROM information_schema.columns WHERE table_schema='nb_boot' AND column_name='id'
[DEBUG] 16:47:02.878 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=14ms, sql=SELECT table_name FROM information_schema.columns WHERE table_schema='nb_boot' AND column_name='id'
[DEBUG] 16:47:02.883 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_article  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.891 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM cms_article  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.891 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_channel  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.901 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=10ms, sql=SELECT * FROM cms_channel  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.901 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_link  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.909 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM cms_link  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.909 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_link_class  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.917 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM cms_link_class  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.917 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_site  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.928 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=11ms, sql=SELECT * FROM cms_site  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.929 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM cms_test  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.937 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=7ms, sql=SELECT * FROM cms_test  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.937 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM member  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.945 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM member  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.945 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_dict  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.954 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM sys_dict  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.955 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_log_  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.962 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=7ms, sql=SELECT * FROM sys_log_  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.963 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_log_201806  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.971 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM sys_log_201806  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.971 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_menu  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.980 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM sys_menu  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.981 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_province  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.989 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM sys_province  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.989 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_role  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.997 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM sys_role  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:02.997 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_route  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.006 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM sys_route  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.006 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_task  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.014 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=7ms, sql=SELECT * FROM sys_task  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.015 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_unit  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.023 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM sys_unit  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.023 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM sys_user  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.033 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=10ms, sql=SELECT * FROM sys_user  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.033 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_config  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.041 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM wx_config  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.041 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_mass  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.049 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM wx_mass  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.049 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_mass_news  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.058 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_mass_news  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.059 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_mass_send  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.067 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=7ms, sql=SELECT * FROM wx_mass_send  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.067 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_menu  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.075 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM wx_menu  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.075 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_msg  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.084 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_msg  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.084 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_msg_reply  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.092 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM wx_msg_reply  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.093 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_reply  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.101 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM wx_reply  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.101 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_reply_news  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.110 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=9ms, sql=SELECT * FROM wx_reply_news  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.110 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_reply_txt  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.117 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=7ms, sql=SELECT * FROM wx_reply_txt  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.118 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_tpl_id  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.126 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM wx_tpl_id  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.127 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_tpl_list  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.135 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM wx_tpl_list  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.135 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_tpl_log  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.143 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=7ms, sql=SELECT * FROM wx_tpl_log  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.143 org.nutz.dao.impl.sql.run.NutDaoExecutor.printSQL(NutDaoExecutor.java:388) - SELECT * FROM wx_user  ORDER BY id DESC   LIMIT 0, 1 
[DEBUG] 16:47:03.151 org.nutz.dao.impl.interceptor.DaoTimeInterceptor.filter(DaoTimeInterceptor.java:28) - time=8ms, sql=SELECT * FROM wx_user  ORDER BY id DESC   LIMIT 0, 1 
[INFO ] 16:47:03.152 cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher.initRedisIg(DubboRpcCmsMainLauncher.java:139) - init redis ig time::371ms
[DEBUG] 16:47:03.152 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sessionAwareListenerContainer'<class org.springframework.jms.listener.DefaultMessageListenerContainer>
[DEBUG] 16:47:03.152 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=sessionAwareListenerContainer
[DEBUG] 16:47:03.153 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:03.153 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'sessionAwareListenerContainer'<class org.springframework.jms.listener.DefaultMessageListenerContainer>
[DEBUG] 16:47:03.153 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'sessionAwareListenerContainer' to [app] 
[DEBUG] 16:47:03.160 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.springframework.jms.listener.DefaultMessageListenerContainer without AOP
[DEBUG] 16:47:03.203 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'connectionFactory'<>
[DEBUG] 16:47:03.203 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=connectionFactory
[DEBUG] 16:47:03.204 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:03.204 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'connectionFactory'<>
[DEBUG] 16:47:03.204 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'connectionFactory' to [app] 
[DEBUG] 16:47:03.205 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.springframework.jms.connection.SingleConnectionFactory without AOP
[DEBUG] 16:47:03.211 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'pooledConnectionFactory'<>
[DEBUG] 16:47:03.211 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=pooledConnectionFactory
[DEBUG] 16:47:03.211 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:03.211 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'pooledConnectionFactory'<>
[DEBUG] 16:47:03.211 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'pooledConnectionFactory' to [app] 
[DEBUG] 16:47:03.213 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.pool.PooledConnectionFactory without AOP
[DEBUG] 16:47:03.224 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'targetConnectionFactory'<>
[DEBUG] 16:47:03.225 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=targetConnectionFactory
[DEBUG] 16:47:03.225 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:03.225 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'targetConnectionFactory'<>
[DEBUG] 16:47:03.225 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'targetConnectionFactory' to [app] 
[DEBUG] 16:47:03.232 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.ActiveMQConnectionFactory without AOP
[DEBUG] 16:47:03.276 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:03.277 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:03.277 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:47:03.282 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sessionAwareQueue'<>
[DEBUG] 16:47:03.282 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=sessionAwareQueue
[DEBUG] 16:47:03.282 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:03.282 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'sessionAwareQueue'<>
[DEBUG] 16:47:03.282 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'sessionAwareQueue' to [app] 
[DEBUG] 16:47:03.283 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.command.ActiveMQQueue without AOP
[DEBUG] 16:47:03.295 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'consumerSessionAwareMessageListener'<>
[DEBUG] 16:47:03.295 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=consumerSessionAwareMessageListener
[DEBUG] 16:47:03.295 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:47:03.296 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'consumerSessionAwareMessageListener'<>
[DEBUG] 16:47:03.296 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'consumerSessionAwareMessageListener' to [app] 
[DEBUG] 16:47:03.296 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.commons.activemq.ConsumerSessionAwareMessageListener without AOP
[DEBUG] 16:47:03.457 org.apache.activemq.transport.WireFormatNegotiator.sendWireFormat(WireFormatNegotiator.java:82) - Sending: WireFormatInfo { version=9, properties={TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, StackTraceEnabled=true, CacheEnabled=true, TightEncodingEnabled=true, MaxFrameSize=9223372036854775807, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000}, magic=[A,c,t,i,v,e,M,Q]}
[DEBUG] 16:47:03.460 org.apache.activemq.transport.InactivityMonitor.configuredOk(InactivityMonitor.java:92) - Using min of local: WireFormatInfo { version=9, properties={TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, StackTraceEnabled=true, CacheEnabled=true, TightEncodingEnabled=true, MaxFrameSize=9223372036854775807, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000}, magic=[A,c,t,i,v,e,M,Q]} and remote: WireFormatInfo { version=12, properties={TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, ProviderName=ActiveMQ, StackTraceEnabled=true, PlatformDetails=Java, CacheEnabled=true, TightEncodingEnabled=true, MaxFrameSize=104857600, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000, ProviderVersion=5.15.4}, magic=[A,c,t,i,v,e,M,Q]}
[DEBUG] 16:47:03.460 org.apache.activemq.transport.WireFormatNegotiator.negociate(WireFormatNegotiator.java:118) - Received WireFormat: WireFormatInfo { version=12, properties={TcpNoDelayEnabled=true, SizePrefixDisabled=false, CacheSize=1024, ProviderName=ActiveMQ, StackTraceEnabled=true, PlatformDetails=Java, CacheEnabled=true, TightEncodingEnabled=true, MaxFrameSize=104857600, MaxInactivityDuration=30000, MaxInactivityDurationInitalDelay=10000, ProviderVersion=5.15.4}, magic=[A,c,t,i,v,e,M,Q]}
[DEBUG] 16:47:03.461 org.apache.activemq.transport.WireFormatNegotiator.negociate(WireFormatNegotiator.java:125) - tcp:///127.0.0.1:61616@51778 before negotiation: OpenWireFormat{version=9, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false, maxFrameSize=9223372036854775807}
[DEBUG] 16:47:03.461 org.apache.activemq.transport.WireFormatNegotiator.negociate(WireFormatNegotiator.java:140) - tcp:///127.0.0.1:61616@51778 after negotiation: OpenWireFormat{version=9, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false, maxFrameSize=104857600}
[INFO ] 16:47:03.462 org.springframework.jms.connection.SingleConnectionFactory.initConnection(SingleConnectionFactory.java:311) - Established shared JMS Connection: PooledConnection { ConnectionPool[ActiveMQConnection {id=ID:haigodeiMac.local-51777-1533804423352-1:1,clientId=null,started=false}] }
[DEBUG] 16:47:03.466 org.springframework.jms.listener.AbstractJmsListeningContainer.establishSharedConnection(AbstractJmsListeningContainer.java:382) - Established shared JMS Connection
[DEBUG] 16:47:03.466 org.springframework.jms.listener.AbstractJmsListeningContainer.resumePausedTasks(AbstractJmsListeningContainer.java:549) - Resumed paused task: org.springframework.jms.listener.DefaultMessageListenerContainer$AsyncMessageListenerInvoker@44b29496
ok

这是cms启动日志

/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/bin/java -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:51806,suspend=y,server=n -Dfile.encoding=UTF-8 -classpath "/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/tools.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-web-api/target/classes:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-framework/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-daocache/1.r.66-SNAPSHOT/nutz-plugins-daocache-1.r.66-20180614.031905-54.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-model/target/classes:/Users/haigo/.m2/repository/cn/wizzer/app/wk-code-generator-nb/5.0.1-SNAPSHOT/wk-code-generator-nb-5.0.1-20180409.075514-1.jar:/Users/haigo/.m2/repository/org/atteo/evo-inflector/1.0.1/evo-inflector-1.0.1.jar:/Users/haigo/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/haigo/.m2/repository/org/apache/velocity/velocity/1.7/velocity-1.7.jar:/Users/haigo/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar:/Users/haigo/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-common/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar:/Users/haigo/.m2/repository/org/nutz/nutz/1.r.66-SNAPSHOT/nutz-1.r.66-20180611.015908-74.jar:/Users/haigo/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-dubbo/1.r.66-SNAPSHOT/nutz-integration-dubbo-1.r.66-20180614.031821-63.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-framework/4.0.1/curator-framework-4.0.1.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-client/4.0.1/curator-client-4.0.1.jar:/Users/haigo/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/haigo/.m2/repository/com/alibaba/dubbo/2.6.2/dubbo-2.6.2.jar:/Users/haigo/.m2/repository/org/javassist/javassist/3.22.0-GA/javassist-3.22.0-GA.jar:/Users/haigo/.m2/repository/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/haigo/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/com/101tec/zkclient/0.10/zkclient-0.10.jar:/Users/haigo/.m2/repository/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.jar:/Users/haigo/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/Users/haigo/.m2/repository/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-mvc/2.2-SNAPSHOT/nutzboot-starter-nutz-mvc-2.2-20180611.111306-187.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jetty/2.2-SNAPSHOT/nutzboot-starter-jetty-2.2-20180611.111230-200.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-servlets/9.4.11.v20180605/jetty-servlets-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-continuation/9.4.11.v20180605/jetty-continuation-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-http/9.4.11.v20180605/jetty-http-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-util/9.4.11.v20180605/jetty-util-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-io/9.4.11.v20180605/jetty-io-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-webapp/9.4.11.v20180605/jetty-webapp-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-xml/9.4.11.v20180605/jetty-xml-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-servlet/9.4.11.v20180605/jetty-servlet-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-security/9.4.11.v20180605/jetty-security-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-server/9.4.11.v20180605/jetty-server-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-server/9.4.11.v20180605/websocket-server-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-common/9.4.11.v20180605/websocket-common-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-api/9.4.11.v20180605/websocket-api-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-client/9.4.11.v20180605/websocket-client-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-client/9.4.11.v20180605/jetty-client-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-servlet/9.4.11.v20180605/websocket-servlet-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.11.v20180605/javax-websocket-server-impl-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-annotations/9.4.11.v20180605/jetty-annotations-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-plus/9.4.11.v20180605/jetty-plus-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-commons/6.1.1/asm-commons-6.1.1.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-tree/6.1.1/asm-tree-6.1.1.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-analysis/6.1.1/asm-analysis-6.1.1.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.11.v20180605/javax-websocket-client-impl-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar:/Users/haigo/.m2/repository/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar:/Users/haigo/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-websocket/1.r.66-SNAPSHOT/nutz-plugins-websocket-1.r.66-20180614.031938-53.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-servlet3/2.2-SNAPSHOT/nutzboot-servlet3-2.2-20180611.111228-44.jar:/Users/haigo/.m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm/6.1.1/asm-6.1.1.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-jedis/1.r.66-SNAPSHOT/nutz-integration-jedis-1.r.66-20180614.031845-61.jar:/Users/haigo/.m2/repository/redis/clients/jedis/2.9.0/jedis-2.9.0.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-test-junit4/2.2-SNAPSHOT/nutzboot-starter-test-junit4-2.2-20180611.111334-80.jar:/Users/haigo/.m2/repository/io/jsonwebtoken/jjwt/0.9.0/jjwt-0.9.0.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.5/jackson-core-2.9.5.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/Users/haigo/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-service-cms/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-wkcache/1.r.66-SNAPSHOT/nutz-plugins-wkcache-1.r.66-20180614.031939-53.jar:/Users/haigo/.m2/repository/com/alibaba/druid/1.1.10/druid-1.1.10.jar:/Users/haigo/.m2/repository/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.jar:/Users/haigo/.m2/repository/org/springframework/spring-core/4.3.16.RELEASE/spring-core-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/haigo/.m2/repository/org/springframework/spring-context/4.3.16.RELEASE/spring-context-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-aop/4.3.16.RELEASE/spring-aop-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-beans/4.3.16.RELEASE/spring-beans-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-expression/4.3.16.RELEASE/spring-expression-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-tx/4.3.16.RELEASE/spring-tx-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-jms/4.1.8.RELEASE/spring-jms-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-messaging/4.1.8.RELEASE/spring-messaging-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/apache/xbean/xbean-spring/3.16/xbean-spring-3.16.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-core/5.7.0/activemq-core-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1.1/geronimo-jms_1.1_spec-1.1.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/kahadb/5.7.0/kahadb-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar:/Users/haigo/.m2/repository/org/fusesource/mqtt-client/mqtt-client/1.3/mqtt-client-1.3.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch-transport/1.11/hawtdispatch-transport-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch/1.11/hawtdispatch-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar:/Users/haigo/.m2/repository/commons-net/commons-net/3.1/commons-net-3.1.jar:/Users/haigo/.m2/repository/org/jasypt/jasypt/1.9.0/jasypt-1.9.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-pool/5.12.1/activemq-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-jms-pool/5.12.1/activemq-jms-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-client/5.12.1/activemq-client-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar:/Applications/IntelliJ IDEA 15.app/Contents/lib/idea_rt.jar" cn.wizzer.app.web.commons.core.WebApiMainLauncher
Connected to the target VM, address: '127.0.0.1:51806', transport: 'socket'
[INFO ] 16:49:02.121 org.nutz.boot.banner.SimpleBannerPrinter.printBanner(SimpleBannerPrinter.java:34) - 
 _  _ _   _ _____ ______      ___  __
| \| | | | |_   _|_  /\ \    / / |/ /
| .` | |_| | | |  / /  \ \/\/ /| ' <
|_|\_|\___/  |_| /___|  \_/\_/ |_|\_\

:: Built with NutzWk

[DEBUG] 16:49:02.357 org.nutz.resource.Scans.printLocations(Scans.java:527) - Locations count=134 time use 223ms
[DEBUG] 16:49:02.369 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( custom/ ) , regex( ^.+[.]properties$ )
[DEBUG] 16:49:02.369 org.nutz.ioc.impl.PropertiesProxy.setPaths(PropertiesProxy.java:114) - load properties from jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar!/custom/emtry.properties
[DEBUG] 16:49:02.370 org.nutz.boot.config.impl.PropertiesConfigureLoader.readPropertiesPath(PropertiesConfigureLoader.java:121) - Loading Properties  - application.properties
[DEBUG] 16:49:02.422 org.nutz.resource.Scans.scan(Scans.java:280) - Found 2 resource by src( ioc/ ) , regex( ^(.+[.])(js|json)$ )
[DEBUG] 16:49:02.422 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [emtry.json]
[DEBUG] 16:49:02.423 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [avtivemq.js]
[DEBUG] 16:49:02.443 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:57) - Loaded 7 bean define from path=[ioc/] --> [activeMqJmsTemplate, sessionAwareQueue, connectionFactory, consumerSessionAwareMessageListener, sessionAwareListenerContainer, targetConnectionFactory, pooledConnectionFactory]
[DEBUG] 16:49:02.500 org.nutz.castor.Castors.reload(Castors.java:116) - Using 101 castor for Castors
[DEBUG] 16:49:02.518 org.nutz.ioc.aop.SimpleAopMaker.<init>(SimpleAopMaker.java:79) - Load AopConfigure for anno=org.nutz.aop.interceptor.async.Async by type=org.nutz.aop.interceptor.async.AsyncAopIocLoader
[INFO ] 16:49:02.525 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'cn.wizzer'
[DEBUG] 16:49:02.583 org.nutz.resource.Scans.scan(Scans.java:280) - Found 111 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[INFO ] 16:49:02.761 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'webApiMainLauncher                      ' - cn.wizzer.app.web.commons.core.WebApiMainLauncher
[INFO ] 16:49:02.769 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'tokenUtil                               ' - cn.wizzer.app.web.commons.utils.TokenUtil
[INFO ] 16:49:02.780 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'apiTestSignController                   ' - cn.wizzer.app.web.modules.controllers.open.ApiTestSignController
[INFO ] 16:49:02.794 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'apiTestTokenController                  ' - cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController
[INFO ] 16:49:02.802 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'apiTokenController                      ' - cn.wizzer.app.web.modules.controllers.open.ApiTokenController
[INFO ] 16:49:02.803 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'apiMemberController                     ' - cn.wizzer.app.web.modules.controllers.open.member.ApiMemberController
[INFO ] 16:49:02.804 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dubboRpcCmsMainLauncher                 ' - cn.wizzer.app.cms.commons.core.DubboRpcCmsMainLauncher
[INFO ] 16:49:02.806 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'redisIdGenerator                        ' - cn.wizzer.app.cms.commons.ig.RedisIdGenerator
[INFO ] 16:49:02.820 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsArticleServiceImpl                   ' - cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl
[INFO ] 16:49:02.832 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsChannelServiceImpl                   ' - cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl
[INFO ] 16:49:02.835 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsLinkClassServiceImpl                 ' - cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl
[INFO ] 16:49:02.836 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsLinkServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl
[INFO ] 16:49:02.837 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsSiteServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl
[INFO ] 16:49:02.838 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'cmsTestServiceImpl                      ' - cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl
[INFO ] 16:49:02.851 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'org.nutz.boot.starter'
[DEBUG] 16:49:02.853 org.nutz.resource.Scans.scan(Scans.java:280) - Found 24 resource by src( org/nutz/boot/starter/ ) , regex( ^.+[.]class$ )
[INFO ] 16:49:02.899 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'nutDaoStarter                           ' - org.nutz.boot.starter.nutz.dao.NutDaoStarter
[DEBUG] 16:49:02.903 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.getDao(...) define as name=dao
[DEBUG] 16:49:02.911 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.getSqlManager(...) define as name=sqlManager
[DEBUG] 16:49:02.911 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.createCacheSerializer(...) define as name=daoCacheSerializer
[DEBUG] 16:49:02.911 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutDaoStarter.createDaoCacheInterceptor(...) define as name=daoCacheInterceptor
[INFO ] 16:49:02.911 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dubboStarter                            ' - org.nutz.boot.starter.dubbo.DubboStarter
[INFO ] 16:49:02.912 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'whaleFilterStarter                      ' - org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter
[DEBUG] 16:49:02.914 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : WhaleFilterStarter.createNutFilter(...) define as name=whaleFilter
[INFO ] 16:49:02.918 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'nutFilterStarter                        ' - org.nutz.boot.starter.nutz.mvc.NutFilterStarter
[DEBUG] 16:49:02.920 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : NutFilterStarter.createNutFilter(...) define as name=nutFilter
[INFO ] 16:49:02.920 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'jettyStarter                            ' - org.nutz.boot.starter.jetty.JettyStarter
[DEBUG] 16:49:03.079 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : JettyStarter.getJettyServer(...) define as name=jettyServer
[INFO ] 16:49:03.079 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'nbServletContextListener                ' - org.nutz.boot.starter.servlet3.NbServletContextListener
[INFO ] 16:49:03.080 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'druidWebStatFilterStarter               ' - org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter
[INFO ] 16:49:03.081 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'druidWebStatServletStarter              ' - org.nutz.boot.starter.jdbc.DruidWebStatServletStarter
[INFO ] 16:49:03.083 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'dataSourceStarter                       ' - org.nutz.boot.starter.jdbc.DataSourceStarter
[DEBUG] 16:49:03.084 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.getDataSource(...) define as name=dataSource
[DEBUG] 16:49:03.084 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.createDruidDataSource(...) define as name=druidDataSource
[DEBUG] 16:49:03.085 org.nutz.ioc.loader.annotation.AnnotationIocLoader.handleIocBeanMethod(AnnotationIocLoader.java:246) - Found @IocBean method : DataSourceStarter.createHikariCPDataSource(...) define as name=hikariDataSource
[DEBUG] 16:49:03.086 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:49:03.087 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:49:03.087 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-mvc/2.2-SNAPSHOT/nutzboot-starter-nutz-mvc-2.2-20180611.111306-187.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:49:03.087 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jetty/2.2-SNAPSHOT/nutzboot-starter-jetty-2.2-20180611.111230-200.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:49:03.088 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:49:03.088 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[DEBUG] 16:49:03.088 org.nutz.boot.NbApp.prepareStarterClassList(NbApp.java:400) - Found jar:file:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar!/META-INF/nutz/org.nutz.boot.starter.NbStarter
[INFO ] 16:49:03.103 org.nutz.boot.NbApp.prepare(NbApp.java:279) - Configure Manual:
|id  |key                                     |required  |Possible Values     |Default   |Description         |                                starters|
|----|----------------------------------------|----------|--------------------|----------|--------------------|----------------------------------------|
|0   |druid.web.filter.exclusions             |no        |                    |          |需要排除的路径             |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|1   |druid.web.filter.principalCookieName    |no        |                    |          |用户权限信息的cookie属性名称   |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|2   |druid.web.filter.principalSessionName   |no        |                    |          |用户权限信息的session属性名称  |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|3   |druid.web.filter.profileEnable          |no        |                    |          |是否开启性能监控            |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|4   |druid.web.filter.realIpHeader           |no        |                    |          |Header中ReadIp对应的key |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|5   |druid.web.filter.sessionStatEnable      |no        |                    |true      |是否开启session状态监控     |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|6   |druid.web.filter.sessionStatMaxCount    |no        |                    |          |session最大状态数量       |org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter|
|7   |druid.web.servlet.allow                 |no        |                    |          |允许访问的ip列表           |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|8   |druid.web.servlet.deny                  |no        |                    |          |禁止访问的ip列表           |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|9   |druid.web.servlet.jmxPassword           |no        |                    |          |JMX的密码              |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|10  |druid.web.servlet.jmxUrl                |no        |                    |          |读取JMX信息的URL         |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|11  |druid.web.servlet.jmxUsername           |no        |                    |          |JMX的用户名             |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|12  |druid.web.servlet.loginPassword         |no        |                    |随机值,打印在日志中|访问monitor页面的密码      |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|13  |druid.web.servlet.loginUsername         |no        |                    |driud     |访问monitor页面的用户名     |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|14  |druid.web.servlet.resetEnable           |no        |                    |true      |是否允许重置统计结果          |org.nutz.boot.starter.jdbc.DruidWebStatServletStarter|
|15  |jdbc.password                           |no        |                    |          |数据库密码               |org.nutz.boot.starter.jdbc.DataSourceStarter|
|16  |jdbc.type                               |no        |druid,simple,hikari |druid     |连接池类型               |org.nutz.boot.starter.jdbc.DataSourceStarter|
|17  |jdbc.url                                |yes       |                    |          |JDBC URL            |org.nutz.boot.starter.jdbc.DataSourceStarter|
|18  |jdbc.username                           |no        |                    |          |数据库用户名              |org.nutz.boot.starter.jdbc.DataSourceStarter|
|19  |jetty.contextPath                       |no        |                    |/         |上下文路径               |org.nutz.boot.starter.jetty.JettyStarter|
|20  |jetty.gzip.enable                       |no        |                    |false     |是否启用gzip            |org.nutz.boot.starter.jetty.JettyStarter|
|21  |jetty.gzip.level                        |no        |                    |-1        |gzip压缩级别            |org.nutz.boot.starter.jetty.JettyStarter|
|22  |jetty.gzip.minContentSize               |no        |                    |512       |gzip压缩最小触发大小        |org.nutz.boot.starter.jetty.JettyStarter|
|23  |jetty.host                              |no        |                    |0.0.0.0   |监听的ip地址             |org.nutz.boot.starter.jetty.JettyStarter|
|24  |jetty.http.idleTimeout                  |no        |                    |300000    |空闲时间,单位毫秒           |org.nutz.boot.starter.jetty.JettyStarter|
|25  |jetty.httpConfig.blockingTimeout        |no        |                    |-1        |阻塞超时                |org.nutz.boot.starter.jetty.JettyStarter|
|26  |jetty.httpConfig.headerCacheSize        |no        |                    |8192      |头部缓冲区大小             |org.nutz.boot.starter.jetty.JettyStarter|
|27  |jetty.httpConfig.maxErrorDispatches     |no        |                    |10        |最大错误重定向次数           |org.nutz.boot.starter.jetty.JettyStarter|
|28  |jetty.httpConfig.outputAggregationSize  |no        |                    |8192      |输出聚合大小              |org.nutz.boot.starter.jetty.JettyStarter|
|29  |jetty.httpConfig.outputBufferSize       |no        |                    |32768     |输出缓冲区大小             |org.nutz.boot.starter.jetty.JettyStarter|
|30  |jetty.httpConfig.persistentConnectionsEnabled|no        |                    |true      |是否启用持久化连接           |org.nutz.boot.starter.jetty.JettyStarter|
|31  |jetty.httpConfig.requestHeaderSize      |no        |                    |8192      |请求的头部最大值            |org.nutz.boot.starter.jetty.JettyStarter|
|32  |jetty.httpConfig.responseHeaderSize     |no        |                    |8192      |响应的头部最大值            |org.nutz.boot.starter.jetty.JettyStarter|
|33  |jetty.httpConfig.securePort             |no        |                    |          |安全协议的端口,例如8443      |org.nutz.boot.starter.jetty.JettyStarter|
|34  |jetty.httpConfig.secureScheme           |no        |                    |          |安全协议,例如https        |org.nutz.boot.starter.jetty.JettyStarter|
|35  |jetty.httpConfig.sendDateHeader         |no        |                    |true      |是否发送日期信息            |org.nutz.boot.starter.jetty.JettyStarter|
|36  |jetty.httpConfig.sendServerVersion      |no        |                    |true      |是否发送jetty版本号        |org.nutz.boot.starter.jetty.JettyStarter|
|37  |jetty.maxFormContentSize                |no        |                    |1gb       |表单最大尺寸              |org.nutz.boot.starter.jetty.JettyStarter|
|38  |jetty.page.404                          |no        |                    |          |自定义404页面,同理,其他状态码也是支持的|org.nutz.boot.starter.jetty.JettyStarter|
|39  |jetty.page.java.lang.Throwable          |no        |                    |          |自定义java.lang.Throwable页面,同理,其他异常也支持|org.nutz.boot.starter.jetty.JettyStarter|
|40  |jetty.port                              |no        |                    |8080      |监听的端口               |org.nutz.boot.starter.jetty.JettyStarter|
|41  |jetty.staticPath                        |no        |                    |          |额外的静态文件路径           |org.nutz.boot.starter.jetty.JettyStarter|
|42  |jetty.staticPathLocal                   |no        |                    |          |静态文件所在的本地路径         |org.nutz.boot.starter.jetty.JettyStarter|
|43  |jetty.threadpool.idleTimeout            |no        |                    |60000     |线程池idleTimeout,单位毫秒 |org.nutz.boot.starter.jetty.JettyStarter|
|44  |jetty.threadpool.maxThreads             |no        |                    |500       |线程池最大线程数maxThreads  |org.nutz.boot.starter.jetty.JettyStarter|
|45  |jetty.threadpool.minThreads             |no        |                    |200       |线程池最小线程数minThreads  |org.nutz.boot.starter.jetty.JettyStarter|
|46  |jetty.welcome_files                     |no        |                    |index.html,index.htm,index.do|WelcomeFile列表       |org.nutz.boot.starter.jetty.JettyStarter|
|47  |nutz.dao.interceptor.cache.cache4Null   |no        |                    |true      |是否缓存null结果          |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|48  |nutz.dao.interceptor.cache.debug        |no        |                    |false     |打印daocache详细调试日志    |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|49  |nutz.dao.interceptor.cache.enable       |no        |                    |false     |是否使用daocache        |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|50  |nutz.dao.interceptor.cache.enableWhenTrans|no        |                    |false     |事务内是否启用daocache     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|51  |nutz.dao.interceptor.cache.provider.ioc.name|no        |                    |daoCacheProvider|daocache提供者DaoCacheProvider的IocBean名称|org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|52  |nutz.dao.interceptor.cache.provider.memory.cacheSize|no        |                    |          |daocache提供者MemoryDaoCacheProvider的默认缓存大小|org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|53  |nutz.dao.interceptor.cache.provider.type|no        |memory,ehcache,jedis,ioc|memory    |daocache提供者         |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|54  |nutz.dao.interceptor.cache.table.names  |no        |                    |          |需要缓存的表名称,英文逗号分隔     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|55  |nutz.dao.interceptor.cache.table.pattern|no        |                    |          |需要缓存的表名称的正则表达式      |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|56  |nutz.dao.interceptor.log.enable         |no        |                    |true      |是否打印dao的SQL日志       |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|57  |nutz.dao.interceptor.time.enable        |no        |                    |false     |是否打印dao的SQL耗时日志     |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|58  |nutz.dao.sqls.path                      |no        |                    |sqls/     |sql目录               |org.nutz.boot.starter.nutz.dao.NutDaoStarter|
|59  |nutz.mvc.whale.enc.input                |no        |                    |UTF-8     |在其他Filter之前设置input编码|org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter|
|60  |nutz.mvc.whale.enc.output               |no        |                    |UTF-8     |在其他Filter之前设置output编码|org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter|
|61  |nutz.mvc.whale.http.hidden_method_param |no        |                    |          |隐形http方法参数转换所对应的参数名 |org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter|
|62  |nutz.mvc.whale.http.method_override     |no        |                    |false     |是否允许使用X-HTTP-Method-Override|org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter|
|63  |nutz.mvc.whale.upload.enable            |no        |                    |false     |是否启用隐形Upload支持      |org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter|
|64  |redis.database                          |no        |                    |0         |redis数据库序号          |org.nutz.boot.starter.redis.JedisStarter|
|65  |redis.host                              |no        |                    |127.0.0.1 |redis服务器ip或域名       |org.nutz.boot.starter.redis.JedisStarter|
|66  |redis.max_redir                         |no        |                    |10        |redis集群最大重定向次数      |org.nutz.boot.starter.redis.JedisStarter|
|67  |redis.nodes                             |no        |                    |          |redis集群节点列表         |org.nutz.boot.starter.redis.JedisStarter|
|68  |redis.password                          |no        |                    |          |redis密码             |org.nutz.boot.starter.redis.JedisStarter|
|69  |redis.port                              |no        |                    |6379      |redis服务器端口          |org.nutz.boot.starter.redis.JedisStarter|
|70  |redis.soTimeout                         |no        |                    |0         |redis写超时            |org.nutz.boot.starter.redis.JedisStarter|
|71  |redis.timeout                           |no        |                    |2000      |redis读写超时           |org.nutz.boot.starter.redis.JedisStarter|
|72  |web.session.timeout                     |no        |                    |30        |Session空闲时间,单位分钟    |org.nutz.boot.starter.jetty.JettyStarter|
[INFO ] 16:49:03.109 org.nutz.ioc.impl.NutIoc.<init>(NutIoc.java:130) - ... NutIoc init complete
[DEBUG] 16:49:03.110 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'appContext' to [app] 
[DEBUG] 16:49:03.110 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'conf' to [app] 
[DEBUG] 16:49:03.110 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nbApp' to [app] 
[DEBUG] 16:49:03.111 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'counterService' to [app] 
[DEBUG] 16:49:03.118 org.nutz.boot.starter.dubbo.DubboIocLoaderStarter.getIocLoader(DubboIocLoaderStarter.java:34) - using dubbo configure from PropertiesProxy
[DEBUG] 16:49:03.118 org.nutz.boot.AppContext.getServerPort(AppContext.java:344) - select random port=16559 for dubbo.protocol.port
[INFO ] 16:49:03.124  - using logger: com.alibaba.dubbo.common.logger.log4j.Log4jLoggerAdapter
[DEBUG] 16:49:03.209 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( org/nutz/integration/jedis/jedis.js ) , regex( ^(.+[.])(js|json)$ )
[DEBUG] 16:49:03.209 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:49) - loading [org/nutz/integration/jedis/jedis.js]
[DEBUG] 16:49:03.210 org.nutz.ioc.loader.json.JsonLoader.<init>(JsonLoader.java:57) - Loaded 9 bean define from path=[org/nutz/integration/jedis/jedis.js] --> [redisService, jedisCluster, jedisClusterNodes, jedisClusterWrapper, pubSubService, jedisPoolConfig, jedisPool, jedisAgent, redis]
[INFO ] 16:49:03.212 org.nutz.ioc.loader.annotation.AnnotationIocLoader.<init>(AnnotationIocLoader.java:50) -  > scan 'org.nutz.plugins.wkcache'
[DEBUG] 16:49:03.213 org.nutz.resource.Scans.scan(Scans.java:280) - Found 13 resource by src( org/nutz/plugins/wkcache/ ) , regex( ^.+[.]class$ )
[INFO ] 16:49:03.216 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheRemoveEntryInterceptor           ' - org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor
[INFO ] 16:49:03.218 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheResultInterceptor                ' - org.nutz.plugins.wkcache.WkcacheResultInterceptor
[INFO ] 16:49:03.218 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheUpdateInterceptor                ' - org.nutz.plugins.wkcache.WkcacheUpdateInterceptor
[INFO ] 16:49:03.219 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add 'wkcacheRemoveAllInterceptor             ' - org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor
[INFO ] 16:49:03.219 org.nutz.ioc.loader.annotation.AnnotationIocLoader.addClass(AnnotationIocLoader.java:98) -    > add '$aop_wkcache                            ' - org.nutz.plugins.wkcache.WkcacheAopConfigure
[DEBUG] 16:49:03.219 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<class org.nutz.boot.starter.nutz.dao.NutDaoStarter>
[DEBUG] 16:49:03.220 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '$aop_async'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:49:03.220 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=$aop_async
[DEBUG] 16:49:03.221 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:49:03.221 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'$aop_async'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:49:03.272 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '$aop_async' to [app] 
[DEBUG] 16:49:03.276 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '$aop_wkcache'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:49:03.276 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=$aop_wkcache
[DEBUG] 16:49:03.276 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_wkcache) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:49:03.276 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'$aop_wkcache'<interface org.nutz.ioc.aop.config.AopConfigration>
[DEBUG] 16:49:03.276 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '$aop_wkcache' to [app] 
[DEBUG] 16:49:03.278 org.nutz.ioc.aop.SimpleAopMaker.<init>(SimpleAopMaker.java:79) - Load AopConfigure for anno=org.nutz.ioc.aop.Aop by type=org.nutz.ioc.aop.config.impl.AnnotationAopConfigration
[DEBUG] 16:49:03.278 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=nutDaoStarter
[DEBUG] 16:49:03.278 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutDaoStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:03.278 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'nutDaoStarter'<class org.nutz.boot.starter.nutz.dao.NutDaoStarter>
[DEBUG] 16:49:03.278 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nutDaoStarter' to [app] 
[DEBUG] 16:49:03.279 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.nutz.dao.NutDaoStarter without AOP
[DEBUG] 16:49:03.289 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:49:03.289 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboStarter'<class org.nutz.boot.starter.dubbo.DubboStarter>
[DEBUG] 16:49:03.289 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboStarter
[DEBUG] 16:49:03.289 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:03.289 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboStarter'<class org.nutz.boot.starter.dubbo.DubboStarter>
[DEBUG] 16:49:03.290 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboStarter' to [app] 
[DEBUG] 16:49:03.290 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.dubbo.DubboStarter without AOP
[DEBUG] 16:49:03.293 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutFilterStarter'<class org.nutz.boot.starter.nutz.mvc.NutFilterStarter>
[DEBUG] 16:49:03.293 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=nutFilterStarter
[DEBUG] 16:49:03.293 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:03.293 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'nutFilterStarter'<class org.nutz.boot.starter.nutz.mvc.NutFilterStarter>
[DEBUG] 16:49:03.293 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nutFilterStarter' to [app] 
[DEBUG] 16:49:03.293 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.nutz.mvc.NutFilterStarter without AOP
[DEBUG] 16:49:03.299 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:49:03.299 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'appContext'<class org.nutz.boot.AppContext>
[DEBUG] 16:49:03.299 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'whaleFilterStarter'<class org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter>
[DEBUG] 16:49:03.299 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=whaleFilterStarter
[DEBUG] 16:49:03.299 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(whaleFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:03.299 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'whaleFilterStarter'<class org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter>
[DEBUG] 16:49:03.299 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'whaleFilterStarter' to [app] 
[DEBUG] 16:49:03.300 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.nutz.mvc.WhaleFilterStarter without AOP
[DEBUG] 16:49:03.304 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:49:03.305 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jettyStarter'<class org.nutz.boot.starter.jetty.JettyStarter>
[DEBUG] 16:49:03.305 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=jettyStarter
[DEBUG] 16:49:03.305 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jettyStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:03.305 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'jettyStarter'<class org.nutz.boot.starter.jetty.JettyStarter>
[DEBUG] 16:49:03.305 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'jettyStarter' to [app] 
[DEBUG] 16:49:03.305 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jetty.JettyStarter without AOP
[DEBUG] 16:49:03.317 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:49:03.317 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<class org.nutz.boot.starter.jdbc.DataSourceStarter>
[DEBUG] 16:49:03.318 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dataSourceStarter
[DEBUG] 16:49:03.318 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSourceStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:03.318 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dataSourceStarter'<class org.nutz.boot.starter.jdbc.DataSourceStarter>
[DEBUG] 16:49:03.318 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dataSourceStarter' to [app] 
[DEBUG] 16:49:03.318 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DataSourceStarter without AOP
[DEBUG] 16:49:03.324 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:49:03.324 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatFilterStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter>
[DEBUG] 16:49:03.324 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidWebStatFilterStarter
[DEBUG] 16:49:03.324 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:03.324 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidWebStatFilterStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter>
[DEBUG] 16:49:03.324 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidWebStatFilterStarter' to [app] 
[DEBUG] 16:49:03.325 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DruidWebStatFilterStarter without AOP
[DEBUG] 16:49:03.328 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:49:03.328 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatServletStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter>
[DEBUG] 16:49:03.328 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidWebStatServletStarter
[DEBUG] 16:49:03.328 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatServletStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:03.328 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidWebStatServletStarter'<class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter>
[DEBUG] 16:49:03.329 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidWebStatServletStarter' to [app] 
[DEBUG] 16:49:03.329 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.jdbc.DruidWebStatServletStarter without AOP
[DEBUG] 16:49:03.332 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[INFO ] 16:49:03.356 org.eclipse.jetty.util.log.Log.initialized(Log.java:193) - Logging initialized @4579ms to org.eclipse.jetty.util.log.Slf4jLog
[DEBUG] 16:49:03.700 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nbServletContextListener'<class org.nutz.boot.starter.servlet3.NbServletContextListener>
[DEBUG] 16:49:03.700 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=nbServletContextListener
[DEBUG] 16:49:03.701 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nbServletContextListener) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:03.701 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'nbServletContextListener'<class org.nutz.boot.starter.servlet3.NbServletContextListener>
[DEBUG] 16:49:03.701 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nbServletContextListener' to [app] 
[DEBUG] 16:49:03.701 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.boot.starter.servlet3.NbServletContextListener without AOP
[DEBUG] 16:49:03.705 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'appContext'<class org.nutz.boot.AppContext>
[DEBUG] 16:49:03.996 org.nutz.resource.Scans.scan(Scans.java:280) - Found 111 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:49:04.000 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboStarter'<interface org.nutz.boot.starter.ServerFace>
[DEBUG] 16:49:04.000 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jettyStarter'<interface org.nutz.boot.starter.ServerFace>
[DEBUG] 16:49:04.001 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboManager'<class org.nutz.integration.dubbo.DubboManager>
[DEBUG] 16:49:04.001 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboManager
[DEBUG] 16:49:04.001 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboManager) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:04.001 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboManager'<class org.nutz.integration.dubbo.DubboManager>
[DEBUG] 16:49:04.001 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboManager' to [app] 
[DEBUG] 16:49:04.001 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.DubboManager without AOP
[DEBUG] 16:49:04.007 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:49:04.007 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubbo_iobjs
[DEBUG] 16:49:04.008 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubbo_iobjs) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:04.008 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubbo_iobjs'<>
[DEBUG] 16:49:04.010 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubbo_iobjs' to [app] 
[DEBUG] 16:49:04.013 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class java.util.HashMap without AOP
[DEBUG] 16:49:04.013 org.nutz.integration.dubbo.DubboManager.init(DubboManager.java:31) - dubbo obj count=6
[DEBUG] 16:49:04.014 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboAnnotationBean'<class org.nutz.integration.dubbo.AnnotationBean>
[DEBUG] 16:49:04.014 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboAnnotationBean
[DEBUG] 16:49:04.014 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboAnnotationBean) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:04.014 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboAnnotationBean'<class org.nutz.integration.dubbo.AnnotationBean>
[DEBUG] 16:49:04.014 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboAnnotationBean' to [app] 
[DEBUG] 16:49:04.015 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.AnnotationBean without AOP
[DEBUG] 16:49:04.016 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:49:04.035 org.nutz.resource.Scans.scan(Scans.java:280) - Found 111 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:49:04.140 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Protocol$Adaptive implements com.alibaba.dubbo.rpc.Protocol {
public void destroy() {throw new UnsupportedOperationException("method public abstract void com.alibaba.dubbo.rpc.Protocol.destroy() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
}
public int getDefaultPort() {throw new UnsupportedOperationException("method public abstract int com.alibaba.dubbo.rpc.Protocol.getDefaultPort() of interface com.alibaba.dubbo.rpc.Protocol is not adaptive method!");
}
public com.alibaba.dubbo.rpc.Invoker refer(java.lang.Class arg0, com.alibaba.dubbo.common.URL arg1) throws com.alibaba.dubbo.rpc.RpcException {
if (arg1 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg1;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class).getExtension(extName);
return extension.refer(arg0, arg1);
}
public com.alibaba.dubbo.rpc.Exporter export(com.alibaba.dubbo.rpc.Invoker arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.Protocol) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.Protocol extension = (com.alibaba.dubbo.rpc.Protocol)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.Protocol.class).getExtension(extName);
return extension.export(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:04.272 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Cluster$Adaptive implements com.alibaba.dubbo.rpc.cluster.Cluster {
public com.alibaba.dubbo.rpc.Invoker join(com.alibaba.dubbo.rpc.cluster.Directory arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.cluster.Directory argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.cluster.Directory argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = url.getParameter("cluster", "failover");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.Cluster) name from url(" + url.toString() + ") use keys([cluster])");
com.alibaba.dubbo.rpc.cluster.Cluster extension = (com.alibaba.dubbo.rpc.cluster.Cluster)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.Cluster.class).getExtension(extName);
return extension.join(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:04.284 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ProxyFactory$Adaptive implements com.alibaba.dubbo.rpc.ProxyFactory {
public com.alibaba.dubbo.rpc.Invoker getInvoker(java.lang.Object arg0, java.lang.Class arg1, com.alibaba.dubbo.common.URL arg2) throws com.alibaba.dubbo.rpc.RpcException {
if (arg2 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg2;
String extName = url.getParameter("proxy", "javassist");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.ProxyFactory) name from url(" + url.toString() + ") use keys([proxy])");
com.alibaba.dubbo.rpc.ProxyFactory extension = (com.alibaba.dubbo.rpc.ProxyFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.ProxyFactory.class).getExtension(extName);
return extension.getInvoker(arg0, arg1, arg2);
}
public java.lang.Object getProxy(com.alibaba.dubbo.rpc.Invoker arg0) throws com.alibaba.dubbo.rpc.RpcException {
if (arg0 == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument == null");
if (arg0.getUrl() == null) throw new IllegalArgumentException("com.alibaba.dubbo.rpc.Invoker argument getUrl() == null");com.alibaba.dubbo.common.URL url = arg0.getUrl();
String extName = url.getParameter("proxy", "javassist");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.ProxyFactory) name from url(" + url.toString() + ") use keys([proxy])");
com.alibaba.dubbo.rpc.ProxyFactory extension = (com.alibaba.dubbo.rpc.ProxyFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.ProxyFactory.class).getExtension(extName);
return extension.getProxy(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:04.307 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:04.307 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:04.307 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:04.307 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:04.308 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:04.308 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:04.308 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:04.308 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@848958019
[DEBUG] 16:49:04.308 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@848958019
[DEBUG] 16:49:04.308 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@848958019
[DEBUG] 16:49:04.308 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:04.308 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:04.308 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:49:04.309 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:04.309 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:04.309 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:04.309 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:04.309 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:04.309 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestSignController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:04.309 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:04.309 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:04.309 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsLinkServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl>
[DEBUG] 16:49:04.309 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsLinkServiceImpl
[DEBUG] 16:49:04.309 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:04.310 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsLinkServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl>
[DEBUG] 16:49:04.310 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsLinkServiceImpl' to [app] 
[DEBUG] 16:49:04.310 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:04.310 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dao
[DEBUG] 16:49:04.310 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dao) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:04.310 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dao'<>
[DEBUG] 16:49:04.310 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dao' to [app] 
[DEBUG] 16:49:04.310 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:49:04.310 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dataSource
[DEBUG] 16:49:04.311 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:04.311 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:49:04.311 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dataSource' to [app] 
[DEBUG] 16:49:04.311 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<>
[DEBUG] 16:49:04.313 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidDataSource'<interface javax.sql.DataSource>
[DEBUG] 16:49:04.313 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=druidDataSource
[DEBUG] 16:49:04.313 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:04.314 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'druidDataSource'<interface javax.sql.DataSource>
[DEBUG] 16:49:04.314 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'druidDataSource' to [app] 
[DEBUG] 16:49:04.314 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSourceStarter'<>
[DEBUG] 16:49:04.461 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:49:04.461 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=sqlManager
[DEBUG] 16:49:04.461 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sqlManager) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:04.461 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:49:04.461 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'sqlManager' to [app] 
[DEBUG] 16:49:04.461 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<>
[DEBUG] 16:49:04.471 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.dao.impl.NutDao without AOP
[DEBUG] 16:49:04.471 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dataSource'<interface javax.sql.DataSource>
[DEBUG] 16:49:04.471 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'sqlManager'<interface org.nutz.dao.SqlManager>
[DEBUG] 16:49:04.471 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutDaoStarter'<>
[DEBUG] 16:49:04.638 org.nutz.dao.jdbc.Jdbcs.<clinit>(Jdbcs.java:93) - Jdbcs init complete
[INFO ] 16:49:04.638 org.nutz.dao.jdbc.Jdbcs.getExpert(Jdbcs.java:106) - Get Connection from DataSource for JdbcExpert, if you lock at here, check your database server and configure
[INFO ] 16:49:04.816 com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:930) - {dataSource-1} inited
[DEBUG] 16:49:05.173 org.nutz.dao.impl.DaoSupport.setDataSource(DaoSupport.java:188) - select expert : org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert
[DEBUG] 16:49:05.177 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:199) - JDBC Driver --> mysql-connector-java-5.1.46 ( Revision: 9cc87a48e75c2d2e87c1a293b2862ce651cb256e )
[DEBUG] 16:49:05.178 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:200) - JDBC Name   --> MySQL Connector Java
[DEBUG] 16:49:05.178 org.nutz.dao.impl.DaoSupport$1.invoke(DaoSupport.java:202) - JDBC URL    --> jdbc:mysql://119.23.144.5:3306/nb_boot??useUnicode=true&characterEncoding=utf8&useSSL=false
[DEBUG] 16:49:05.205 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_client=utf8
[DEBUG] 16:49:05.206 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_connection=utf8
[DEBUG] 16:49:05.206 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_database=latin1
[DEBUG] 16:49:05.206 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_filesystem=binary
[DEBUG] 16:49:05.206 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_results=
[DEBUG] 16:49:05.206 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_server=latin1
[DEBUG] 16:49:05.206 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_set_system=utf8
[DEBUG] 16:49:05.206 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:212) - Mysql : character_sets_dir=/usr/share/mysql/charsets/
[DEBUG] 16:49:05.217 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:219) - Mysql : binlog_format=STATEMENT
[DEBUG] 16:49:05.227 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:226) - Mysql : database=nb_boot
[DEBUG] 16:49:05.237 org.nutz.dao.impl.jdbc.mysql.MysqlJdbcExpert.checkDataSource(MysqlJdbcExpert.java:232) - Mysql : user=nutz_boot@113.77.192.240
[DEBUG] 16:49:05.264 org.nutz.dao.impl.DaoSupport.setDataSource(DaoSupport.java:221) - Database info --> MYSQL:[MySQL - 5.6.36]
[DEBUG] 16:49:05.269 org.nutz.resource.Scans.scan(Scans.java:280) - Found 0 resource by src( sqls/ ) , regex( .(sql|sqlx|sqls)$ )
[DEBUG] 16:49:05.269 org.nutz.dao.impl.DaoSupport.setSqlManager(DaoSupport.java:121) - SqlManager Sql count=0
[DEBUG] 16:49:05.270 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.modules.services.impl.CmsLinkServiceImpl without AOP
[DEBUG] 16:49:05.271 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:05.321 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_link
[DEBUG] 16:49:05.324 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.324 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.325 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.325 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.325 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.325 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.325 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.326 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@848958019
[DEBUG] 16:49:05.326 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@848958019
[DEBUG] 16:49:05.326 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@848958019
[DEBUG] 16:49:05.327 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:05.328 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:05.328 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:49:05.328 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestSignController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.329 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.331 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.331 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(tokenUtil) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.331 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.331 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsLinkClassServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl>
[DEBUG] 16:49:05.331 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsLinkClassServiceImpl
[DEBUG] 16:49:05.331 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.331 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsLinkClassServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl>
[DEBUG] 16:49:05.331 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsLinkClassServiceImpl' to [app] 
[DEBUG] 16:49:05.331 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:05.332 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.cms.modules.services.impl.CmsLinkClassServiceImpl without AOP
[DEBUG] 16:49:05.332 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:05.334 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_link_class
[DEBUG] 16:49:05.335 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.335 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.335 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.335 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.335 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.335 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@848958019
[DEBUG] 16:49:05.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@848958019
[DEBUG] 16:49:05.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@848958019
[DEBUG] 16:49:05.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:05.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:05.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:49:05.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.336 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestSignController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.337 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsSiteServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl>
[DEBUG] 16:49:05.337 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsSiteServiceImpl
[DEBUG] 16:49:05.337 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.338 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsSiteServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsSiteServiceImpl>
[DEBUG] 16:49:05.338 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsSiteServiceImpl' to [app] 
[DEBUG] 16:49:05.338 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:05.338 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:49:05.338 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheResultInterceptor
[DEBUG] 16:49:05.339 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheResultInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:49:05.339 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:49:05.339 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheResultInterceptor' to [app] 
[DEBUG] 16:49:05.340 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[DEBUG] 16:49:05.341 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:49:05.342 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheUpdateInterceptor
[DEBUG] 16:49:05.342 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheUpdateInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:49:05.342 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:49:05.342 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheUpdateInterceptor' to [app] 
[DEBUG] 16:49:05.343 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:49:05.343 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheRemoveEntryInterceptor
[DEBUG] 16:49:05.343 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheRemoveEntryInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:49:05.343 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:49:05.343 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheRemoveEntryInterceptor' to [app] 
[DEBUG] 16:49:05.344 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:49:05.344 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=wkcacheRemoveAllInterceptor
[DEBUG] 16:49:05.344 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(wkcacheRemoveAllInterceptor) in AnnotationIocLoader(packages=[org.nutz.plugins.wkcache])
[DEBUG] 16:49:05.344 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:49:05.344 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'wkcacheRemoveAllInterceptor' to [app] 
[DEBUG] 16:49:05.353 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:05.356 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_site
[DEBUG] 16:49:05.356 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.357 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.357 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.357 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.357 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.357 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.357 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.357 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@848958019
[DEBUG] 16:49:05.357 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@848958019
[DEBUG] 16:49:05.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@848958019
[DEBUG] 16:49:05.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:05.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:05.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:49:05.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.358 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsTestServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl>
[DEBUG] 16:49:05.358 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsTestServiceImpl
[DEBUG] 16:49:05.358 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.359 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsTestServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl>
[DEBUG] 16:49:05.359 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsTestServiceImpl' to [app] 
[DEBUG] 16:49:05.359 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:05.367 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:49:05.367 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=txREAD_COMMITTED
[DEBUG] 16:49:05.367 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:05.368 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:49:05.368 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'txREAD_COMMITTED' to [app] 
[DEBUG] 16:49:05.373 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:05.377 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_test
[DEBUG] 16:49:05.378 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'redisService'<class org.nutz.integration.jedis.RedisService>
[DEBUG] 16:49:05.378 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=redisService
[DEBUG] 16:49:05.378 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisService) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:49:05.378 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'redisService'<class org.nutz.integration.jedis.RedisService>
[DEBUG] 16:49:05.378 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'redisService' to [app] 
[DEBUG] 16:49:05.403 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.jedis.RedisService without AOP
[DEBUG] 16:49:05.637 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'jedisAgent'<>
[DEBUG] 16:49:05.638 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=jedisAgent
[DEBUG] 16:49:05.638 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jedisAgent) in JsonLoader(paths=[org/nutz/integration/jedis/jedis.js])
[DEBUG] 16:49:05.638 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'jedisAgent'<>
[DEBUG] 16:49:05.638 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'jedisAgent' to [app] 
[DEBUG] 16:49:05.638 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.jedis.JedisAgent without AOP
[DEBUG] 16:49:05.644 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[DEBUG] 16:49:05.644 org.nutz.ioc.val.ReferTypeValue.get(ReferTypeValue.java:64) - name=memberService not found, search for type=cn.wizzer.app.member.modules.services.MemberService
[DEBUG] 16:49:05.644 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.644 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.644 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.644 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@848958019
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@848958019
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@848958019
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.645 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestSignController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(tokenUtil) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.646 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSourceStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(whaleFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sqlManager) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jettyServer) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidWebStatServletStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(daoCacheSerializer) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(daoCacheInterceptor) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.647 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nbServletContextListener) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dao) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(whaleFilter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutFilter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(jettyStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutFilterStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutDaoStarter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(druidDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(hikariDataSource) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(stnrpa5d2ogtoppkej17m45ejk) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(tbcltvac4iguhrftp7vmk3chf0) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(o0cp52ipfcj2oo5ic9ulfdss7h) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.648 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(2440gpvbd2h1or72ktb7acvqke) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.649 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRegistryConfig) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.649 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(0upo2hnq9oibhp5gclmdnp5hig) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.649 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(plol02t2mqh7bre4nfjjk67s19) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.649 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboAnnotationBean) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.649 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(7udvib217chiupfn25fhsf7536) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.649 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '7udvib217chiupfn25fhsf7536'<interface cn.wizzer.app.member.modules.services.MemberService>
[DEBUG] 16:49:05.649 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=7udvib217chiupfn25fhsf7536
[DEBUG] 16:49:05.649 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(7udvib217chiupfn25fhsf7536) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.649 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'7udvib217chiupfn25fhsf7536'<interface cn.wizzer.app.member.modules.services.MemberService>
[DEBUG] 16:49:05.649 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '7udvib217chiupfn25fhsf7536' to [app] 
[DEBUG] 16:49:05.650 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'uiia66ggd0jjgrkcd6ph4iknmt'<>
[DEBUG] 16:49:05.650 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=uiia66ggd0jjgrkcd6ph4iknmt
[DEBUG] 16:49:05.650 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(uiia66ggd0jjgrkcd6ph4iknmt) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.650 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'uiia66ggd0jjgrkcd6ph4iknmt'<>
[DEBUG] 16:49:05.650 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'uiia66ggd0jjgrkcd6ph4iknmt' to [app] 
[DEBUG] 16:49:05.652 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ReferenceBean without AOP
[DEBUG] 16:49:05.653 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:49:05.703 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:49:05.703 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboApplicationConfig
[DEBUG] 16:49:05.703 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboApplicationConfig) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.703 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:49:05.704 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboApplicationConfig' to [app] 
[DEBUG] 16:49:05.704 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.ApplicationConfig without AOP
[DEBUG] 16:49:05.705 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:49:05.705 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboRegistryConfig
[DEBUG] 16:49:05.705 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRegistryConfig) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:05.705 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:49:05.705 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboRegistryConfig' to [app] 
[DEBUG] 16:49:05.706 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.RegistryConfig without AOP
[DEBUG] 16:49:05.812 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.registry;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class RegistryFactory$Adaptive implements com.alibaba.dubbo.registry.RegistryFactory {
public com.alibaba.dubbo.registry.Registry getRegistry(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.registry.RegistryFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.registry.RegistryFactory extension = (com.alibaba.dubbo.registry.RegistryFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.registry.RegistryFactory.class).getExtension(extName);
return extension.getRegistry(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:05.823 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting.zookeeper;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ZookeeperTransporter$Adaptive implements com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter {
public com.alibaba.dubbo.remoting.zookeeper.ZookeeperClient connect(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("client", url.getParameter("transporter", "curator"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter) name from url(" + url.toString() + ") use keys([client, transporter])");
com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter extension = (com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.zookeeper.ZookeeperTransporter.class).getExtension(extName);
return extension.connect(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:05.845 com.alibaba.dubbo.registry.support.AbstractRegistry.loadProperties(AbstractRegistry.java:200) -  [DUBBO] Load registry store file /Users/haigo/.dubbo/dubbo-registry-wk-nb-web-api-119.23.144.5:2181.cache, data: {cn.wizzer.app.cms.modules.services.CmsSiteService=empty://192.168.3.8:16622/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61875&side=provider&timestamp=1533803918555, cn.wizzer.app.cms.modules.services.CmsLinkService=empty://192.168.3.8:16622/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61875&side=provider&timestamp=1533803918937, cn.wizzer.app.cms.modules.services.CmsLinkClassService=empty://192.168.3.8:16622/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61875&side=provider&timestamp=1533803918649, cn.wizzer.app.cms.modules.services.CmsArticleService=empty://192.168.3.8:16622/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61875&side=provider&timestamp=1533803918857, cn.wizzer.app.cms.modules.services.CmsChannelService=empty://192.168.3.8:16622/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,data,insertRelation,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61875&side=provider&timestamp=1533803918758, cn.wizzer.app.cms.modules.services.CmsTestService=empty://192.168.3.8:16622/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61875&side=provider&timestamp=1533803918321, cn.wizzer.app.member.modules.services.MemberService=empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61875&side=consumer&timestamp=1533803916737 empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61875&side=consumer&timestamp=1533803916737 empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=providers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,data,insertRelation,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61875&side=consumer&timestamp=1533803916737}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:05.905 org.apache.curator.utils.Compatibility.<clinit>(Compatibility.java:41) - Running in ZooKeeper 3.4.x compatibility mode
[INFO ] 16:49:05.931 org.apache.curator.framework.imps.CuratorFrameworkImpl.start(CuratorFrameworkImpl.java:290) - Starting
[DEBUG] 16:49:05.932 org.apache.curator.CuratorZookeeperClient.start(CuratorZookeeperClient.java:207) - Starting
[DEBUG] 16:49:05.932 org.apache.curator.ConnectionState.start(ConnectionState.java:109) - Starting
[DEBUG] 16:49:05.932 org.apache.curator.ConnectionState.reset(ConnectionState.java:194) - reset
[INFO ] 16:49:06.944 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:zookeeper.version=3.4.8--1, built on 02/06/2016 03:18 GMT
[INFO ] 16:49:06.944 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:host.name=192.168.3.8
[INFO ] 16:49:06.944 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.version=1.8.0_131
[INFO ] 16:49:06.944 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.vendor=Oracle Corporation
[INFO ] 16:49:06.944 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre
[INFO ] 16:49:06.944 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.class.path=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/deploy.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/cldrdata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/dnsns.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jaccess.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/jfxrt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/localedata.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/nashorn.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunec.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/ext/zipfs.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/javaws.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jfxswt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/management-agent.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/plugin.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/ant-javafx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/dt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/javafx-mx.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/jconsole.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/packager.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/sa-jdi.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/tools.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-web-api/target/classes:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-framework/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-dao/2.2-SNAPSHOT/nutzboot-starter-nutz-dao-2.2-20180611.111235-199.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-daocache/1.r.66-SNAPSHOT/nutz-plugins-daocache-1.r.66-20180614.031905-54.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-model/target/classes:/Users/haigo/.m2/repository/cn/wizzer/app/wk-code-generator-nb/5.0.1-SNAPSHOT/wk-code-generator-nb-5.0.1-20180409.075514-1.jar:/Users/haigo/.m2/repository/org/atteo/evo-inflector/1.0.1/evo-inflector-1.0.1.jar:/Users/haigo/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/haigo/.m2/repository/org/apache/velocity/velocity/1.7/velocity-1.7.jar:/Users/haigo/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar:/Users/haigo/.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-common/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-core/2.2-SNAPSHOT/nutzboot-core-2.2-20180611.111222-201.jar:/Users/haigo/.m2/repository/org/nutz/nutz/1.r.66-SNAPSHOT/nutz-1.r.66-20180611.015908-74.jar:/Users/haigo/.m2/repository/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-dubbo/2.2-SNAPSHOT/nutzboot-starter-dubbo-2.2-20180611.111309-188.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-dubbo/1.r.66-SNAPSHOT/nutz-integration-dubbo-1.r.66-20180614.031821-63.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-framework/4.0.1/curator-framework-4.0.1.jar:/Users/haigo/.m2/repository/org/apache/curator/curator-client/4.0.1/curator-client-4.0.1.jar:/Users/haigo/.m2/repository/com/google/guava/guava/20.0/guava-20.0.jar:/Users/haigo/.m2/repository/com/alibaba/dubbo/2.6.2/dubbo-2.6.2.jar:/Users/haigo/.m2/repository/org/javassist/javassist/3.22.0-GA/javassist-3.22.0-GA.jar:/Users/haigo/.m2/repository/org/jboss/netty/netty/3.2.5.Final/netty-3.2.5.Final.jar:/Users/haigo/.m2/repository/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/com/101tec/zkclient/0.10/zkclient-0.10.jar:/Users/haigo/.m2/repository/org/apache/zookeeper/zookeeper/3.4.8/zookeeper-3.4.8.jar:/Users/haigo/.m2/repository/jline/jline/0.9.94/jline-0.9.94.jar:/Users/haigo/.m2/repository/io/netty/netty/3.7.0.Final/netty-3.7.0.Final.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-nutz-mvc/2.2-SNAPSHOT/nutzboot-starter-nutz-mvc-2.2-20180611.111306-187.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jetty/2.2-SNAPSHOT/nutzboot-starter-jetty-2.2-20180611.111230-200.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-servlets/9.4.11.v20180605/jetty-servlets-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-continuation/9.4.11.v20180605/jetty-continuation-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-http/9.4.11.v20180605/jetty-http-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-util/9.4.11.v20180605/jetty-util-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-io/9.4.11.v20180605/jetty-io-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-webapp/9.4.11.v20180605/jetty-webapp-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-xml/9.4.11.v20180605/jetty-xml-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-servlet/9.4.11.v20180605/jetty-servlet-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-security/9.4.11.v20180605/jetty-security-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-server/9.4.11.v20180605/jetty-server-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-server/9.4.11.v20180605/websocket-server-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-common/9.4.11.v20180605/websocket-common-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-api/9.4.11.v20180605/websocket-api-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-client/9.4.11.v20180605/websocket-client-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-client/9.4.11.v20180605/jetty-client-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/websocket-servlet/9.4.11.v20180605/websocket-servlet-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/javax-websocket-server-impl/9.4.11.v20180605/javax-websocket-server-impl-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-annotations/9.4.11.v20180605/jetty-annotations-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/jetty-plus/9.4.11.v20180605/jetty-plus-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-commons/6.1.1/asm-commons-6.1.1.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-tree/6.1.1/asm-tree-6.1.1.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm-analysis/6.1.1/asm-analysis-6.1.1.jar:/Users/haigo/.m2/repository/org/eclipse/jetty/websocket/javax-websocket-client-impl/9.4.11.v20180605/javax-websocket-client-impl-9.4.11.v20180605.jar:/Users/haigo/.m2/repository/javax/websocket/javax.websocket-client-api/1.0/javax.websocket-client-api-1.0.jar:/Users/haigo/.m2/repository/javax/websocket/javax.websocket-api/1.0/javax.websocket-api-1.0.jar:/Users/haigo/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-websocket/1.r.66-SNAPSHOT/nutz-plugins-websocket-1.r.66-20180614.031938-53.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-servlet3/2.2-SNAPSHOT/nutzboot-servlet3-2.2-20180611.111228-44.jar:/Users/haigo/.m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar:/Users/haigo/.m2/repository/org/ow2/asm/asm/6.1.1/asm-6.1.1.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-redis/2.2-SNAPSHOT/nutzboot-starter-redis-2.2-20180611.111244-192.jar:/Users/haigo/.m2/repository/org/nutz/nutz-integration-jedis/1.r.66-SNAPSHOT/nutz-integration-jedis-1.r.66-20180614.031845-61.jar:/Users/haigo/.m2/repository/redis/clients/jedis/2.9.0/jedis-2.9.0.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar:/Users/haigo/.m2/repository/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-test-junit4/2.2-SNAPSHOT/nutzboot-starter-test-junit4-2.2-20180611.111334-80.jar:/Users/haigo/.m2/repository/io/jsonwebtoken/jjwt/0.9.0/jjwt-0.9.0.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/Users/haigo/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.5/jackson-core-2.9.5.jar:/Users/haigo/.m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar:/Users/haigo/.m2/repository/log4j/log4j/1.2.17/log4j-1.2.17.jar:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-service-cms/target/classes:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-jdbc/2.2-SNAPSHOT/nutzboot-starter-jdbc-2.2-20180611.111224-197.jar:/Users/haigo/.m2/repository/org/nutz/nutzboot-starter-wkcache/2.2-SNAPSHOT/nutzboot-starter-wkcache-2.2-20180611.111246-191.jar:/Users/haigo/.m2/repository/org/nutz/nutz-plugins-wkcache/1.r.66-SNAPSHOT/nutz-plugins-wkcache-1.r.66-20180614.031939-53.jar:/Users/haigo/.m2/repository/com/alibaba/druid/1.1.10/druid-1.1.10.jar:/Users/haigo/.m2/repository/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.jar:/Users/haigo/.m2/repository/org/springframework/spring-core/4.3.16.RELEASE/spring-core-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/commons-logging/commons-logging/1.2/commons-logging-1.2.jar:/Users/haigo/.m2/repository/org/springframework/spring-context/4.3.16.RELEASE/spring-context-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-aop/4.3.16.RELEASE/spring-aop-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-beans/4.3.16.RELEASE/spring-beans-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-expression/4.3.16.RELEASE/spring-expression-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-tx/4.3.16.RELEASE/spring-tx-4.3.16.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-jms/4.1.8.RELEASE/spring-jms-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/springframework/spring-messaging/4.1.8.RELEASE/spring-messaging-4.1.8.RELEASE.jar:/Users/haigo/.m2/repository/org/apache/xbean/xbean-spring/3.16/xbean-spring-3.16.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-core/5.7.0/activemq-core-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1.1/geronimo-jms_1.1_spec-1.1.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/kahadb/5.7.0/kahadb-5.7.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/protobuf/activemq-protobuf/1.1/activemq-protobuf-1.1.jar:/Users/haigo/.m2/repository/org/fusesource/mqtt-client/mqtt-client/1.3/mqtt-client-1.3.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch-transport/1.11/hawtdispatch-transport-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtdispatch/hawtdispatch/1.11/hawtdispatch-1.11.jar:/Users/haigo/.m2/repository/org/fusesource/hawtbuf/hawtbuf/1.9/hawtbuf-1.9.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.1_spec/1.0.1/geronimo-j2ee-management_1.1_spec-1.0.1.jar:/Users/haigo/.m2/repository/commons-net/commons-net/3.1/commons-net-3.1.jar:/Users/haigo/.m2/repository/org/jasypt/jasypt/1.9.0/jasypt-1.9.0.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-pool/5.12.1/activemq-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-jms-pool/5.12.1/activemq-jms-pool-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/activemq/activemq-client/5.12.1/activemq-client-5.12.1.jar:/Users/haigo/.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.0.1/geronimo-jta_1.0.1B_spec-1.0.1.jar:/Applications/IntelliJ IDEA 15.app/Contents/lib/idea_rt.jar
[INFO ] 16:49:06.945 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.library.path=/Users/haigo/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
[INFO ] 16:49:06.945 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.io.tmpdir=/var/folders/f7/j879sdwj0fncvdxrsmtrjk300000gn/T/
[INFO ] 16:49:06.945 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:java.compiler=<NA>
[INFO ] 16:49:06.945 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.name=Mac OS X
[INFO ] 16:49:06.945 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.arch=x86_64
[INFO ] 16:49:06.945 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:os.version=10.12.6
[INFO ] 16:49:06.945 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.name=haigo
[INFO ] 16:49:06.945 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.home=/Users/haigo
[INFO ] 16:49:06.945 org.apache.zookeeper.Environment.logEnv(Environment.java:100) - Client environment:user.dir=/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo
[INFO ] 16:49:06.946 org.apache.zookeeper.ZooKeeper.<init>(ZooKeeper.java:438) - Initiating client connection, connectString=119.23.144.5:2181 sessionTimeout=60000 watcher=org.apache.curator.ConnectionState@2eb917d0
[DEBUG] 16:49:06.949 org.apache.zookeeper.ClientCnxn.<clinit>(ClientCnxn.java:117) - zookeeper.disableAutoWatchReset is false
[INFO ] 16:49:06.965 org.apache.zookeeper.ClientCnxn$SendThread.logStartConnect(ClientCnxn.java:1032) - Opening socket connection to server 119.23.144.5/119.23.144.5:2181. Will not attempt to authenticate using SASL (unknown error)
[INFO ] 16:49:06.966 org.apache.curator.framework.imps.CuratorFrameworkImpl.start(CuratorFrameworkImpl.java:332) - Default schema
[DEBUG] 16:49:06.970 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class RouterFactory$Adaptive implements com.alibaba.dubbo.rpc.cluster.RouterFactory {
public com.alibaba.dubbo.rpc.cluster.Router getRouter(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getProtocol();
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.RouterFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.cluster.RouterFactory extension = (com.alibaba.dubbo.rpc.cluster.RouterFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.RouterFactory.class).getExtension(extName);
return extension.getRouter(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:06.977 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.rpc.cluster;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ConfiguratorFactory$Adaptive implements com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory {
public com.alibaba.dubbo.rpc.cluster.Configurator getConfigurator(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getProtocol();
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory extension = (com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory.class).getExtension(extName);
return extension.getConfigurator(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:06.983 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=consumers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=consumer&timestamp=1533804545709, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:06.991 org.apache.zookeeper.ClientCnxn$SendThread.primeConnection(ClientCnxn.java:876) - Socket connection established to 119.23.144.5/119.23.144.5:2181, initiating session
[DEBUG] 16:49:06.992 org.apache.zookeeper.ClientCnxn$SendThread.primeConnection(ClientCnxn.java:949) - Session establishment request sent on 119.23.144.5/119.23.144.5:2181
[INFO ] 16:49:07.008 org.apache.zookeeper.ClientCnxn$SendThread.onConnected(ClientCnxn.java:1299) - Session establishment complete on server 119.23.144.5/119.23.144.5:2181, sessionid = 0x1003a1f71460043, negotiated timeout = 40000
[DEBUG] 16:49:07.011 org.apache.curator.ConnectionState.process(ConnectionState.java:174) - Negotiated session timeout: 40000
[INFO ] 16:49:07.014 org.apache.curator.framework.state.ConnectionStateManager.postState(ConnectionStateManager.java:237) - State change: CONNECTED
[DEBUG] 16:49:07.014 org.apache.curator.framework.imps.CuratorFrameworkImpl.unSleepBackgroundOperations(CuratorFrameworkImpl.java:1004) - Clearing sleep for 0 operations
[DEBUG] 16:49:07.031 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 1,3  replyHeader:: 1,5665,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers,F  response:: s{2076,2076,1528451666921,1528451666921,0,263,0,0,0,1,5649} 
[DEBUG] 16:49:07.054 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 2,1  replyHeader:: 2,5666,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers/consumer%253A%252F%252F192.168.3.8%252Fcn.wizzer.app.member.modules.services.MemberService%253Fapplication%253Dwk-nb-web-api%2526category%253Dconsumers%2526check%253Dfalse%2526dubbo%253D2.6.2%2526interface%253Dcn.wizzer.app.member.modules.services.MemberService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dconsumer%2526timestamp%253D1533804545709,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/consumers/consumer%253A%252F%252F192.168.3.8%252Fcn.wizzer.app.member.modules.services.MemberService%253Fapplication%253Dwk-nb-web-api%2526category%253Dconsumers%2526check%253Dfalse%2526dubbo%253D2.6.2%2526interface%253Dcn.wizzer.app.member.modules.services.MemberService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dconsumer%2526timestamp%253D1533804545709 
[INFO ] 16:49:07.054 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=providers,configurators,routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=consumer&timestamp=1533804545709, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.063 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 3,3  replyHeader:: 3,5666,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:49:07.084 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 4,1  replyHeader:: 4,5667,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/providers,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:49:07.101 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 5,12  replyHeader:: 5,5667,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/providers,T  response:: v{},s{2073,2073,1528451666917,1528451666917,0,108,0,0,0,0,3955} 
[DEBUG] 16:49:07.112 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 6,3  replyHeader:: 6,5667,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:49:07.124 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 7,1  replyHeader:: 7,5668,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:49:07.135 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 8,12  replyHeader:: 8,5668,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/configurators,T  response:: v{},s{2083,2083,1528451666930,1528451666930,0,0,0,0,0,0,2083} 
[DEBUG] 16:49:07.147 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 9,3  replyHeader:: 9,5668,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService,F  response:: s{2070,2070,1528451666911,1528451666911,0,4,0,0,14,4,2083} 
[DEBUG] 16:49:07.158 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 10,1  replyHeader:: 10,5669,-110  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/routers,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:49:07.167 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 11,12  replyHeader:: 11,5669,0  request:: '/dubbo/cn.wizzer.app.member.modules.services.MemberService/routers,T  response:: v{},s{2080,2080,1528451666925,1528451666925,0,0,0,0,0,0,2080} 
[INFO ] 16:49:07.167 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url consumer://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=providers,configurators,routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=consumer&timestamp=1533804545709, urls: [empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=providers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=consumer&timestamp=1533804545709, empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=consumer&timestamp=1533804545709, empty://192.168.3.8/cn.wizzer.app.member.modules.services.MemberService?application=wk-nb-web-api&category=routers&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=consumer&timestamp=1533804545709], dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.171 com.alibaba.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:425) -  [DUBBO] Refer dubbo service cn.wizzer.app.member.modules.services.MemberService from url zookeeper://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&check=false&dubbo=2.6.2&interface=cn.wizzer.app.member.modules.services.MemberService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&register.ip=192.168.3.8&side=consumer&timestamp=1533804545709, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.195 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.195 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.195 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.195 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.196 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.196 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.196 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.196 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@848958019
[DEBUG] 16:49:07.196 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@848958019
[DEBUG] 16:49:07.196 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@848958019
[DEBUG] 16:49:07.196 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:07.196 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:07.197 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:49:07.197 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.197 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.197 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsChannelServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl>
[DEBUG] 16:49:07.197 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsChannelServiceImpl
[DEBUG] 16:49:07.197 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.197 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsChannelServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsChannelServiceImpl>
[DEBUG] 16:49:07.197 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsChannelServiceImpl' to [app] 
[DEBUG] 16:49:07.197 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:07.197 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:49:07.197 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:49:07.198 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:49:07.198 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:49:07.198 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:49:07.198 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'txREAD_COMMITTED'<interface org.nutz.aop.MethodInterceptor>
[DEBUG] 16:49:07.200 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:07.204 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_channel
[DEBUG] 16:49:07.205 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.205 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareQueue) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.205 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.205 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(consumerSessionAwareMessageListener) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.205 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(sessionAwareListenerContainer) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.205 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREPEATABLE_READ) in TransIocLoader@848958019
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txSERIALIZABLE) in TransIocLoader@848958019
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txNONE) in TransIocLoader@848958019
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_UNCOMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(txREAD_COMMITTED) in TransIocLoader@848958019
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject($aop_async) in AsyncAopIocLoader@736920911
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsChannelServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestTokenController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiMemberController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsTestServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(apiTestSignController) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsSiteServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.206 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.207 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(tokenUtil) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.207 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsLinkClassServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.207 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboRpcCmsMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.207 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(redisIdGenerator) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.207 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.207 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'cmsArticleServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl>
[DEBUG] 16:49:07.207 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=cmsArticleServiceImpl
[DEBUG] 16:49:07.207 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(cmsArticleServiceImpl) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:07.207 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'cmsArticleServiceImpl'<class cn.wizzer.app.cms.modules.services.impl.CmsArticleServiceImpl>
[DEBUG] 16:49:07.207 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'cmsArticleServiceImpl' to [app] 
[DEBUG] 16:49:07.207 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:07.207 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheResultInterceptor'<class org.nutz.plugins.wkcache.WkcacheResultInterceptor>
[DEBUG] 16:49:07.207 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheUpdateInterceptor'<class org.nutz.plugins.wkcache.WkcacheUpdateInterceptor>
[DEBUG] 16:49:07.208 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveEntryInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveEntryInterceptor>
[DEBUG] 16:49:07.208 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'wkcacheRemoveAllInterceptor'<class org.nutz.plugins.wkcache.WkcacheRemoveAllInterceptor>
[DEBUG] 16:49:07.209 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dao'<>
[DEBUG] 16:49:07.213 org.nutz.service.EntityService.<init>(EntityService.java:41) - Get TypeParams for self : cn.wizzer.app.cms.modules.models.Cms_article
[DEBUG] 16:49:07.213 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '3hfqdh7m20jc0q82dqqom87rmh'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.213 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=3hfqdh7m20jc0q82dqqom87rmh
[DEBUG] 16:49:07.213 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(3hfqdh7m20jc0q82dqqom87rmh) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:07.214 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'3hfqdh7m20jc0q82dqqom87rmh'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.214 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '3hfqdh7m20jc0q82dqqom87rmh' to [app] 
[DEBUG] 16:49:07.214 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:49:07.216 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:49:07.241 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:49:07.241 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:49:07.241 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[DEBUG] 16:49:07.241 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=dubboPrototeConfig
[DEBUG] 16:49:07.241 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(dubboPrototeConfig) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:07.241 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[DEBUG] 16:49:07.241 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'dubboPrototeConfig' to [app] 
[DEBUG] 16:49:07.242 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class com.alibaba.dubbo.config.ProtocolConfig without AOP
[DEBUG] 16:49:07.306 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.cache;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class CacheFactory$Adaptive implements com.alibaba.dubbo.cache.CacheFactory {
public com.alibaba.dubbo.cache.Cache getCache(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.rpc.Invocation arg1) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
if (arg1 == null) throw new IllegalArgumentException("invocation == null");
String methodName = arg1.getMethodName();
String extName = url.getMethodParameter(methodName, "cache", "lru");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.cache.CacheFactory) name from url(" + url.toString() + ") use keys([cache])");
com.alibaba.dubbo.cache.CacheFactory extension = (com.alibaba.dubbo.cache.CacheFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.cache.CacheFactory.class).getExtension(extName);
return extension.getCache(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.315 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.monitor;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class MonitorFactory$Adaptive implements com.alibaba.dubbo.monitor.MonitorFactory {
public com.alibaba.dubbo.monitor.Monitor getMonitor(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = ( url.getProtocol() == null ? "dubbo" : url.getProtocol() );
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.monitor.MonitorFactory) name from url(" + url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.monitor.MonitorFactory extension = (com.alibaba.dubbo.monitor.MonitorFactory)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.monitor.MonitorFactory.class).getExtension(extName);
return extension.getMonitor(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.323 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.validation;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Validation$Adaptive implements com.alibaba.dubbo.validation.Validation {
public com.alibaba.dubbo.validation.Validator getValidator(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("validation", "jvalidation");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.validation.Validation) name from url(" + url.toString() + ") use keys([validation])");
com.alibaba.dubbo.validation.Validation extension = (com.alibaba.dubbo.validation.Validation)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.validation.Validation.class).getExtension(extName);
return extension.getValidator(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.331 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.331 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService to url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547244, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.331 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsArticleService url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547244 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61893&registry=zookeeper&timestamp=1533804547244, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.345 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Transporter$Adaptive implements com.alibaba.dubbo.remoting.Transporter {
public com.alibaba.dubbo.remoting.Client connect(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.remoting.ChannelHandler arg1) throws com.alibaba.dubbo.remoting.RemotingException {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("client", url.getParameter("transporter", "netty"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Transporter) name from url(" + url.toString() + ") use keys([client, transporter])");
com.alibaba.dubbo.remoting.Transporter extension = (com.alibaba.dubbo.remoting.Transporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Transporter.class).getExtension(extName);
return extension.connect(arg0, arg1);
}
public com.alibaba.dubbo.remoting.Server bind(com.alibaba.dubbo.common.URL arg0, com.alibaba.dubbo.remoting.ChannelHandler arg1) throws com.alibaba.dubbo.remoting.RemotingException {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("server", url.getParameter("transporter", "netty"));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Transporter) name from url(" + url.toString() + ") use keys([server, transporter])");
com.alibaba.dubbo.remoting.Transporter extension = (com.alibaba.dubbo.remoting.Transporter)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Transporter.class).getExtension(extName);
return extension.bind(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.357 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.remoting;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class Dispatcher$Adaptive implements com.alibaba.dubbo.remoting.Dispatcher {
public com.alibaba.dubbo.remoting.ChannelHandler dispatch(com.alibaba.dubbo.remoting.ChannelHandler arg0, com.alibaba.dubbo.common.URL arg1) {
if (arg1 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg1;
String extName = url.getParameter("dispatcher", url.getParameter("dispather", url.getParameter("channel.handler", "all")));
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.remoting.Dispatcher) name from url(" + url.toString() + ") use keys([dispatcher, dispather, channel.handler])");
com.alibaba.dubbo.remoting.Dispatcher extension = (com.alibaba.dubbo.remoting.Dispatcher)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.remoting.Dispatcher.class).getExtension(extName);
return extension.dispatch(arg0, arg1);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.367 com.alibaba.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClassCode(ExtensionLoader.java:941) -  [DUBBO] package com.alibaba.dubbo.common.threadpool;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ThreadPool$Adaptive implements com.alibaba.dubbo.common.threadpool.ThreadPool {
public java.util.concurrent.Executor getExecutor(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null) throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getParameter("threadpool", "fixed");
if(extName == null) throw new IllegalStateException("Fail to get extension(com.alibaba.dubbo.common.threadpool.ThreadPool) name from url(" + url.toString() + ") use keys([threadpool])");
com.alibaba.dubbo.common.threadpool.ThreadPool extension = (com.alibaba.dubbo.common.threadpool.ThreadPool)ExtensionLoader.getExtensionLoader(com.alibaba.dubbo.common.threadpool.ThreadPool.class).getExtension(extName);
return extension.getExecutor(arg0);
}
}, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.404 com.alibaba.dubbo.remoting.transport.netty.NettyHelper$DubboLogger.debug(NettyHelper.java:73) -  [DUBBO] Couldn't determine the NIO constraint level from the system properties; using the safest level (2), dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.437 com.alibaba.dubbo.remoting.transport.AbstractServer.<init>(AbstractServer.java:65) -  [DUBBO] Start NettyServer bind /0.0.0.0:16559, export /192.168.3.8:16559, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.439 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547244, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.448 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 12,3  replyHeader:: 12,5669,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers,F  response:: s{57,57,1528272634291,1528272634291,0,217,0,0,14,1,5657} 
[DEBUG] 16:49:07.468 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 13,1  replyHeader:: 13,5670,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsArticleService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsArticleService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CgetListPage%252CupdateIgnoreNull%252CgetArticle%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547244,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsArticleService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsArticleService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CgetListPage%252CupdateIgnoreNull%252CgetArticle%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547244 
[INFO ] 16:49:07.471 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547244, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.480 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 14,3  replyHeader:: 14,5670,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService,F  response:: s{56,56,1528272634281,1528272634281,0,4,0,0,14,4,829} 
[DEBUG] 16:49:07.490 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 15,1  replyHeader:: 15,5671,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:49:07.498 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 16,12  replyHeader:: 16,5671,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsArticleService/configurators,T  response:: v{},s{59,59,1528272634328,1528272634328,0,0,0,0,14,0,59} 
[INFO ] 16:49:07.498 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547244, urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547244], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.499 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547244], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.499 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547244, override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsArticleService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsArticleService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,getListPage,updateIgnoreNull,getArticle,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547244], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.502 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'stnrpa5d2ogtoppkej17m45ejk'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.502 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=stnrpa5d2ogtoppkej17m45ejk
[DEBUG] 16:49:07.502 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(stnrpa5d2ogtoppkej17m45ejk) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:07.502 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'stnrpa5d2ogtoppkej17m45ejk'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.502 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'stnrpa5d2ogtoppkej17m45ejk' to [app] 
[DEBUG] 16:49:07.502 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:49:07.503 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:49:07.503 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:49:07.503 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:49:07.503 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:49:07.555 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.555 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService to url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547506, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.555 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsLinkService url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547506 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61893&registry=zookeeper&timestamp=1533804547506, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.556 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547506, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.565 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 17,3  replyHeader:: 17,5671,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers,F  response:: s{45,45,1528272618645,1528272618645,0,217,0,0,14,1,5663} 
[DEBUG] 16:49:07.574 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 18,1  replyHeader:: 18,5672,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsLinkService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547506,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsLinkService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547506 
[INFO ] 16:49:07.574 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547506, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.580 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 19,3  replyHeader:: 19,5672,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService,F  response:: s{44,44,1528272618636,1528272618636,0,4,0,0,14,4,973} 
[DEBUG] 16:49:07.590 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 20,1  replyHeader:: 20,5673,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:49:07.598 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 21,12  replyHeader:: 21,5673,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkService/configurators,T  response:: v{},s{47,47,1528272618682,1528272618682,0,0,0,0,14,0,47} 
[INFO ] 16:49:07.598 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547506, urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547506], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.599 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547506], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.599 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547506, override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547506], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.599 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'tbcltvac4iguhrftp7vmk3chf0'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.599 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=tbcltvac4iguhrftp7vmk3chf0
[DEBUG] 16:49:07.599 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(tbcltvac4iguhrftp7vmk3chf0) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:07.599 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'tbcltvac4iguhrftp7vmk3chf0'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.600 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'tbcltvac4iguhrftp7vmk3chf0' to [app] 
[DEBUG] 16:49:07.600 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:49:07.600 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:49:07.601 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:49:07.601 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:49:07.601 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:49:07.646 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.647 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService to url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547603, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.647 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsLinkClassService url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547603 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61893&registry=zookeeper&timestamp=1533804547603, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.647 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547603, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.657 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 22,3  replyHeader:: 22,5673,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers,F  response:: s{53,53,1528272629142,1528272629142,0,217,0,0,14,1,5659} 
[DEBUG] 16:49:07.671 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 23,1  replyHeader:: 23,5674,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsLinkClassService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkClassService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547603,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsLinkClassService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsLinkClassService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547603 
[INFO ] 16:49:07.671 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547603, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.677 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 24,3  replyHeader:: 24,5674,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService,F  response:: s{52,52,1528272629057,1528272629057,0,4,0,0,14,4,949} 
[DEBUG] 16:49:07.687 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 25,1  replyHeader:: 25,5675,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:49:07.693 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 26,12  replyHeader:: 26,5675,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsLinkClassService/configurators,T  response:: v{},s{55,55,1528272629200,1528272629200,0,0,0,0,14,0,55} 
[INFO ] 16:49:07.694 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547603, urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547603], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.694 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547603], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.694 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547603, override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsLinkClassService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsLinkClassService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547603], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.695 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'ov6ismc1gmj1fr7musoi7ajtol'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.695 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=ov6ismc1gmj1fr7musoi7ajtol
[DEBUG] 16:49:07.695 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(ov6ismc1gmj1fr7musoi7ajtol) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:07.695 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'ov6ismc1gmj1fr7musoi7ajtol'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.695 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'ov6ismc1gmj1fr7musoi7ajtol' to [app] 
[DEBUG] 16:49:07.695 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:49:07.695 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:49:07.696 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:49:07.696 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:49:07.696 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:49:07.718 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.718 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService to url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547698, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.718 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsChannelService url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547698 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61893&registry=zookeeper&timestamp=1533804547698, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.719 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547698, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.729 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 27,3  replyHeader:: 27,5675,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers,F  response:: s{41,41,1528272613392,1528272613392,0,215,0,0,14,1,5655} 
[DEBUG] 16:49:07.739 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 28,1  replyHeader:: 28,5676,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsChannelService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsChannelService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetChannel%252ClistChannel%252CgetMaxId%252CgetSubPath%252ChasChannel%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CdeleteAndChild%252Csave%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547698,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsChannelService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsChannelService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetChannel%252ClistChannel%252CgetMaxId%252CgetSubPath%252ChasChannel%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CdeleteAndChild%252Csave%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547698 
[INFO ] 16:49:07.739 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547698, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.747 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 29,3  replyHeader:: 29,5676,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService,F  response:: s{40,40,1528272613381,1528272613381,0,4,0,0,14,4,781} 
[DEBUG] 16:49:07.756 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 30,1  replyHeader:: 30,5677,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:49:07.764 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 31,12  replyHeader:: 31,5677,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsChannelService/configurators,T  response:: v{},s{43,43,1528272613433,1528272613433,0,0,0,0,14,0,43} 
[INFO ] 16:49:07.764 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547698, urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547698], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.764 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547698], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.764 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547698, override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsChannelService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsChannelService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getChannel,listChannel,getMaxId,getSubPath,hasChannel,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,deleteAndChild,save,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547698], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.765 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get '690h7rd1uigqjqtvv21q4ddmqu'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.765 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=690h7rd1uigqjqtvv21q4ddmqu
[DEBUG] 16:49:07.765 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(690h7rd1uigqjqtvv21q4ddmqu) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:07.765 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'690h7rd1uigqjqtvv21q4ddmqu'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.765 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object '690h7rd1uigqjqtvv21q4ddmqu' to [app] 
[DEBUG] 16:49:07.765 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:49:07.766 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:49:07.766 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:49:07.766 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:49:07.766 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:49:07.790 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.790 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService to url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547775, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.790 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsSiteService url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547775 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61893&registry=zookeeper&timestamp=1533804547775, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.791 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547775, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.801 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 32,3  replyHeader:: 32,5677,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers,F  response:: s{49,49,1528272623792,1528272623792,0,217,0,0,14,1,5653} 
[DEBUG] 16:49:07.812 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 33,1  replyHeader:: 33,5678,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsSiteService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsSiteService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CgetSite%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547775,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsSiteService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsSiteService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CclearCache%252CinsertOrUpdate%252Cdao%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252CgetSite%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547775 
[INFO ] 16:49:07.812 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547775, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.820 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 34,3  replyHeader:: 34,5678,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService,F  response:: s{48,48,1528272623776,1528272623776,0,4,0,0,14,4,364} 
[DEBUG] 16:49:07.831 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 35,1  replyHeader:: 35,5679,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:49:07.839 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 36,12  replyHeader:: 36,5679,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsSiteService/configurators,T  response:: v{},s{51,51,1528272623832,1528272623832,0,0,0,0,14,0,51} 
[INFO ] 16:49:07.839 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547775, urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547775], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.839 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547775], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.839 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547775, override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsSiteService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsSiteService&methods=updateWithVersion,insertRelation,data,insertWith,clearCache,insertOrUpdate,dao,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,getSite,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547775], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.840 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'qr1ejr1pnuidvoj6v6r5mh6bdo'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.840 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=qr1ejr1pnuidvoj6v6r5mh6bdo
[DEBUG] 16:49:07.840 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(qr1ejr1pnuidvoj6v6r5mh6bdo) in DubboConfigIocLoader@1086849943
[DEBUG] 16:49:07.840 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'qr1ejr1pnuidvoj6v6r5mh6bdo'<class com.alibaba.dubbo.config.ServiceConfig>
[DEBUG] 16:49:07.840 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'qr1ejr1pnuidvoj6v6r5mh6bdo' to [app] 
[DEBUG] 16:49:07.840 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.integration.dubbo.ServiceBean without AOP
[DEBUG] 16:49:07.841 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubbo_iobjs'<>
[DEBUG] 16:49:07.841 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboApplicationConfig'<class com.alibaba.dubbo.config.ApplicationConfig>
[DEBUG] 16:49:07.841 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboRegistryConfig'<class com.alibaba.dubbo.config.RegistryConfig>
[DEBUG] 16:49:07.842 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'dubboPrototeConfig'<class com.alibaba.dubbo.config.ProtocolConfig>
[INFO ] 16:49:07.860 com.alibaba.dubbo.config.ServiceConfig.exportLocal(ServiceConfig.java:532) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsTestService to local registry, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.860 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:491) -  [DUBBO] Export dubbo service cn.wizzer.app.cms.modules.services.CmsTestService to url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547843, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.860 com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:501) -  [DUBBO] Register dubbo service cn.wizzer.app.cms.modules.services.CmsTestService url dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&bind.ip=192.168.3.8&bind.port=16559&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547843 to registry registry://119.23.144.5:2181/com.alibaba.dubbo.registry.RegistryService?application=wk-nb-web-api&dubbo=2.6.2&pid=61893&registry=zookeeper&timestamp=1533804547843, dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.860 com.alibaba.dubbo.registry.support.AbstractRegistry.register(AbstractRegistry.java:273) -  [DUBBO] Register: dubbo://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547843, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.868 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 37,3  replyHeader:: 37,5679,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers,F  response:: s{2208,2208,1528513630497,1528513630497,0,207,0,0,0,1,5661} 
[DEBUG] 16:49:07.890 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 38,1  replyHeader:: 38,5680,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsTestService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsTestService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547843,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},1  response:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/providers/dubbo%253A%252F%252F192.168.3.8%253A16559%252Fcn.wizzer.app.cms.modules.services.CmsTestService%253Fanyhost%253Dtrue%2526application%253Dwk-nb-web-api%2526dubbo%253D2.6.2%2526generic%253Dfalse%2526interface%253Dcn.wizzer.app.cms.modules.services.CmsTestService%2526methods%253DupdateWithVersion%252CinsertRelation%252Cdata%252CinsertWith%252CinsertOrUpdate%252Cdao%252CTest%252CgetMaxId%252CgetSubPath%252Cquery%252Ccount%252CgetField%252CvDelete%252Clist%252Cexecute%252Cfetchx%252CgetMap%252CupdateAndIncrIfMatch%252CupdateLinks%252CfetchLinks%252CupdateRelation%252CfastInsert%252Cupdate%252Cinsert%252CinsertLinks%252CgetParentPath%252Cdelete%252CupdateIgnoreNull%252Cclear%252CgetEntity%252CupdateWith%252Cfetch%252Cexists%252ClistPage%2526pid%253D61893%2526side%253Dprovider%2526timestamp%253D1533804547843 
[INFO ] 16:49:07.890 com.alibaba.dubbo.registry.support.AbstractRegistry.subscribe(AbstractRegistry.java:298) -  [DUBBO] Subscribe: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547843, dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.898 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 39,3  replyHeader:: 39,5680,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService,F  response:: s{2205,2205,1528513630491,1528513630491,0,4,0,0,14,4,2219} 
[DEBUG] 16:49:07.907 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 40,1  replyHeader:: 40,5681,-110  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/configurators,#3139322e3136382e332e38,v{s{31,s{'world,'anyone}}},0  response::  
[DEBUG] 16:49:07.914 org.apache.zookeeper.ClientCnxn$SendThread.readResponse(ClientCnxn.java:843) - Reading reply sessionid:0x1003a1f71460043, packet:: clientPath:null serverPath:null finished:false header:: 41,12  replyHeader:: 41,5681,0  request:: '/dubbo/cn.wizzer.app.cms.modules.services.CmsTestService/configurators,T  response:: v{},s{2219,2219,1528513630516,1528513630516,0,0,0,0,0,0,2219} 
[INFO ] 16:49:07.914 com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:387) -  [DUBBO] Notify urls for subscribe url provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547843, urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547843], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.915 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:366) -  [DUBBO] original override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547843], dubbo version: 2.6.2, current host: 192.168.3.8
[DEBUG] 16:49:07.915 com.alibaba.dubbo.registry.integration.RegistryProtocol$OverrideListener.notify(RegistryProtocol.java:368) -  [DUBBO] subscribe url: provider://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547843, override urls: [empty://192.168.3.8:16559/cn.wizzer.app.cms.modules.services.CmsTestService?anyhost=true&application=wk-nb-web-api&category=configurators&check=false&dubbo=2.6.2&generic=false&interface=cn.wizzer.app.cms.modules.services.CmsTestService&methods=updateWithVersion,insertRelation,data,insertWith,insertOrUpdate,dao,Test,getMaxId,getSubPath,query,count,getField,vDelete,list,execute,fetchx,getMap,updateAndIncrIfMatch,updateLinks,fetchLinks,updateRelation,fastInsert,update,insert,insertLinks,getParentPath,delete,updateIgnoreNull,clear,getEntity,updateWith,fetch,exists,listPage&pid=61893&side=provider&timestamp=1533804547843], dubbo version: 2.6.2, current host: 192.168.3.8
[INFO ] 16:49:07.929 org.eclipse.jetty.server.Server.doStart(Server.java:374) - jetty-9.4.11.v20180605; built: 2018-06-05T18:24:03.829Z; git: d5fc0523cfa96bfebfbda19606cad384d772f04c; jvm 1.8.0_131-b11
[INFO ] 16:49:07.989 org.eclipse.jetty.util.thread.ThreadPoolBudget.lambda$infoOnLeases$1(ThreadPoolBudget.java:165) - ReservedThreadExecutor@24f870ee{s=0/1,p=0} requires 1 threads from QueuedThreadPool[qtp895766599]@35645047{STARTING,4<=0<=8,i=0,q=0}[ReservedThreadExecutor@24f870ee{s=0/1,p=0}]
[WARN ] 16:49:07.990 org.eclipse.jetty.util.thread.ThreadPoolBudget.check(ThreadPoolBudget.java:156) - Low configured threads: (max=8 - required=1)=7 < warnAt=8 for QueuedThreadPool[qtp895766599]@35645047{STARTING,4<=0<=8,i=0,q=0}[ReservedThreadExecutor@24f870ee{s=0/1,p=0}]
[WARN ] 16:49:08.244 org.eclipse.jetty.annotations.AnnotationParser.asmVersion(AnnotationParser.java:95) - Unknown asm implementation version, assuming version 393216
[INFO ] 16:49:08.245 org.eclipse.jetty.annotations.AnnotationConfiguration.scanForAnnotations(AnnotationConfiguration.java:489) - Scanning elapsed time=0ms
[INFO ] 16:49:08.264 org.eclipse.jetty.webapp.StandardDescriptorProcessor.visitServlet(StandardDescriptorProcessor.java:283) - NO JSP Support for /, did not find org.eclipse.jetty.jsp.JettyJspServlet
[INFO ] 16:49:08.300 org.eclipse.jetty.server.session.DefaultSessionIdManager.doStart(DefaultSessionIdManager.java:365) - DefaultSessionIdManager workerName=node0
[INFO ] 16:49:08.300 org.eclipse.jetty.server.session.DefaultSessionIdManager.doStart(DefaultSessionIdManager.java:370) - No SessionScavenger set, using defaults
[INFO ] 16:49:08.302 org.eclipse.jetty.server.session.HouseKeeper.startScavenging(HouseKeeper.java:149) - node0 Scavenging every 600000ms
[DEBUG] 16:49:08.331 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatServletStarter'<interface org.nutz.boot.starter.WebServletFace>
[DEBUG] 16:49:08.363 org.nutz.boot.starter.servlet3.NbServletContextListener.lambda$contextInitialized$0(NbServletContextListener.java:76) - add Servlet name=druid pathSpec=/druid/*
[INFO ] 16:49:08.363 org.nutz.boot.starter.jdbc.DruidWebStatServletStarter.getInitParameters(DruidWebStatServletStarter.java:73) - druid stat view random user=druid password=09hoovl50og19q7kstku19lq3e
[DEBUG] 16:49:08.365 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatFilterStarter'<interface org.nutz.boot.starter.WebFilterFace>
[DEBUG] 16:49:08.365 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'whaleFilterStarter'<interface org.nutz.boot.starter.WebFilterFace>
[DEBUG] 16:49:08.365 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutFilterStarter'<interface org.nutz.boot.starter.WebFilterFace>
[DEBUG] 16:49:08.367 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'whaleFilter'<class org.nutz.mvc.WhaleFilter>
[DEBUG] 16:49:08.367 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=whaleFilter
[DEBUG] 16:49:08.367 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(whaleFilter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:08.367 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'whaleFilter'<class org.nutz.mvc.WhaleFilter>
[DEBUG] 16:49:08.367 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'whaleFilter' to [app] 
[DEBUG] 16:49:08.368 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.mvc.WhaleFilter without AOP
[DEBUG] 16:49:08.368 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'whaleFilterStarter'<>
[DEBUG] 16:49:08.368 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'whaleFilter'<class org.nutz.mvc.WhaleFilter>
[DEBUG] 16:49:08.369 org.nutz.boot.starter.servlet3.NbServletContextListener.lambda$contextInitialized$2(NbServletContextListener.java:106) - add filter name=whale pathSpec=/*
[DEBUG] 16:49:08.379 org.nutz.boot.starter.servlet3.NbServletContextListener.lambda$contextInitialized$2(NbServletContextListener.java:106) - add filter name=druid pathSpec=/*
[DEBUG] 16:49:08.380 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutFilter'<class org.nutz.mvc.NutFilter>
[DEBUG] 16:49:08.380 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=nutFilter
[DEBUG] 16:49:08.380 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(nutFilter) in AnnotationIocLoader(packages=[org.nutz.boot.starter])
[DEBUG] 16:49:08.380 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'nutFilter'<class org.nutz.mvc.NutFilter>
[DEBUG] 16:49:08.380 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'nutFilter' to [app] 
[DEBUG] 16:49:08.381 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.nutz.mvc.NutFilter without AOP
[DEBUG] 16:49:08.381 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutFilterStarter'<>
[DEBUG] 16:49:08.381 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'nutFilter'<class org.nutz.mvc.NutFilter>
[DEBUG] 16:49:08.381 org.nutz.boot.starter.servlet3.NbServletContextListener.lambda$contextInitialized$2(NbServletContextListener.java:106) - add filter name=nutz pathSpec=/*
[DEBUG] 16:49:08.381 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'druidWebStatServletStarter'<interface org.nutz.boot.starter.WebServletFace>
[INFO ] 16:49:08.392 org.nutz.mvc.NutFilter._init(NutFilter.java:85) - NutFilter[nutz] starting ...
[DEBUG] 16:49:08.394 org.nutz.resource.Scans.printLocations(Scans.java:527) - Locations count=135 time use 0ms
[DEBUG] 16:49:08.395 org.nutz.mvc.config.AbstractNutConfig.createLoading(AbstractNutConfig.java:67) - Loading by class org.nutz.boot.starter.nutz.mvc.NbMvcLoading
[INFO ] 16:49:08.398 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:55) - Nutz Version : 1.r.66-SNAPSHOT 
[INFO ] 16:49:08.398 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:56) - Nutz.Mvc[nutz] is initializing ...
[DEBUG] 16:49:08.398 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:60) - Web Container Information:
[DEBUG] 16:49:08.398 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:61) -  - Default Charset : UTF-8
[DEBUG] 16:49:08.398 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:62) -  - Current . path  : /Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/.
[DEBUG] 16:49:08.398 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:63) -  - Java Version    : 1.8.0_131
[DEBUG] 16:49:08.399 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:64) -  - File separator  : /
[DEBUG] 16:49:08.399 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:65) -  - Timezone        : Asia/Shanghai
[DEBUG] 16:49:08.399 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:66) -  - OS              : Mac OS X x86_64
[DEBUG] 16:49:08.399 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:67) -  - ServerInfo      : jetty/9.4.11.v20180605
[DEBUG] 16:49:08.399 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:68) -  - Servlet API     : 3.1
[DEBUG] 16:49:08.399 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:73) -  - ContextPath     : 
[DEBUG] 16:49:08.399 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:74) -  - context.tempdir : /Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/temp
[DEBUG] 16:49:08.399 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:75) -  - MainModule      : cn.wizzer.app.web.commons.core.WebApiMainLauncher
[INFO ] 16:49:08.399 org.nutz.mvc.config.AbstractNutConfig.getAppRoot(AbstractNutConfig.java:82) - /WEB-INF/ not Found?!
[DEBUG] 16:49:08.399 org.nutz.mvc.impl.NutLoading.createContext(NutLoading.java:239) - >> app.root = ./webapp
[INFO ] 16:49:08.402 org.nutz.mvc.impl.NutLoading.evalUrlMapping(NutLoading.java:159) - Build URL mapping by org.nutz.mvc.impl.UrlMappingImpl ...
[DEBUG] 16:49:08.403 org.nutz.mvc.impl.NutLoading.createViewMakers(NutLoading.java:369) - @Views(DefaultViewMaker.class)
[DEBUG] 16:49:08.405 org.nutz.mvc.impl.NutLoading.createChainMaker(NutLoading.java:267) - @ChainBy(org.nutz.mvc.impl.NutActionChainMaker)
[DEBUG] 16:49:08.420 org.nutz.mvc.impl.Loadings.scanModuleInPackage(Loadings.java:185) -  > scan 'cn.wizzer'
[DEBUG] 16:49:08.428 org.nutz.resource.Scans.scan(Scans.java:280) - Found 111 resource by src( cn/wizzer/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:49:08.430 org.nutz.mvc.impl.Loadings.checkModule(Loadings.java:204) -    >> add 'cn.wizzer.app.web.modules.controllers.open.ApiTestSignController'
[DEBUG] 16:49:08.430 org.nutz.mvc.impl.Loadings.checkModule(Loadings.java:204) -    >> add 'cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController'
[DEBUG] 16:49:08.430 org.nutz.mvc.impl.Loadings.checkModule(Loadings.java:204) -    >> add 'cn.wizzer.app.web.modules.controllers.open.ApiTokenController'
[DEBUG] 16:49:08.570 org.nutz.mvc.impl.Loadings.scanModules(Loadings.java:155) - module class location 'file:/Users/haigo/Downloads/rich_paper/NutzWk-nutzboot-dubbo/wk-app/wk-nb-web-api/target/classes/'
[DEBUG] 16:49:08.570 org.nutz.mvc.impl.Loadings.scanModuleInPackage(Loadings.java:185) -  > scan 'cn.wizzer.app.web.commons.core'
[DEBUG] 16:49:08.572 org.nutz.resource.Scans.scan(Scans.java:280) - Found 1 resource by src( cn/wizzer/app/web/commons/core/ ) , regex( ^.+[.]class$ )
[DEBUG] 16:49:08.573 org.nutz.mvc.impl.NutLoading.evalUrlMapping(NutLoading.java:196) - Use org.nutz.mvc.impl.NutEntryDeterminer as EntryMethodDeterminer
[INFO ] 16:49:08.583 org.nutz.mvc.impl.NutActionChainMaker.getProcessorByName(NutActionChainMaker.java:72) - Optional processor class not found, disabled : org.nutz.integration.shiro.NutShiroProcessor
[INFO ] 16:49:08.593 org.nutz.mvc.impl.NutActionChainMaker.getProcessorByName(NutActionChainMaker.java:72) - Optional processor class not found, disabled : org.nutz.plugins.validation.ValidationProcessor
[DEBUG] 16:49:08.605 org.nutz.mvc.impl.UrlMappingImpl.print(UrlMappingImpl.java:146) -    '/open/api/token/get'       >> (ApiTokenController.java:38).get      : Object     | @Ok(json ) @Fail(null ) | by 1 Filters | (I:UTF-8/O:UTF-8)
[DEBUG] 16:49:08.617 org.nutz.mvc.impl.UrlMappingImpl.print(UrlMappingImpl.java:146) -    '/open/api/test/test2'      >> (ApiTestSignController.java:27).test2 : Object     | @Ok(json ) @Fail(null ) | by 0 Filters | (I:UTF-8/O:UTF-8)
[DEBUG] 16:49:08.617 org.nutz.mvc.impl.UrlMappingImpl.print(UrlMappingImpl.java:146) -    '/open/api/test/test'       >> (ApiTestSignController.java:45).test1 : Object     | @Ok(json ) @Fail(null ) | by 0 Filters | (I:UTF-8/O:UTF-8)
[DEBUG] 16:49:08.619 org.nutz.mvc.impl.UrlMappingImpl.print(UrlMappingImpl.java:146) -    '/open/api/test/test1'      >> (ApiTestTokenController.java:33).test1 : Object     | @Ok(json ) @Fail(null ) | by 0 Filters | (I:UTF-8/O:UTF-8)
[INFO ] 16:49:08.620 org.nutz.mvc.impl.NutLoading.evalUrlMapping(NutLoading.java:221) - Found 4 module methods
[DEBUG] 16:49:08.620 org.nutz.mvc.impl.NutLoading.evalLocalization(NutLoading.java:307) - Localization: org.nutz.mvc.impl.NutMessageLoader('locales/')  dft<>
[DEBUG] 16:49:08.623 org.nutz.resource.Scans.scan(Scans.java:280) - Found 0 resource by src( locales/ ) , regex( ^.+[.]properties$ )
[DEBUG] 16:49:08.623 org.nutz.mvc.impl.NutMessageLoader.load(NutMessageLoader.java:27) - Load Messages in 0 resource : [[]]
[DEBUG] 16:49:08.624 org.nutz.mvc.impl.NutMessageLoader.load(NutMessageLoader.java:95) - Message Loaded, size = 0
[INFO ] 16:49:08.624 org.nutz.mvc.impl.NutLoading.load(NutLoading.java:141) - Nutz.Mvc[nutz] is up in 225ms
[INFO ] 16:49:08.624 org.nutz.mvc.NutFilter._init(NutFilter.java:117) - exclusionsPrefix  = ^(/druid/)
[INFO ] 16:49:08.680 org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:851) - Started o.e.j.w.WebAppContext@3667faa8{/,[],AVAILABLE}
[INFO ] 16:49:08.681 org.eclipse.jetty.util.thread.ThreadPoolBudget.lambda$infoOnLeases$1(ThreadPoolBudget.java:165) - ServerConnector@b46e103{HTTP/1.1,[http/1.1]}{0.0.0.0:9001} requires 1 threads from QueuedThreadPool[qtp895766599]@35645047{STARTED,4<=4<=8,i=4,q=0}[ReservedThreadExecutor@24f870ee{s=0/1,p=0}]
[INFO ] 16:49:08.682 org.eclipse.jetty.util.thread.ThreadPoolBudget.lambda$infoOnLeases$1(ThreadPoolBudget.java:165) - SelectorManager@ServerConnector@b46e103{HTTP/1.1,[http/1.1]}{0.0.0.0:9001} requires 1 threads from QueuedThreadPool[qtp895766599]@35645047{STARTED,4<=4<=8,i=4,q=0}[ReservedThreadExecutor@24f870ee{s=0/1,p=0}]
[INFO ] 16:49:08.708 org.eclipse.jetty.server.AbstractConnector.doStart(AbstractConnector.java:289) - Started ServerConnector@b46e103{HTTP/1.1,[http/1.1]}{0.0.0.0:9001}
[INFO ] 16:49:08.708 org.eclipse.jetty.server.Server.doStart(Server.java:411) - Started @9933ms
[DEBUG] 16:49:08.708 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'webApiMainLauncher'<class cn.wizzer.app.web.commons.core.WebApiMainLauncher>
[DEBUG] 16:49:08.708 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=webApiMainLauncher
[DEBUG] 16:49:08.709 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(webApiMainLauncher) in AnnotationIocLoader(packages=[cn.wizzer])
[DEBUG] 16:49:08.709 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'webApiMainLauncher'<class cn.wizzer.app.web.commons.core.WebApiMainLauncher>
[DEBUG] 16:49:08.709 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'webApiMainLauncher' to [app] 
[DEBUG] 16:49:08.709 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class cn.wizzer.app.web.commons.core.WebApiMainLauncher without AOP
[DEBUG] 16:49:08.711 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<class org.nutz.ioc.impl.PropertiesProxy>
[INFO ] 16:49:08.712 org.nutz.boot.NbApp.execute(NbApp.java:213) - wk-nb-web-api started : 6859ms

这是api启动日志

[DEBUG] 16:50:47.209 org.nutz.mvc.impl.UrlMappingImpl.get(UrlMappingImpl.java:101) - Found mapping for [POST] path=/open/api/test/test1 : ApiTestTokenController.test1(ApiTestTokenController.java:33)
[DEBUG] 16:50:47.209 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'apiTestTokenController'<class cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController>
[DEBUG] 16:50:47.209 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'activeMqJmsTemplate'<class org.springframework.jms.core.JmsTemplate>
[DEBUG] 16:50:47.209 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=activeMqJmsTemplate
[DEBUG] 16:50:47.210 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(activeMqJmsTemplate) in JsonLoader(paths=[ioc/])
[DEBUG] 16:50:47.210 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'activeMqJmsTemplate'<class org.springframework.jms.core.JmsTemplate>
[DEBUG] 16:50:47.210 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'activeMqJmsTemplate' to [app] 
[DEBUG] 16:50:47.212 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.springframework.jms.core.JmsTemplate without AOP
[DEBUG] 16:50:47.212 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'connectionFactory'<>
[DEBUG] 16:50:47.212 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=connectionFactory
[DEBUG] 16:50:47.212 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(connectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:50:47.213 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'connectionFactory'<>
[DEBUG] 16:50:47.213 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'connectionFactory' to [app] 
[DEBUG] 16:50:47.213 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.springframework.jms.connection.SingleConnectionFactory without AOP
[DEBUG] 16:50:47.213 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'pooledConnectionFactory'<>
[DEBUG] 16:50:47.213 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=pooledConnectionFactory
[DEBUG] 16:50:47.213 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(pooledConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:50:47.213 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'pooledConnectionFactory'<>
[DEBUG] 16:50:47.213 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'pooledConnectionFactory' to [app] 
[DEBUG] 16:50:47.214 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.pool.PooledConnectionFactory without AOP
[DEBUG] 16:50:47.214 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'targetConnectionFactory'<>
[DEBUG] 16:50:47.214 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:192) - 	 >> Load definition name=targetConnectionFactory
[DEBUG] 16:50:47.214 org.nutz.ioc.loader.combo.ComboIocLoader.printFoundIocBean(ComboIocLoader.java:226) - Found IocObject(targetConnectionFactory) in JsonLoader(paths=[ioc/])
[DEBUG] 16:50:47.214 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:223) - 	 >> Make...'targetConnectionFactory'<>
[DEBUG] 16:50:47.214 org.nutz.ioc.impl.ScopeContext.save(ScopeContext.java:65) - Save object 'targetConnectionFactory' to [app] 
[DEBUG] 16:50:47.214 org.nutz.ioc.aop.impl.DefaultMirrorFactory.getMirror(DefaultMirrorFactory.java:76) - Load class org.apache.activemq.ActiveMQConnectionFactory without AOP
[DEBUG] 16:50:47.215 org.nutz.ioc.impl.NutIoc.get(NutIoc.java:166) - Get 'conf'<>
[INFO ] 16:50:47.215 org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:61) - Fail to value by setter
java.lang.NullPointerException
	at java.net.URI$Parser.parse(URI.java:3042)
	at java.net.URI.<init>(URI.java:588)
	at org.apache.activemq.ActiveMQConnectionFactory.createURI(ActiveMQConnectionFactory.java:174)
	at org.apache.activemq.ActiveMQConnectionFactory.setBrokerURL(ActiveMQConnectionFactory.java:367)
	at org.apache.activemq.ActiveMQConnectionFactory$FM$setBrokerURL$fa63426f4fc49dc4e24f788aa0c1567c.invoke(ActiveMQConnectionFactory.java)
	at org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:51)
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:33)
	at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
	at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
	at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
	at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
	at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
	at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
	at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
	at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
	at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
	at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
	at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
	at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:271)
	at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl.Test(CmsTestServiceImpl.java:51)
	at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP._aop_invoke(CmsTestServiceImpl.java:1)
	at org.nutz.aop.InterceptorChain.invoke(InterceptorChain.java:77)
	at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:57)
	at org.nutz.aop.interceptor.TransactionInterceptor.filter(TransactionInterceptor.java:34)
	at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:60)
	at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP.Test(CmsTestServiceImpl.java:1)
	at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController.test1(ApiTestTokenController.java:33)
	at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController$FM$test1$da810e841258c3a84ae9124e6d872cd8.invoke(ApiTestTokenController.java)
	at org.nutz.mvc.impl.processor.MethodInvokeProcessor.process(MethodInvokeProcessor.java:31)
	at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
	at org.nutz.mvc.impl.processor.AdaptorProcessor.process(AdaptorProcessor.java:38)
	at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
	at org.nutz.mvc.impl.processor.ActionFiltersProcessor.process(ActionFiltersProcessor.java:58)
	at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
	at org.nutz.mvc.impl.processor.ModuleProcessor.process(ModuleProcessor.java:123)
	at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
	at org.nutz.mvc.impl.processor.EncodingProcessor.process(EncodingProcessor.java:27)
	at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
	at org.nutz.mvc.impl.processor.UpdateRequestAttributesProcessor.process(UpdateRequestAttributesProcessor.java:15)
	at org.nutz.mvc.impl.NutActionChain.doChain(NutActionChain.java:44)
	at org.nutz.mvc.impl.ActionInvoker.invoke(ActionInvoker.java:67)
	at org.nutz.mvc.ActionHandler.handle(ActionHandler.java:31)
	at org.nutz.mvc.NutFilter.doFilter(NutFilter.java:202)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
	at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
	at org.nutz.mvc.WhaleFilter.doFilter(WhaleFilter.java:171)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1634)
	at org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter.doFilter(WebSocketUpgradeFilter.java:215)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
	at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:533)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:146)
	at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:548)
	at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
	at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:257)
	at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1595)
	at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:255)
	at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1317)
	at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:203)
	at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:473)
	at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1564)
	at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:201)
	at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1219)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:144)
	at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
	at org.eclipse.jetty.server.Server.handle(Server.java:531)
	at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:352)
	at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:260)
	at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:281)
	at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:102)
	at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:118)
	at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:333)
	at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:310)
	at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:168)
	at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:126)
	at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:366)
	at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:762)
	at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:680)
	at java.lang.Thread.run(Thread.java:748)
[DEBUG] 16:50:47.216 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'targetConnectionFactory' from [app] 
[DEBUG] 16:50:47.216 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'pooledConnectionFactory' from [app] 
[DEBUG] 16:50:47.216 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'connectionFactory' from [app] 
[DEBUG] 16:50:47.216 org.nutz.ioc.impl.ScopeContext.remove(ScopeContext.java:85) - Remove object 'activeMqJmsTemplate' from [app] 
[WARN ] 16:50:47.216 org.nutz.mvc.impl.processor.FailProcessor.process(FailProcessor.java:28) - Error@/open/api/test/test1 :
org.nutz.ioc.IocException: IocBean[activeMqJmsTemplate] throw Exception when creating
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
	at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
	at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:271)
	at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl.Test(CmsTestServiceImpl.java:51)
	at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP._aop_invoke(CmsTestServiceImpl.java:1)
	at org.nutz.aop.InterceptorChain.invoke(InterceptorChain.java:77)
	at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:57)
	at org.nutz.aop.interceptor.TransactionInterceptor.filter(TransactionInterceptor.java:34)
	at org.nutz.aop.InterceptorChain.doChain(InterceptorChain.java:60)
	at cn.wizzer.app.cms.modules.services.impl.CmsTestServiceImpl$$NUTZAOP.Test(CmsTestServiceImpl.java:1)
	at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController.test1(ApiTestTokenController.java:33)
	at cn.wizzer.app.web.modules.controllers.open.ApiTestTokenController$FM$test1$da810e841258c3a84ae9124e6d872cd8.invoke(ApiTestTokenController.java)
	at org.nutz.mvc.impl.processor.MethodInvokeProcessor.process(MethodInvokeProcessor.java:31)
	at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
	at org.nutz.mvc.impl.processor.AdaptorProcessor.process(AdaptorProcessor.java:38)
	at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
	at org.nutz.mvc.impl.processor.ActionFiltersProcessor.process(ActionFiltersProcessor.java:58)
	at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
	at org.nutz.mvc.impl.processor.ModuleProcessor.process(ModuleProcessor.java:123)
	at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
	at org.nutz.mvc.impl.processor.EncodingProcessor.process(EncodingProcessor.java:27)
	at org.nutz.mvc.impl.processor.AbstractProcessor.doNext(AbstractProcessor.java:44)
	at org.nutz.mvc.impl.processor.UpdateRequestAttributesProcessor.process(UpdateRequestAttributesProcessor.java:15)
	at org.nutz.mvc.impl.NutActionChain.doChain(NutActionChain.java:44)
	at org.nutz.mvc.impl.ActionInvoker.invoke(ActionInvoker.java:67)
	at org.nutz.mvc.ActionHandler.handle(ActionHandler.java:31)
	at org.nutz.mvc.NutFilter.doFilter(NutFilter.java:202)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
	at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
	at org.nutz.mvc.WhaleFilter.doFilter(WhaleFilter.java:171)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1634)
	at org.eclipse.jetty.websocket.server.WebSocketUpgradeFilter.doFilter(WebSocketUpgradeFilter.java:215)
	at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1642)
	at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:533)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:146)
	at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:548)
	at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
	at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:257)
	at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1595)
	at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:255)
	at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1317)
	at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:203)
	at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:473)
	at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1564)
	at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:201)
	at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1219)
	at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:144)
	at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:132)
	at org.eclipse.jetty.server.Server.handle(Server.java:531)
	at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:352)
	at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:260)
	at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:281)
	at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:102)
	at org.eclipse.jetty.io.ChannelEndPoint$2.run(ChannelEndPoint.java:118)
	at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:333)
	at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:310)
	at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:168)
	at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:126)
	at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:366)
	at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:762)
	at org.eclipse.jetty.util.thread.QueuedThreadPool$2.run(QueuedThreadPool.java:680)
	at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.RuntimeException: IocBean[activeMqJmsTemplate] fail at field=[connectionFactory]
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
	at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
	... 62 more
Caused by: org.nutz.ioc.IocException: IocBean[connectionFactory] throw Exception when creating
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
	at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
	at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
	... 64 more
Caused by: java.lang.RuntimeException: IocBean[connectionFactory] fail at field=[targetConnectionFactory]
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
	at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
	... 67 more
Caused by: org.nutz.ioc.IocException: IocBean[pooledConnectionFactory] throw Exception when creating
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
	at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
	at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
	... 69 more
Caused by: java.lang.RuntimeException: IocBean[pooledConnectionFactory] fail at field=[connectionFactory]
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
	at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
	... 72 more
Caused by: org.nutz.ioc.IocException: IocBean[targetConnectionFactory] throw Exception when creating
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:152)
	at org.nutz.ioc.impl.NutIoc.get(NutIoc.java:241)
	at org.nutz.ioc.val.ReferValue.get(ReferValue.java:24)
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:32)
	... 74 more
Caused by: java.lang.RuntimeException: IocBean[targetConnectionFactory] fail at field=[brokerURL]
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:40)
	at org.nutz.ioc.weaver.DefaultWeaver.fill(DefaultWeaver.java:67)
	at org.nutz.ioc.impl.ObjectMakerImpl.make(ObjectMakerImpl.java:138)
	... 77 more
Caused by: java.lang.RuntimeException: Fail to set 'null'[ null ] by setter org.apache.activemq.ActiveMQConnectionFactory.'setBrokerURL()' because [java.lang.NullPointerException]: null
	at org.nutz.lang.Lang.wrapThrow(Lang.java:170)
	at org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:62)
	at org.nutz.ioc.weaver.FieldInjector.inject(FieldInjector.java:33)
	... 79 more
Caused by: java.lang.NullPointerException
	at java.net.URI$Parser.parse(URI.java:3042)
	at java.net.URI.<init>(URI.java:588)
	at org.apache.activemq.ActiveMQConnectionFactory.createURI(ActiveMQConnectionFactory.java:174)
	at org.apache.activemq.ActiveMQConnectionFactory.setBrokerURL(ActiveMQConnectionFactory.java:367)
	at org.apache.activemq.ActiveMQConnectionFactory$FM$setBrokerURL$fa63426f4fc49dc4e24f788aa0c1567c.invoke(ActiveMQConnectionFactory.java)
	at org.nutz.lang.inject.InjectBySetter.inject(InjectBySetter.java:51)
	... 80 more

这是完整的错误日志

有几个疑问,解答一下:

  1. 为啥cms的日志也有 loading [avtivemq.js] , 你是都放了一份呢? 还是说把js放到公共库了???
  2. api模块的applcation.properties加mq.brokerURL了吗?
  3. 为啥你会贴cms和api两份日志呢? 解释一下他们的关系

1.现在是只有cms里面有activemq.js
2.api模块里面的application. properties 里面 没有加mq.brokerURL
3.然后是在api模块里面调用的cms模块的发消息的方法

@IocBean
@At("/open/api/test")
//@Filters({@By(type = ApiTokenFilter.class)})
public class ApiTestTokenController {
    private final static Log log = Logs.get();



    @Inject
    @Reference(check = false)
    private CmsTestService cmsTestService;

    @At("/test1")
    @Ok("json")
    @POST
    public Object test1(@Param("openid") String openid) {

        cmsTestService.Test();

        return Result.success("执行成功","openid:::"+openid);
    }
}

@IocBean(args = {"refer:dao"})
@Service(interfaceClass = CmsTestService.class)
public class CmsTestServiceImpl extends BaseServiceImpl<Cms_test> implements CmsTestService {
    public CmsTestServiceImpl(Dao dao) {
        super(dao);
    }

    @Inject
    private RedisService redisService;

    @Inject
    @Reference(check = false)
    private MemberService memberService;


//    private Ioc  ioc = new NutIoc(new JsonLoader("ioc/avtivemq.js"));

    @Inject("refer:$ioc")
    private Ioc ioc;

    @Override
    @Aop(TransAop.READ_COMMITTED)
    public void Test() {
        JmsTemplate jmsTemplate=ioc.get(JmsTemplate.class, "activeMqJmsTemplate");
        String destination = jmsTemplate.getDefaultDestinationName();
        System.out.println(Thread.currentThread().getName()+" 向队列"+destination+"发送消息---------------------->"+"xx");
        jmsTemplate.send(new MessageCreator() {
            public Message createMessage(Session session) throws JMSException {
                return session.createTextMessage("xx");
            }
        });
    }



}

第一点就错了, 你仔细看api模块的日志, 有activemq.js

因为有activemq.js, 所以加载的时候优先从本地读了, 然后没有mq.brokerURL,所以报错了

也就是说调用模块里面也要加activemq.js吗?
可是mq的对象不是在cms里面才放在容器里面吗?
api只是调用cms的方法也要引用吗

不是说要加, 是你多加了. 看上去就是api也加了activemq.js, 因为有activemq.js的日志出现,这不合理

api模块里面的日志, 应该完全没有activemq的痕迹,对不? 应该对api模块完全透明

我在api模块里面是没有activemq.js的呀~~

是因为注入了 cms模块?

噢, 做了依赖咯

按nutzwk的方式, 不应该依赖其他模块的, 接口放在commons里面就好啦

ok了,原来是这样!非常感谢!

添加回复
请先登陆
回到顶部