增加执行动作失败的回答文本、动作字段
This commit is contained in:
parent
9921429c26
commit
40b6ebf79c
@ -45,10 +45,18 @@ public class SystemTalkAnswerConfigEntity extends GenericEntity<Long> {
|
||||
@Column(name = "answer_value", length = 255, nullable = false)
|
||||
private String answerValue;
|
||||
|
||||
@Comment("执行失败所对应动作")
|
||||
@Column(name = "answer_value_faild", length = 255, nullable = false)
|
||||
private String answerValueFaild;
|
||||
|
||||
@Comment("回答时的动作(数字人的口型以外动作)")
|
||||
@Column(name = "answer_action", length = 255)
|
||||
private String answerAction;
|
||||
|
||||
@Comment("执行失败所对应动作")
|
||||
@Column(name = "answer_action_faild", length = 255, nullable = false)
|
||||
private String answerActionFaild;
|
||||
|
||||
@Comment("回答时的背景音乐(URL)")
|
||||
@Column(name = "answer_back_sound", length = 255)
|
||||
private String answerBackSound;
|
||||
|
||||
@ -1,5 +1,8 @@
|
||||
package com.qiuguo.iot.data.request.system;
|
||||
import lombok.Data;
|
||||
import org.hswebframework.ezorm.rdb.mapping.annotation.Comment;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import java.util.Date;
|
||||
/**
|
||||
* <p>
|
||||
@ -34,8 +37,16 @@ public class SystemTalkAnswerConfigRequest implements java.io.Serializable {
|
||||
private String askKey;
|
||||
//回答内容(传给box)
|
||||
private String answerValue;
|
||||
//回答时的动作(数字人的口型以外动作)
|
||||
|
||||
//执行失败所对应动作
|
||||
private String answerValueFaild;
|
||||
|
||||
//回答时的动作(数字人的口型以外动作)
|
||||
private String answerAction;
|
||||
|
||||
//执行失败所对应动作
|
||||
private String answerActionFaild;
|
||||
//回答时的背景音乐(URL)
|
||||
private String answerBackSound;
|
||||
//回答时的背景图片、视屏、动画(URL)
|
||||
|
||||
@ -17,8 +17,14 @@ public class SystemTalkAnswerConfigResp {
|
||||
private String askKey;
|
||||
//回答内容(传给box)
|
||||
private String answerValue;
|
||||
//执行失败所对应动作
|
||||
private String answerValueFaild;
|
||||
|
||||
//回答时的动作(数字人的口型以外动作)
|
||||
private String answerAction;
|
||||
|
||||
//执行失败所对应动作
|
||||
private String answerActionFaild;
|
||||
//回答时的背景音乐(URL)
|
||||
private String answerBackSound;
|
||||
//回答时的背景图片、视屏、动画(URL)
|
||||
|
||||
@ -52,9 +52,15 @@ public class SystemTalkAnswerConfigService extends GenericReactiveCrudService<Sy
|
||||
if(StringUtils.isNotEmpty(request.getAnswerValue())){
|
||||
reactiveQuery = reactiveQuery.and(SystemTalkAnswerConfigRequest::getAnswerValue, request.getAnswerValue());
|
||||
}
|
||||
if(StringUtils.isNotEmpty(request.getAnswerValueFaild())){
|
||||
reactiveQuery = reactiveQuery.and(SystemTalkAnswerConfigRequest::getAnswerValueFaild, request.getAnswerValueFaild());
|
||||
}
|
||||
if(StringUtils.isNotEmpty(request.getAnswerAction())){
|
||||
reactiveQuery = reactiveQuery.and(SystemTalkAnswerConfigRequest::getAnswerAction, request.getAnswerAction());
|
||||
}
|
||||
if(StringUtils.isNotEmpty(request.getAnswerActionFaild())){
|
||||
reactiveQuery = reactiveQuery.and(SystemTalkAnswerConfigRequest::getAnswerActionFaild, request.getAnswerActionFaild());
|
||||
}
|
||||
if(StringUtils.isNotEmpty(request.getAnswerBackSound())){
|
||||
reactiveQuery = reactiveQuery.and(SystemTalkAnswerConfigRequest::getAnswerBackSound, request.getAnswerBackSound());
|
||||
}
|
||||
|
||||
@ -1,180 +1,61 @@
|
||||
2023-09:21:25.447 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] []- HV000001: Hibernate Validator 6.2.5.Final
|
||||
2023-09:21:27.531 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStartupProfileInfo,637] []- The following 1 profile is active: "dev"
|
||||
2023-09:21:27.960 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:21:27.962 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data R2DBC repositories in DEFAULT mode.
|
||||
2023-09:21:27.967 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 2 ms. Found 0 R2DBC repository interfaces.
|
||||
2023-09:21:27.977 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:21:27.977 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data Redis repositories in DEFAULT mode.
|
||||
2023-09:21:27.984 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 0 ms. Found 0 Redis repository interfaces.
|
||||
2023-09:21:28.097 [main] INFO o.s.c.c.s.GenericScope - [setSerializationId,283] []- BeanFactory id=8037caee-400e-3a8d-bb03-baf410acf6a6
|
||||
2023-09:21:28.164 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$$EnhancerBySpringCGLIB$$a58564a7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.172 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.173 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.174 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$427/1004862656] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.175 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.177 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'expressionDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.ExpressionDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.177 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'annotationDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.AnnotationDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.179 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'alwaysNoMatchStrategyMatcher' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.180 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'switcherMethodMatcherPointcutAdvisor' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$SwitcherMethodMatcherPointcutAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.181 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration' of type [org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration$$EnhancerBySpringCGLIB$$2794b9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.199 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'easyorm-org.hswebframework.web.crud.configuration.EasyormProperties' of type [org.hswebframework.web.crud.configuration.EasyormProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.200 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.EasyormConfiguration' of type [org.hswebframework.web.crud.configuration.EasyormConfiguration$$EnhancerBySpringCGLIB$$cf1463d5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.203 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration' of type [org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration$$EnhancerBySpringCGLIB$$cfa18343] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.209 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration' of type [org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.211 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'spring.r2dbc-org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties' of type [org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.303 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'connectionFactory' of type [io.r2dbc.pool.ConnectionPool] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.305 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'reactiveSqlExecutor' of type [org.hswebframework.web.crud.sql.DefaultR2dbcExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.318 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'syncSqlExecutor' of type [org.hswebframework.ezorm.rdb.executor.reactive.ReactiveSyncSqlExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.339 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'databaseMetadata' of type [org.hswebframework.ezorm.rdb.metadata.RDBDatabaseMetadata] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.346 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration' of type [org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$740f9eab] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.665 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_en.properties -> messages
|
||||
2023-09:21:28.666 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_zh.properties -> messages
|
||||
2023-09:21:28.666 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_en.properties -> messages
|
||||
2023-09:21:28.667 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_zh.properties -> messages
|
||||
2023-09:21:28.667 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_en.properties -> messages
|
||||
2023-09:21:28.667 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_zh.properties -> messages
|
||||
2023-09:21:32.279 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:34.149 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:34.329 [main] INFO o.s.b.w.e.n.NettyWebServer - [start,111] []- Netty started on port 8091
|
||||
2023-09:21:36.162 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:38.001 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:38.008 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStarted,61] []- Started IotAdminHttpApiApplication in 14.834 seconds (JVM running for 15.999)
|
||||
2023-09:21:38.011 [main] DEBUG o.h.e.c.m.AbstractSchemaMetadata - [lambda$loadMetadata$2,94] []- load table metadata s_system ,use parser:MysqlTableMetadataParser
|
||||
2023-09:21:38.348 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select count(1) as 'total' from information_schema.`TABLES` where table_schema=? and table_name=?
|
||||
2023-09:21:38.349 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.349 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select count(1) as 'total' from information_schema.`TABLES` where table_schema='qiuguo_iot' and table_name='s_system'
|
||||
2023-09:21:38.419 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema=? and table_name like ?
|
||||
2023-09:21:38.419 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.420 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:21:38.483 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema=? and table_name like ?
|
||||
2023-09:21:38.484 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.484 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:21:38.540 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = ? and TABLE_NAME like ?
|
||||
2023-09:21:38.541 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.542 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = 'qiuguo_iot' and TABLE_NAME like 's_system'
|
||||
2023-09:21:38.624 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = ? limit ?,?
|
||||
2023-09:21:38.625 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: default(String),0(Integer),1(Integer)
|
||||
2023-09:21:38.625 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = 'default' limit 0,1
|
||||
2023-09:21:38.820 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: update qiuguo_iot.s_system set `framework_version` = ? , `website` = ? , `major_version` = ? , `name` = ? , `revision_version` = ? , `dependencies` = ? , `minor_version` = ? where `name` = ?
|
||||
2023-09:21:38.820 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: {"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}(String),(String),1(Integer),default(String),0(Integer),[](String),0(Integer),default(String)
|
||||
2023-09:21:38.821 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: update qiuguo_iot.s_system set `framework_version` = '{"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}' , `website` = '' , `major_version` = 1 , `name` = 'default' , `revision_version` = 0 , `dependencies` = '[]' , `minor_version` = 0 where `name` = 'default'
|
||||
2023-09:21:38.832 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [lambda$null$9,146] []- ==> Updated: 1
|
||||
2023-09:21:45.590 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-1]- api start time:1695000105589 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的地上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Cache-Control:"max-age=0", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:21:45.688 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-1]- [f8e5e9e1-1] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:21:45.689 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-1]- [f8e5e9e1-1] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:21:45.770 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-1]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","s","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","地上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:21:45.774 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-1]- [f8e5e9e1-1] Encoding [org.hswebframework.web.crud.web.ResponseMessage@cc9688a]
|
||||
2023-09:21:45.776 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-1]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":23,"tagName":"s","key":"地上","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000105774}
|
||||
2023-09:21:45.778 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-1]- api end time:1695000105778, total time:189
|
||||
2023-09:22:53.553 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-2]- api start time:1695000173553 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的桌上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:22:53.555 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-2]- [f8e5e9e1-2] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:22:53.555 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-2]- [f8e5e9e1-2] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:22:53.560 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-2]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","s","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","桌上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:22:53.560 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-2]- [f8e5e9e1-2] Encoding [org.hswebframework.web.crud.web.ResponseMessage@24059977]
|
||||
2023-09:22:53.561 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-2]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":23,"tagName":"s","key":"桌上","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000173560}
|
||||
2023-09:22:53.562 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-2]- api end time:1695000173562, total time:9
|
||||
2023-09:24:22.362 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-3]- api start time:1695000262362 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的桌子的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:24:22.365 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-3]- [f8e5e9e1-3] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:24:22.365 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-3]- [f8e5e9e1-3] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:24:22.369 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-3]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","桌子","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:24:22.370 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-3]- [f8e5e9e1-3] Encoding [org.hswebframework.web.crud.web.ResponseMessage@79b960fd]
|
||||
2023-09:24:22.370 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-3]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"桌子","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000262370}
|
||||
2023-09:24:22.371 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-3]- api end time:1695000262371, total time:9
|
||||
2023-09:24:36.987 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-4]- api start time:1695000276987 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的洗面台的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:24:36.990 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-4]- [f8e5e9e1-4] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:24:36.990 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-4]- [f8e5e9e1-4] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:24:36.995 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-4]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","洗面台","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:24:36.996 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-4]- [f8e5e9e1-4] Encoding [org.hswebframework.web.crud.web.ResponseMessage@400ff84e]
|
||||
2023-09:24:36.996 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-4]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"洗面台","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000276996}
|
||||
2023-09:24:36.996 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-4]- api end time:1695000276996, total time:9
|
||||
2023-09:24:42.310 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-5]- api start time:1695000282310 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的洗面台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:24:42.312 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-5]- [f8e5e9e1-5] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:24:42.312 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-5]- [f8e5e9e1-5] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:24:42.318 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-5]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","洗面台","上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:24:42.318 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-5]- [f8e5e9e1-5] Encoding [org.hswebframework.web.crud.web.ResponseMessage@6b077a4a]
|
||||
2023-09:24:42.318 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-5]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"洗面台","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"上","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000282318}
|
||||
2023-09:24:42.319 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-5]- api end time:1695000282319, total time:9
|
||||
2023-09:25:53.318 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-6]- api start time:1695000353318 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的淋浴房的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:25:53.321 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-6]- [f8e5e9e1-6] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:25:53.321 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-6]- [f8e5e9e1-6] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:25:53.326 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-6]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","淋浴房","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:25:53.327 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-6]- [f8e5e9e1-6] Encoding [org.hswebframework.web.crud.web.ResponseMessage@12d3fba5]
|
||||
2023-09:25:53.328 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-6]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"淋浴房","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000353327}
|
||||
2023-09:25:53.328 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-6]- api end time:1695000353328, total time:10
|
||||
2023-09:26:02.620 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-7]- api start time:1695000362620 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的浴室里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:26:02.622 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-7]- [f8e5e9e1-7] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:26:02.622 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-7]- [f8e5e9e1-7] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:26:02.627 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-7]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","浴室","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:26:02.628 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-7]- [f8e5e9e1-7] Encoding [org.hswebframework.web.crud.web.ResponseMessage@571554ed]
|
||||
2023-09:26:02.628 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-7]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"浴室","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000362628}
|
||||
2023-09:26:02.629 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-7]- api end time:1695000362629, total time:9
|
||||
2023-09:26:32.500 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-8]- api start time:1695000392500 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的洗面台下的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:26:32.502 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-8]- [f8e5e9e1-8] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:26:32.503 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-8]- [f8e5e9e1-8] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:26:32.507 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-8]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","s","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","洗面","台下","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:26:32.509 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-8]- [f8e5e9e1-8] Encoding [org.hswebframework.web.crud.web.ResponseMessage@37971e31]
|
||||
2023-09:26:32.509 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-8]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"洗面","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":23,"tagName":"s","key":"台下","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000392508}
|
||||
2023-09:26:32.510 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-8]- api end time:1695000392510, total time:10
|
||||
2023-09:26:54.900 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-9]- api start time:1695000414900 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的桶子里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:26:54.902 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-9]- [f8e5e9e1-9] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:26:54.902 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-9]- [f8e5e9e1-9] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:26:54.908 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-9]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","桶子","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:26:54.908 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-9]- [f8e5e9e1-9] Encoding [org.hswebframework.web.crud.web.ResponseMessage@4d6a452b]
|
||||
2023-09:26:54.908 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-9]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"桶子","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000414908}
|
||||
2023-09:26:54.909 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-9]- api end time:1695000414909, total time:9
|
||||
2023-09:27:08.962 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-10]- api start time:1695000428962 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的柜子里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:08.964 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-10]- [f8e5e9e1-10] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:08.965 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-10]- [f8e5e9e1-10] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:08.969 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-10]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","柜子","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:08.970 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-10]- [f8e5e9e1-10] Encoding [org.hswebframework.web.crud.web.ResponseMessage@16ce79bf]
|
||||
2023-09:27:08.970 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-10]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"柜子","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000428969}
|
||||
2023-09:27:08.972 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-10]- api end time:1695000428972, total time:10
|
||||
2023-09:27:16.180 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-11]- api start time:1695000436180 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的衣柜里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:16.181 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-11]- [f8e5e9e1-11] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:16.181 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-11]- [f8e5e9e1-11] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:16.187 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-11]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","衣柜","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:16.187 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-11]- [f8e5e9e1-11] Encoding [org.hswebframework.web.crud.web.ResponseMessage@7808dfd0]
|
||||
2023-09:27:16.187 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-11]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"衣柜","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000436187}
|
||||
2023-09:27:16.187 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-11]- api end time:1695000436187, total time:7
|
||||
2023-09:27:23.587 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-12]- api start time:1695000443587 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的衣柜旁的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:23.589 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-12]- [f8e5e9e1-12] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:23.590 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-12]- [f8e5e9e1-12] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:23.595 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-12]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","衣柜","旁","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:23.595 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-12]- [f8e5e9e1-12] Encoding [org.hswebframework.web.crud.web.ResponseMessage@47824196]
|
||||
2023-09:27:23.595 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-12]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"衣柜","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"旁","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000443595}
|
||||
2023-09:27:23.596 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-12]- api end time:1695000443596, total time:9
|
||||
2023-09:27:40.106 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-13]- api start time:1695000460106 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的客厅阳台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:40.107 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-13]- [f8e5e9e1-13] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:40.109 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-13]- [f8e5e9e1-13] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:40.113 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-13]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","客厅","阳台","上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:40.114 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-13]- [f8e5e9e1-13] Encoding [org.hswebframework.web.crud.web.ResponseMessage@565d808b]
|
||||
2023-09:27:40.114 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-13]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"上","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000460114}
|
||||
2023-09:27:40.114 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-13]- api end time:1695000460114, total time:8
|
||||
2023-09:28:43.016 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-14]- api start time:1695000523016 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的客厅阳台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Cache-Control:"max-age=0", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:28:43.018 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-14]- [f8e5e9e1-14] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:28:43.018 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-14]- [f8e5e9e1-14] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:28:43.025 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-14]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","客厅","阳台上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:28:43.025 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-14]- [f8e5e9e1-14] Encoding [org.hswebframework.web.crud.web.ResponseMessage@48d78ae]
|
||||
2023-09:28:43.025 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-14]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000523025}
|
||||
2023-09:28:43.026 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-14]- api end time:1695000523026, total time:10
|
||||
2023-09:28:54.120 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-15]- api start time:1695000534120 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[使房间的客厅阳台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:28:54.122 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-15]- [f8e5e9e1-15] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:28:54.123 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-15]- [f8e5e9e1-15] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:28:54.128 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-15]- res{"msg":"","results":[{"tag":["v","n","u","n","n","u","n","v","v","n","v","n","n"],"word":["使","房间","的","客厅","阳台上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:28:54.128 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-15]- [f8e5e9e1-15] Encoding [org.hswebframework.web.crud.web.ResponseMessage@29cebcec]
|
||||
2023-09:28:54.128 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-15]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"使","proportion":null},{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null}]},"status":200,"timestamp":1695000534128}
|
||||
2023-09:28:54.129 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-15]- api end time:1695000534129, total time:9
|
||||
2023-09:29:17.633 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-16]- api start time:1695000557633 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[使房间的客厅阳台上的台灯变成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:29:17.635 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-16]- [f8e5e9e1-16] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:29:17.636 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-16]- [f8e5e9e1-16] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:29:17.641 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-16]- res{"msg":"","results":[{"tag":["v","n","u","n","n","u","n","v","n","v","n","n"],"word":["使","房间","的","客厅","阳台上","的","台灯","变成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:29:17.642 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-16]- [f8e5e9e1-16] Encoding [org.hswebframework.web.crud.web.ResponseMessage@30c496a6]
|
||||
2023-09:29:17.642 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-16]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"使","proportion":null},{"type":0,"tagName":"v","key":"变成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null}]},"status":200,"timestamp":1695000557642}
|
||||
2023-09:29:17.643 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-16]- api end time:1695000557643, total time:10
|
||||
2023-09:29:40.674 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-17]- api start time:1695000580674 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[使房间的客厅阳台上的台灯变成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Cache-Control:"max-age=0", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:29:40.676 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-17]- [f8e5e9e1-17] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:29:40.676 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-17]- [f8e5e9e1-17] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:29:40.681 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-17]- res{"msg":"","results":[{"tag":["v","n","u","n","n","u","n","v","n","v","n","n"],"word":["使","房间","的","客厅","阳台上","的","台灯","变成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:29:40.682 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-17]- [f8e5e9e1-17] Encoding [org.hswebframework.web.crud.web.ResponseMessage@580fa89b]
|
||||
2023-09:29:40.682 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-17]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"使","proportion":null},{"type":0,"tagName":"v","key":"变成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null}]},"status":200,"timestamp":1695000580682}
|
||||
2023-09:29:40.682 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-17]- api end time:1695000580682, total time:8
|
||||
2023-09:27:10.735 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] []- HV000001: Hibernate Validator 6.2.5.Final
|
||||
2023-09:27:12.869 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStartupProfileInfo,637] []- The following 1 profile is active: "dev"
|
||||
2023-09:27:13.265 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:27:13.266 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data R2DBC repositories in DEFAULT mode.
|
||||
2023-09:27:13.271 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 2 ms. Found 0 R2DBC repository interfaces.
|
||||
2023-09:27:13.284 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:27:13.285 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data Redis repositories in DEFAULT mode.
|
||||
2023-09:27:13.291 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 0 ms. Found 0 Redis repository interfaces.
|
||||
2023-09:27:13.396 [main] INFO o.s.c.c.s.GenericScope - [setSerializationId,283] []- BeanFactory id=1348f45b-4920-32e5-9d7c-521bf0a80d40
|
||||
2023-09:27:13.462 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$$EnhancerBySpringCGLIB$$fd770d72] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.471 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.472 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.472 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$427/999674172] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.473 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.476 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'expressionDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.ExpressionDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.476 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'annotationDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.AnnotationDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.478 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'alwaysNoMatchStrategyMatcher' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.479 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'switcherMethodMatcherPointcutAdvisor' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$SwitcherMethodMatcherPointcutAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.481 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration' of type [org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration$$EnhancerBySpringCGLIB$$58193d84] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.502 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'easyorm-org.hswebframework.web.crud.configuration.EasyormProperties' of type [org.hswebframework.web.crud.configuration.EasyormProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.503 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.EasyormConfiguration' of type [org.hswebframework.web.crud.configuration.EasyormConfiguration$$EnhancerBySpringCGLIB$$27060ca0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.506 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration' of type [org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration$$EnhancerBySpringCGLIB$$27932c0e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.513 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration' of type [org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.515 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'spring.r2dbc-org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties' of type [org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.601 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'connectionFactory' of type [io.r2dbc.pool.ConnectionPool] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.603 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'reactiveSqlExecutor' of type [org.hswebframework.web.crud.sql.DefaultR2dbcExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.616 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'syncSqlExecutor' of type [org.hswebframework.ezorm.rdb.executor.reactive.ReactiveSyncSqlExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.639 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'databaseMetadata' of type [org.hswebframework.ezorm.rdb.metadata.RDBDatabaseMetadata] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.645 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration' of type [org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$cc014776] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.972 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_en.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_zh.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_en.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_zh.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_en.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_zh.properties -> messages
|
||||
2023-09:27:17.645 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:19.502 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:19.685 [main] INFO o.s.b.w.e.n.NettyWebServer - [start,111] []- Netty started on port 8091
|
||||
2023-09:27:21.560 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:23.429 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:23.436 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStarted,61] []- Started IotAdminHttpApiApplication in 14.915 seconds (JVM running for 16.122)
|
||||
2023-09:27:23.439 [main] DEBUG o.h.e.c.m.AbstractSchemaMetadata - [lambda$loadMetadata$2,94] []- load table metadata s_system ,use parser:MysqlTableMetadataParser
|
||||
2023-09:27:23.767 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select count(1) as 'total' from information_schema.`TABLES` where table_schema=? and table_name=?
|
||||
2023-09:27:23.769 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.769 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select count(1) as 'total' from information_schema.`TABLES` where table_schema='qiuguo_iot' and table_name='s_system'
|
||||
2023-09:27:23.847 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema=? and table_name like ?
|
||||
2023-09:27:23.847 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.848 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:27:23.927 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema=? and table_name like ?
|
||||
2023-09:27:23.927 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.927 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:27:23.986 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = ? and TABLE_NAME like ?
|
||||
2023-09:27:23.986 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.986 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = 'qiuguo_iot' and TABLE_NAME like 's_system'
|
||||
2023-09:27:24.066 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = ? limit ?,?
|
||||
2023-09:27:24.067 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: default(String),0(Integer),1(Integer)
|
||||
2023-09:27:24.067 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = 'default' limit 0,1
|
||||
2023-09:27:24.257 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: update qiuguo_iot.s_system set `framework_version` = ? , `website` = ? , `major_version` = ? , `name` = ? , `revision_version` = ? , `dependencies` = ? , `minor_version` = ? where `name` = ?
|
||||
2023-09:27:24.257 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: {"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}(String),(String),1(Integer),default(String),0(Integer),[](String),0(Integer),default(String)
|
||||
2023-09:27:24.258 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: update qiuguo_iot.s_system set `framework_version` = '{"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}' , `website` = '' , `major_version` = 1 , `name` = 'default' , `revision_version` = 0 , `dependencies` = '[]' , `minor_version` = 0 where `name` = 'default'
|
||||
2023-09:27:24.270 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [lambda$null$9,146] []- ==> Updated: 1
|
||||
|
||||
@ -1,180 +1,61 @@
|
||||
2023-09:21:25.447 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] []- HV000001: Hibernate Validator 6.2.5.Final
|
||||
2023-09:21:27.531 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStartupProfileInfo,637] []- The following 1 profile is active: "dev"
|
||||
2023-09:21:27.960 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:21:27.962 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data R2DBC repositories in DEFAULT mode.
|
||||
2023-09:21:27.967 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 2 ms. Found 0 R2DBC repository interfaces.
|
||||
2023-09:21:27.977 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:21:27.977 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data Redis repositories in DEFAULT mode.
|
||||
2023-09:21:27.984 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 0 ms. Found 0 Redis repository interfaces.
|
||||
2023-09:21:28.097 [main] INFO o.s.c.c.s.GenericScope - [setSerializationId,283] []- BeanFactory id=8037caee-400e-3a8d-bb03-baf410acf6a6
|
||||
2023-09:21:28.164 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$$EnhancerBySpringCGLIB$$a58564a7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.172 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.173 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.174 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$427/1004862656] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.175 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.177 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'expressionDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.ExpressionDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.177 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'annotationDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.AnnotationDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.179 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'alwaysNoMatchStrategyMatcher' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.180 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'switcherMethodMatcherPointcutAdvisor' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$SwitcherMethodMatcherPointcutAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.181 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration' of type [org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration$$EnhancerBySpringCGLIB$$2794b9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.199 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'easyorm-org.hswebframework.web.crud.configuration.EasyormProperties' of type [org.hswebframework.web.crud.configuration.EasyormProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.200 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.EasyormConfiguration' of type [org.hswebframework.web.crud.configuration.EasyormConfiguration$$EnhancerBySpringCGLIB$$cf1463d5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.203 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration' of type [org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration$$EnhancerBySpringCGLIB$$cfa18343] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.209 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration' of type [org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.211 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'spring.r2dbc-org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties' of type [org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.303 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'connectionFactory' of type [io.r2dbc.pool.ConnectionPool] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.305 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'reactiveSqlExecutor' of type [org.hswebframework.web.crud.sql.DefaultR2dbcExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.318 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'syncSqlExecutor' of type [org.hswebframework.ezorm.rdb.executor.reactive.ReactiveSyncSqlExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.339 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'databaseMetadata' of type [org.hswebframework.ezorm.rdb.metadata.RDBDatabaseMetadata] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.346 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration' of type [org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$740f9eab] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.665 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_en.properties -> messages
|
||||
2023-09:21:28.666 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_zh.properties -> messages
|
||||
2023-09:21:28.666 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_en.properties -> messages
|
||||
2023-09:21:28.667 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_zh.properties -> messages
|
||||
2023-09:21:28.667 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_en.properties -> messages
|
||||
2023-09:21:28.667 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_zh.properties -> messages
|
||||
2023-09:21:32.279 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:34.149 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:34.329 [main] INFO o.s.b.w.e.n.NettyWebServer - [start,111] []- Netty started on port 8091
|
||||
2023-09:21:36.162 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:38.001 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:38.008 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStarted,61] []- Started IotAdminHttpApiApplication in 14.834 seconds (JVM running for 15.999)
|
||||
2023-09:21:38.011 [main] DEBUG o.h.e.c.m.AbstractSchemaMetadata - [lambda$loadMetadata$2,94] []- load table metadata s_system ,use parser:MysqlTableMetadataParser
|
||||
2023-09:21:38.348 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select count(1) as 'total' from information_schema.`TABLES` where table_schema=? and table_name=?
|
||||
2023-09:21:38.349 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.349 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select count(1) as 'total' from information_schema.`TABLES` where table_schema='qiuguo_iot' and table_name='s_system'
|
||||
2023-09:21:38.419 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema=? and table_name like ?
|
||||
2023-09:21:38.419 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.420 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:21:38.483 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema=? and table_name like ?
|
||||
2023-09:21:38.484 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.484 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:21:38.540 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = ? and TABLE_NAME like ?
|
||||
2023-09:21:38.541 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.542 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = 'qiuguo_iot' and TABLE_NAME like 's_system'
|
||||
2023-09:21:38.624 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = ? limit ?,?
|
||||
2023-09:21:38.625 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: default(String),0(Integer),1(Integer)
|
||||
2023-09:21:38.625 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = 'default' limit 0,1
|
||||
2023-09:21:38.820 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: update qiuguo_iot.s_system set `framework_version` = ? , `website` = ? , `major_version` = ? , `name` = ? , `revision_version` = ? , `dependencies` = ? , `minor_version` = ? where `name` = ?
|
||||
2023-09:21:38.820 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: {"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}(String),(String),1(Integer),default(String),0(Integer),[](String),0(Integer),default(String)
|
||||
2023-09:21:38.821 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: update qiuguo_iot.s_system set `framework_version` = '{"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}' , `website` = '' , `major_version` = 1 , `name` = 'default' , `revision_version` = 0 , `dependencies` = '[]' , `minor_version` = 0 where `name` = 'default'
|
||||
2023-09:21:38.832 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [lambda$null$9,146] []- ==> Updated: 1
|
||||
2023-09:21:45.590 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-1]- api start time:1695000105589 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的地上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Cache-Control:"max-age=0", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:21:45.688 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-1]- [f8e5e9e1-1] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:21:45.689 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-1]- [f8e5e9e1-1] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:21:45.770 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-1]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","s","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","地上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:21:45.774 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-1]- [f8e5e9e1-1] Encoding [org.hswebframework.web.crud.web.ResponseMessage@cc9688a]
|
||||
2023-09:21:45.776 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-1]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":23,"tagName":"s","key":"地上","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000105774}
|
||||
2023-09:21:45.778 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-1]- api end time:1695000105778, total time:189
|
||||
2023-09:22:53.553 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-2]- api start time:1695000173553 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的桌上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:22:53.555 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-2]- [f8e5e9e1-2] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:22:53.555 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-2]- [f8e5e9e1-2] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:22:53.560 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-2]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","s","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","桌上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:22:53.560 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-2]- [f8e5e9e1-2] Encoding [org.hswebframework.web.crud.web.ResponseMessage@24059977]
|
||||
2023-09:22:53.561 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-2]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":23,"tagName":"s","key":"桌上","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000173560}
|
||||
2023-09:22:53.562 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-2]- api end time:1695000173562, total time:9
|
||||
2023-09:24:22.362 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-3]- api start time:1695000262362 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的桌子的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:24:22.365 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-3]- [f8e5e9e1-3] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:24:22.365 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-3]- [f8e5e9e1-3] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:24:22.369 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-3]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","桌子","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:24:22.370 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-3]- [f8e5e9e1-3] Encoding [org.hswebframework.web.crud.web.ResponseMessage@79b960fd]
|
||||
2023-09:24:22.370 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-3]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"桌子","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000262370}
|
||||
2023-09:24:22.371 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-3]- api end time:1695000262371, total time:9
|
||||
2023-09:24:36.987 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-4]- api start time:1695000276987 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的洗面台的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:24:36.990 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-4]- [f8e5e9e1-4] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:24:36.990 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-4]- [f8e5e9e1-4] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:24:36.995 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-4]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","洗面台","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:24:36.996 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-4]- [f8e5e9e1-4] Encoding [org.hswebframework.web.crud.web.ResponseMessage@400ff84e]
|
||||
2023-09:24:36.996 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-4]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"洗面台","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000276996}
|
||||
2023-09:24:36.996 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-4]- api end time:1695000276996, total time:9
|
||||
2023-09:24:42.310 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-5]- api start time:1695000282310 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的洗面台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:24:42.312 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-5]- [f8e5e9e1-5] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:24:42.312 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-5]- [f8e5e9e1-5] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:24:42.318 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-5]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","洗面台","上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:24:42.318 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-5]- [f8e5e9e1-5] Encoding [org.hswebframework.web.crud.web.ResponseMessage@6b077a4a]
|
||||
2023-09:24:42.318 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-5]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"洗面台","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"上","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000282318}
|
||||
2023-09:24:42.319 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-5]- api end time:1695000282319, total time:9
|
||||
2023-09:25:53.318 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-6]- api start time:1695000353318 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的淋浴房的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:25:53.321 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-6]- [f8e5e9e1-6] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:25:53.321 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-6]- [f8e5e9e1-6] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:25:53.326 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-6]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","淋浴房","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:25:53.327 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-6]- [f8e5e9e1-6] Encoding [org.hswebframework.web.crud.web.ResponseMessage@12d3fba5]
|
||||
2023-09:25:53.328 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-6]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"淋浴房","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000353327}
|
||||
2023-09:25:53.328 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-6]- api end time:1695000353328, total time:10
|
||||
2023-09:26:02.620 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-7]- api start time:1695000362620 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的浴室里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:26:02.622 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-7]- [f8e5e9e1-7] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:26:02.622 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-7]- [f8e5e9e1-7] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:26:02.627 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-7]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","浴室","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:26:02.628 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-7]- [f8e5e9e1-7] Encoding [org.hswebframework.web.crud.web.ResponseMessage@571554ed]
|
||||
2023-09:26:02.628 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-7]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"浴室","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000362628}
|
||||
2023-09:26:02.629 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-7]- api end time:1695000362629, total time:9
|
||||
2023-09:26:32.500 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-8]- api start time:1695000392500 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的洗面台下的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:26:32.502 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-8]- [f8e5e9e1-8] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:26:32.503 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-8]- [f8e5e9e1-8] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:26:32.507 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-8]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","s","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","洗面","台下","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:26:32.509 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-8]- [f8e5e9e1-8] Encoding [org.hswebframework.web.crud.web.ResponseMessage@37971e31]
|
||||
2023-09:26:32.509 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-8]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"洗面","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":23,"tagName":"s","key":"台下","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000392508}
|
||||
2023-09:26:32.510 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-8]- api end time:1695000392510, total time:10
|
||||
2023-09:26:54.900 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-9]- api start time:1695000414900 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的桶子里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:26:54.902 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-9]- [f8e5e9e1-9] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:26:54.902 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-9]- [f8e5e9e1-9] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:26:54.908 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-9]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","桶子","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:26:54.908 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-9]- [f8e5e9e1-9] Encoding [org.hswebframework.web.crud.web.ResponseMessage@4d6a452b]
|
||||
2023-09:26:54.908 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-9]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"桶子","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000414908}
|
||||
2023-09:26:54.909 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-9]- api end time:1695000414909, total time:9
|
||||
2023-09:27:08.962 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-10]- api start time:1695000428962 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的柜子里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:08.964 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-10]- [f8e5e9e1-10] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:08.965 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-10]- [f8e5e9e1-10] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:08.969 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-10]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","柜子","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:08.970 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-10]- [f8e5e9e1-10] Encoding [org.hswebframework.web.crud.web.ResponseMessage@16ce79bf]
|
||||
2023-09:27:08.970 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-10]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"柜子","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000428969}
|
||||
2023-09:27:08.972 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-10]- api end time:1695000428972, total time:10
|
||||
2023-09:27:16.180 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-11]- api start time:1695000436180 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的衣柜里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:16.181 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-11]- [f8e5e9e1-11] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:16.181 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-11]- [f8e5e9e1-11] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:16.187 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-11]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","衣柜","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:16.187 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-11]- [f8e5e9e1-11] Encoding [org.hswebframework.web.crud.web.ResponseMessage@7808dfd0]
|
||||
2023-09:27:16.187 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-11]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"衣柜","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000436187}
|
||||
2023-09:27:16.187 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-11]- api end time:1695000436187, total time:7
|
||||
2023-09:27:23.587 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-12]- api start time:1695000443587 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的衣柜旁的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:23.589 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-12]- [f8e5e9e1-12] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:23.590 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-12]- [f8e5e9e1-12] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:23.595 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-12]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","衣柜","旁","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:23.595 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-12]- [f8e5e9e1-12] Encoding [org.hswebframework.web.crud.web.ResponseMessage@47824196]
|
||||
2023-09:27:23.595 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-12]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"衣柜","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"旁","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000443595}
|
||||
2023-09:27:23.596 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-12]- api end time:1695000443596, total time:9
|
||||
2023-09:27:40.106 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-13]- api start time:1695000460106 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的客厅阳台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:40.107 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-13]- [f8e5e9e1-13] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:40.109 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-13]- [f8e5e9e1-13] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:40.113 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-13]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","客厅","阳台","上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:40.114 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-13]- [f8e5e9e1-13] Encoding [org.hswebframework.web.crud.web.ResponseMessage@565d808b]
|
||||
2023-09:27:40.114 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-13]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"上","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000460114}
|
||||
2023-09:27:40.114 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-13]- api end time:1695000460114, total time:8
|
||||
2023-09:28:43.016 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-14]- api start time:1695000523016 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的客厅阳台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Cache-Control:"max-age=0", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:28:43.018 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-14]- [f8e5e9e1-14] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:28:43.018 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-14]- [f8e5e9e1-14] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:28:43.025 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-14]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","客厅","阳台上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:28:43.025 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-14]- [f8e5e9e1-14] Encoding [org.hswebframework.web.crud.web.ResponseMessage@48d78ae]
|
||||
2023-09:28:43.025 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-14]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000523025}
|
||||
2023-09:28:43.026 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-14]- api end time:1695000523026, total time:10
|
||||
2023-09:28:54.120 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-15]- api start time:1695000534120 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[使房间的客厅阳台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:28:54.122 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-15]- [f8e5e9e1-15] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:28:54.123 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-15]- [f8e5e9e1-15] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:28:54.128 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-15]- res{"msg":"","results":[{"tag":["v","n","u","n","n","u","n","v","v","n","v","n","n"],"word":["使","房间","的","客厅","阳台上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:28:54.128 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-15]- [f8e5e9e1-15] Encoding [org.hswebframework.web.crud.web.ResponseMessage@29cebcec]
|
||||
2023-09:28:54.128 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-15]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"使","proportion":null},{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null}]},"status":200,"timestamp":1695000534128}
|
||||
2023-09:28:54.129 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-15]- api end time:1695000534129, total time:9
|
||||
2023-09:29:17.633 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-16]- api start time:1695000557633 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[使房间的客厅阳台上的台灯变成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:29:17.635 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-16]- [f8e5e9e1-16] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:29:17.636 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-16]- [f8e5e9e1-16] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:29:17.641 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-16]- res{"msg":"","results":[{"tag":["v","n","u","n","n","u","n","v","n","v","n","n"],"word":["使","房间","的","客厅","阳台上","的","台灯","变成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:29:17.642 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-16]- [f8e5e9e1-16] Encoding [org.hswebframework.web.crud.web.ResponseMessage@30c496a6]
|
||||
2023-09:29:17.642 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-16]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"使","proportion":null},{"type":0,"tagName":"v","key":"变成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null}]},"status":200,"timestamp":1695000557642}
|
||||
2023-09:29:17.643 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-16]- api end time:1695000557643, total time:10
|
||||
2023-09:29:40.674 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-17]- api start time:1695000580674 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[使房间的客厅阳台上的台灯变成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Cache-Control:"max-age=0", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:29:40.676 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-17]- [f8e5e9e1-17] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:29:40.676 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-17]- [f8e5e9e1-17] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:29:40.681 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-17]- res{"msg":"","results":[{"tag":["v","n","u","n","n","u","n","v","n","v","n","n"],"word":["使","房间","的","客厅","阳台上","的","台灯","变成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:29:40.682 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-17]- [f8e5e9e1-17] Encoding [org.hswebframework.web.crud.web.ResponseMessage@580fa89b]
|
||||
2023-09:29:40.682 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-17]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"使","proportion":null},{"type":0,"tagName":"v","key":"变成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null}]},"status":200,"timestamp":1695000580682}
|
||||
2023-09:29:40.682 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-17]- api end time:1695000580682, total time:8
|
||||
2023-09:27:10.735 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] []- HV000001: Hibernate Validator 6.2.5.Final
|
||||
2023-09:27:12.869 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStartupProfileInfo,637] []- The following 1 profile is active: "dev"
|
||||
2023-09:27:13.265 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:27:13.266 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data R2DBC repositories in DEFAULT mode.
|
||||
2023-09:27:13.271 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 2 ms. Found 0 R2DBC repository interfaces.
|
||||
2023-09:27:13.284 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:27:13.285 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data Redis repositories in DEFAULT mode.
|
||||
2023-09:27:13.291 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 0 ms. Found 0 Redis repository interfaces.
|
||||
2023-09:27:13.396 [main] INFO o.s.c.c.s.GenericScope - [setSerializationId,283] []- BeanFactory id=1348f45b-4920-32e5-9d7c-521bf0a80d40
|
||||
2023-09:27:13.462 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$$EnhancerBySpringCGLIB$$fd770d72] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.471 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.472 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.472 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$427/999674172] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.473 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.476 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'expressionDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.ExpressionDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.476 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'annotationDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.AnnotationDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.478 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'alwaysNoMatchStrategyMatcher' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.479 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'switcherMethodMatcherPointcutAdvisor' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$SwitcherMethodMatcherPointcutAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.481 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration' of type [org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration$$EnhancerBySpringCGLIB$$58193d84] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.502 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'easyorm-org.hswebframework.web.crud.configuration.EasyormProperties' of type [org.hswebframework.web.crud.configuration.EasyormProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.503 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.EasyormConfiguration' of type [org.hswebframework.web.crud.configuration.EasyormConfiguration$$EnhancerBySpringCGLIB$$27060ca0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.506 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration' of type [org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration$$EnhancerBySpringCGLIB$$27932c0e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.513 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration' of type [org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.515 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'spring.r2dbc-org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties' of type [org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.601 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'connectionFactory' of type [io.r2dbc.pool.ConnectionPool] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.603 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'reactiveSqlExecutor' of type [org.hswebframework.web.crud.sql.DefaultR2dbcExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.616 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'syncSqlExecutor' of type [org.hswebframework.ezorm.rdb.executor.reactive.ReactiveSyncSqlExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.639 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'databaseMetadata' of type [org.hswebframework.ezorm.rdb.metadata.RDBDatabaseMetadata] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.645 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration' of type [org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$cc014776] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.972 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_en.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_zh.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_en.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_zh.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_en.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_zh.properties -> messages
|
||||
2023-09:27:17.645 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:19.502 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:19.685 [main] INFO o.s.b.w.e.n.NettyWebServer - [start,111] []- Netty started on port 8091
|
||||
2023-09:27:21.560 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:23.429 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:23.436 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStarted,61] []- Started IotAdminHttpApiApplication in 14.915 seconds (JVM running for 16.122)
|
||||
2023-09:27:23.439 [main] DEBUG o.h.e.c.m.AbstractSchemaMetadata - [lambda$loadMetadata$2,94] []- load table metadata s_system ,use parser:MysqlTableMetadataParser
|
||||
2023-09:27:23.767 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select count(1) as 'total' from information_schema.`TABLES` where table_schema=? and table_name=?
|
||||
2023-09:27:23.769 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.769 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select count(1) as 'total' from information_schema.`TABLES` where table_schema='qiuguo_iot' and table_name='s_system'
|
||||
2023-09:27:23.847 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema=? and table_name like ?
|
||||
2023-09:27:23.847 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.848 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:27:23.927 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema=? and table_name like ?
|
||||
2023-09:27:23.927 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.927 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:27:23.986 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = ? and TABLE_NAME like ?
|
||||
2023-09:27:23.986 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.986 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = 'qiuguo_iot' and TABLE_NAME like 's_system'
|
||||
2023-09:27:24.066 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = ? limit ?,?
|
||||
2023-09:27:24.067 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: default(String),0(Integer),1(Integer)
|
||||
2023-09:27:24.067 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = 'default' limit 0,1
|
||||
2023-09:27:24.257 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: update qiuguo_iot.s_system set `framework_version` = ? , `website` = ? , `major_version` = ? , `name` = ? , `revision_version` = ? , `dependencies` = ? , `minor_version` = ? where `name` = ?
|
||||
2023-09:27:24.257 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: {"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}(String),(String),1(Integer),default(String),0(Integer),[](String),0(Integer),default(String)
|
||||
2023-09:27:24.258 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: update qiuguo_iot.s_system set `framework_version` = '{"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}' , `website` = '' , `major_version` = 1 , `name` = 'default' , `revision_version` = 0 , `dependencies` = '[]' , `minor_version` = 0 where `name` = 'default'
|
||||
2023-09:27:24.270 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [lambda$null$9,146] []- ==> Updated: 1
|
||||
|
||||
@ -1,180 +1,61 @@
|
||||
2023-09:21:25.447 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] []- HV000001: Hibernate Validator 6.2.5.Final
|
||||
2023-09:21:27.531 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStartupProfileInfo,637] []- The following 1 profile is active: "dev"
|
||||
2023-09:21:27.960 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:21:27.962 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data R2DBC repositories in DEFAULT mode.
|
||||
2023-09:21:27.967 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 2 ms. Found 0 R2DBC repository interfaces.
|
||||
2023-09:21:27.977 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:21:27.977 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data Redis repositories in DEFAULT mode.
|
||||
2023-09:21:27.984 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 0 ms. Found 0 Redis repository interfaces.
|
||||
2023-09:21:28.097 [main] INFO o.s.c.c.s.GenericScope - [setSerializationId,283] []- BeanFactory id=8037caee-400e-3a8d-bb03-baf410acf6a6
|
||||
2023-09:21:28.164 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$$EnhancerBySpringCGLIB$$a58564a7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.172 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.173 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.174 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$427/1004862656] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.175 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.177 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'expressionDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.ExpressionDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.177 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'annotationDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.AnnotationDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.179 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'alwaysNoMatchStrategyMatcher' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.180 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'switcherMethodMatcherPointcutAdvisor' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$SwitcherMethodMatcherPointcutAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.181 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration' of type [org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration$$EnhancerBySpringCGLIB$$2794b9] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.199 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'easyorm-org.hswebframework.web.crud.configuration.EasyormProperties' of type [org.hswebframework.web.crud.configuration.EasyormProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.200 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.EasyormConfiguration' of type [org.hswebframework.web.crud.configuration.EasyormConfiguration$$EnhancerBySpringCGLIB$$cf1463d5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.203 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration' of type [org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration$$EnhancerBySpringCGLIB$$cfa18343] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.209 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration' of type [org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.211 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'spring.r2dbc-org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties' of type [org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.303 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'connectionFactory' of type [io.r2dbc.pool.ConnectionPool] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.305 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'reactiveSqlExecutor' of type [org.hswebframework.web.crud.sql.DefaultR2dbcExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.318 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'syncSqlExecutor' of type [org.hswebframework.ezorm.rdb.executor.reactive.ReactiveSyncSqlExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.339 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'databaseMetadata' of type [org.hswebframework.ezorm.rdb.metadata.RDBDatabaseMetadata] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.346 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration' of type [org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$740f9eab] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:21:28.665 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_en.properties -> messages
|
||||
2023-09:21:28.666 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_zh.properties -> messages
|
||||
2023-09:21:28.666 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_en.properties -> messages
|
||||
2023-09:21:28.667 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_zh.properties -> messages
|
||||
2023-09:21:28.667 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_en.properties -> messages
|
||||
2023-09:21:28.667 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_zh.properties -> messages
|
||||
2023-09:21:32.279 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:34.149 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:34.329 [main] INFO o.s.b.w.e.n.NettyWebServer - [start,111] []- Netty started on port 8091
|
||||
2023-09:21:36.162 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:38.001 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:21:38.008 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStarted,61] []- Started IotAdminHttpApiApplication in 14.834 seconds (JVM running for 15.999)
|
||||
2023-09:21:38.011 [main] DEBUG o.h.e.c.m.AbstractSchemaMetadata - [lambda$loadMetadata$2,94] []- load table metadata s_system ,use parser:MysqlTableMetadataParser
|
||||
2023-09:21:38.348 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select count(1) as 'total' from information_schema.`TABLES` where table_schema=? and table_name=?
|
||||
2023-09:21:38.349 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.349 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select count(1) as 'total' from information_schema.`TABLES` where table_schema='qiuguo_iot' and table_name='s_system'
|
||||
2023-09:21:38.419 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema=? and table_name like ?
|
||||
2023-09:21:38.419 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.420 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:21:38.483 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema=? and table_name like ?
|
||||
2023-09:21:38.484 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.484 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:21:38.540 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = ? and TABLE_NAME like ?
|
||||
2023-09:21:38.541 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:21:38.542 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = 'qiuguo_iot' and TABLE_NAME like 's_system'
|
||||
2023-09:21:38.624 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = ? limit ?,?
|
||||
2023-09:21:38.625 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: default(String),0(Integer),1(Integer)
|
||||
2023-09:21:38.625 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = 'default' limit 0,1
|
||||
2023-09:21:38.820 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: update qiuguo_iot.s_system set `framework_version` = ? , `website` = ? , `major_version` = ? , `name` = ? , `revision_version` = ? , `dependencies` = ? , `minor_version` = ? where `name` = ?
|
||||
2023-09:21:38.820 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: {"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}(String),(String),1(Integer),default(String),0(Integer),[](String),0(Integer),default(String)
|
||||
2023-09:21:38.821 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: update qiuguo_iot.s_system set `framework_version` = '{"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}' , `website` = '' , `major_version` = 1 , `name` = 'default' , `revision_version` = 0 , `dependencies` = '[]' , `minor_version` = 0 where `name` = 'default'
|
||||
2023-09:21:38.832 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [lambda$null$9,146] []- ==> Updated: 1
|
||||
2023-09:21:45.590 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-1]- api start time:1695000105589 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的地上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Cache-Control:"max-age=0", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:21:45.688 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-1]- [f8e5e9e1-1] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:21:45.689 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-1]- [f8e5e9e1-1] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:21:45.770 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-1]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","s","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","地上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:21:45.774 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-1]- [f8e5e9e1-1] Encoding [org.hswebframework.web.crud.web.ResponseMessage@cc9688a]
|
||||
2023-09:21:45.776 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-1]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":23,"tagName":"s","key":"地上","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000105774}
|
||||
2023-09:21:45.778 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-1]- api end time:1695000105778, total time:189
|
||||
2023-09:22:53.553 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-2]- api start time:1695000173553 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的桌上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:22:53.555 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-2]- [f8e5e9e1-2] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:22:53.555 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-2]- [f8e5e9e1-2] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:22:53.560 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-2]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","s","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","桌上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:22:53.560 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-2]- [f8e5e9e1-2] Encoding [org.hswebframework.web.crud.web.ResponseMessage@24059977]
|
||||
2023-09:22:53.561 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-2]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":23,"tagName":"s","key":"桌上","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000173560}
|
||||
2023-09:22:53.562 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-2]- api end time:1695000173562, total time:9
|
||||
2023-09:24:22.362 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-3]- api start time:1695000262362 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的桌子的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:24:22.365 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-3]- [f8e5e9e1-3] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:24:22.365 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-3]- [f8e5e9e1-3] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:24:22.369 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-3]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","桌子","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:24:22.370 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-3]- [f8e5e9e1-3] Encoding [org.hswebframework.web.crud.web.ResponseMessage@79b960fd]
|
||||
2023-09:24:22.370 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-3]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"桌子","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000262370}
|
||||
2023-09:24:22.371 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-3]- api end time:1695000262371, total time:9
|
||||
2023-09:24:36.987 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-4]- api start time:1695000276987 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的洗面台的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:24:36.990 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-4]- [f8e5e9e1-4] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:24:36.990 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-4]- [f8e5e9e1-4] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:24:36.995 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-4]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","洗面台","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:24:36.996 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-4]- [f8e5e9e1-4] Encoding [org.hswebframework.web.crud.web.ResponseMessage@400ff84e]
|
||||
2023-09:24:36.996 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-4]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"洗面台","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000276996}
|
||||
2023-09:24:36.996 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-4]- api end time:1695000276996, total time:9
|
||||
2023-09:24:42.310 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-5]- api start time:1695000282310 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的洗面台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:24:42.312 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-5]- [f8e5e9e1-5] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:24:42.312 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-5]- [f8e5e9e1-5] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:24:42.318 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-5]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","洗面台","上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:24:42.318 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-5]- [f8e5e9e1-5] Encoding [org.hswebframework.web.crud.web.ResponseMessage@6b077a4a]
|
||||
2023-09:24:42.318 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-5]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"洗面台","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"上","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000282318}
|
||||
2023-09:24:42.319 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-5]- api end time:1695000282319, total time:9
|
||||
2023-09:25:53.318 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-6]- api start time:1695000353318 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的淋浴房的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:25:53.321 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-6]- [f8e5e9e1-6] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:25:53.321 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-6]- [f8e5e9e1-6] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:25:53.326 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-6]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","淋浴房","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:25:53.327 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-6]- [f8e5e9e1-6] Encoding [org.hswebframework.web.crud.web.ResponseMessage@12d3fba5]
|
||||
2023-09:25:53.328 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-6]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"淋浴房","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000353327}
|
||||
2023-09:25:53.328 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-6]- api end time:1695000353328, total time:10
|
||||
2023-09:26:02.620 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-7]- api start time:1695000362620 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的浴室里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:26:02.622 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-7]- [f8e5e9e1-7] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:26:02.622 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-7]- [f8e5e9e1-7] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:26:02.627 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-7]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","浴室","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:26:02.628 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-7]- [f8e5e9e1-7] Encoding [org.hswebframework.web.crud.web.ResponseMessage@571554ed]
|
||||
2023-09:26:02.628 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-7]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"浴室","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000362628}
|
||||
2023-09:26:02.629 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-7]- api end time:1695000362629, total time:9
|
||||
2023-09:26:32.500 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-8]- api start time:1695000392500 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的洗面台下的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:26:32.502 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-8]- [f8e5e9e1-8] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:26:32.503 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-8]- [f8e5e9e1-8] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:26:32.507 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-8]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","s","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","洗面","台下","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:26:32.509 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-8]- [f8e5e9e1-8] Encoding [org.hswebframework.web.crud.web.ResponseMessage@37971e31]
|
||||
2023-09:26:32.509 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-8]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"洗面","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":23,"tagName":"s","key":"台下","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000392508}
|
||||
2023-09:26:32.510 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-8]- api end time:1695000392510, total time:10
|
||||
2023-09:26:54.900 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-9]- api start time:1695000414900 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的桶子里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:26:54.902 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-9]- [f8e5e9e1-9] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:26:54.902 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-9]- [f8e5e9e1-9] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:26:54.908 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-9]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","桶子","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:26:54.908 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-9]- [f8e5e9e1-9] Encoding [org.hswebframework.web.crud.web.ResponseMessage@4d6a452b]
|
||||
2023-09:26:54.908 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-9]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"桶子","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000414908}
|
||||
2023-09:26:54.909 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-9]- api end time:1695000414909, total time:9
|
||||
2023-09:27:08.962 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-10]- api start time:1695000428962 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的柜子里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:08.964 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-10]- [f8e5e9e1-10] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:08.965 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-10]- [f8e5e9e1-10] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:08.969 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-10]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","柜子","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:08.970 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-10]- [f8e5e9e1-10] Encoding [org.hswebframework.web.crud.web.ResponseMessage@16ce79bf]
|
||||
2023-09:27:08.970 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-10]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"柜子","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000428969}
|
||||
2023-09:27:08.972 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-10]- api end time:1695000428972, total time:10
|
||||
2023-09:27:16.180 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-11]- api start time:1695000436180 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的衣柜里的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:16.181 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-11]- [f8e5e9e1-11] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:16.181 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-11]- [f8e5e9e1-11] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:16.187 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-11]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","衣柜","里","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:16.187 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-11]- [f8e5e9e1-11] Encoding [org.hswebframework.web.crud.web.ResponseMessage@7808dfd0]
|
||||
2023-09:27:16.187 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-11]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"衣柜","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"里","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000436187}
|
||||
2023-09:27:16.187 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-11]- api end time:1695000436187, total time:7
|
||||
2023-09:27:23.587 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-12]- api start time:1695000443587 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的衣柜旁的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:23.589 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-12]- [f8e5e9e1-12] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:23.590 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-12]- [f8e5e9e1-12] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:23.595 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-12]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","衣柜","旁","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:23.595 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-12]- [f8e5e9e1-12] Encoding [org.hswebframework.web.crud.web.ResponseMessage@47824196]
|
||||
2023-09:27:23.595 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-12]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"衣柜","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"旁","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000443595}
|
||||
2023-09:27:23.596 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-12]- api end time:1695000443596, total time:9
|
||||
2023-09:27:40.106 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-13]- api start time:1695000460106 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的客厅阳台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:27:40.107 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-13]- [f8e5e9e1-13] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:27:40.109 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-13]- [f8e5e9e1-13] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:27:40.113 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-13]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","n","f","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","客厅","阳台","上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:27:40.114 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-13]- [f8e5e9e1-13] Encoding [org.hswebframework.web.crud.web.ResponseMessage@565d808b]
|
||||
2023-09:27:40.114 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-13]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":12,"tagName":"f","key":"上","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000460114}
|
||||
2023-09:27:40.114 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-13]- api end time:1695000460114, total time:8
|
||||
2023-09:28:43.016 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-14]- api start time:1695000523016 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[帮我把房间的客厅阳台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Cache-Control:"max-age=0", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:28:43.018 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-14]- [f8e5e9e1-14] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:28:43.018 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-14]- [f8e5e9e1-14] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:28:43.025 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-14]- res{"msg":"","results":[{"tag":["zd","r","zd","n","u","n","n","u","n","v","v","n","v","n","n"],"word":["帮","我","把","房间","的","客厅","阳台上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:28:43.025 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-14]- [f8e5e9e1-14] Encoding [org.hswebframework.web.crud.web.ResponseMessage@48d78ae]
|
||||
2023-09:28:43.025 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-14]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":22,"tagName":"r","key":"我","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":99,"tagName":"zd","key":"帮","proportion":null},{"type":99,"tagName":"zd","key":"把","proportion":null}]},"status":200,"timestamp":1695000523025}
|
||||
2023-09:28:43.026 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-14]- api end time:1695000523026, total time:10
|
||||
2023-09:28:54.120 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-15]- api start time:1695000534120 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[使房间的客厅阳台上的台灯设置成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:28:54.122 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-15]- [f8e5e9e1-15] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:28:54.123 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-15]- [f8e5e9e1-15] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:28:54.128 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-15]- res{"msg":"","results":[{"tag":["v","n","u","n","n","u","n","v","v","n","v","n","n"],"word":["使","房间","的","客厅","阳台上","的","台灯","设置","成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:28:54.128 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-15]- [f8e5e9e1-15] Encoding [org.hswebframework.web.crud.web.ResponseMessage@29cebcec]
|
||||
2023-09:28:54.128 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-15]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"使","proportion":null},{"type":0,"tagName":"v","key":"设置","proportion":null},{"type":0,"tagName":"v","key":"成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null}]},"status":200,"timestamp":1695000534128}
|
||||
2023-09:28:54.129 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-15]- api end time:1695000534129, total time:9
|
||||
2023-09:29:17.633 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-16]- api start time:1695000557633 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[使房间的客厅阳台上的台灯变成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:29:17.635 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-16]- [f8e5e9e1-16] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:29:17.636 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-16]- [f8e5e9e1-16] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:29:17.641 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-16]- res{"msg":"","results":[{"tag":["v","n","u","n","n","u","n","v","n","v","n","n"],"word":["使","房间","的","客厅","阳台上","的","台灯","变成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:29:17.642 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-16]- [f8e5e9e1-16] Encoding [org.hswebframework.web.crud.web.ResponseMessage@30c496a6]
|
||||
2023-09:29:17.642 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-16]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"使","proportion":null},{"type":0,"tagName":"v","key":"变成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null}]},"status":200,"timestamp":1695000557642}
|
||||
2023-09:29:17.643 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-16]- api end time:1695000557643, total time:10
|
||||
2023-09:29:40.674 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [filter,47] [f8e5e9e1-17]- api start time:1695000580674 ip:192.168.8.246 method:GET url:/demo/nlp param:{value=[使房间的客厅阳台上的台灯变成红色关闭客厅台灯]} headers:[Host:"192.168.8.175:8091", Connection:"keep-alive", Cache-Control:"max-age=0", Upgrade-Insecure-Requests:"1", User-Agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81", Accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", Accept-Encoding:"gzip, deflate", Accept-Language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6"]
|
||||
2023-09:29:40.676 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [selectMediaType,161] [f8e5e9e1-17]- [f8e5e9e1-17] Using 'application/json' given [text/html, application/xhtml+xml, image/webp, image/apng, application/xml;q=0.9, application/signed-exchange;v=b3;q=0.7, */*;q=0.8] and supported [application/json, application/*+json, application/x-ndjson, text/event-stream]
|
||||
2023-09:29:40.676 [reactor-http-nio-2] DEBUG o.h.w.c.w.ResponseMessageWrapper - [writeBody,174] [f8e5e9e1-17]- [f8e5e9e1-17] 0..1 [org.hswebframework.web.crud.web.ResponseMessage<?>]
|
||||
2023-09:29:40.681 [reactor-http-nio-2] INFO c.q.i.b.n.lac.LacNlp - [lambda$getNlpFromLac$0,50] [f8e5e9e1-17]- res{"msg":"","results":[{"tag":["v","n","u","n","n","u","n","v","n","v","n","n"],"word":["使","房间","的","客厅","阳台上","的","台灯","变成","红色","关闭","客厅","台灯"]}],"status":"000"}
|
||||
2023-09:29:40.682 [reactor-http-nio-2] DEBUG o.h.w.s.j.CustomJackson2jsonEncoder - [debug,127] [f8e5e9e1-17]- [f8e5e9e1-17] Encoding [org.hswebframework.web.crud.web.ResponseMessage@580fa89b]
|
||||
2023-09:29:40.682 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$writeWith$1,110] [f8e5e9e1-17]- response:{"message":"success","result":{"keys":[{"type":0,"tagName":"v","key":"使","proportion":null},{"type":0,"tagName":"v","key":"变成","proportion":null},{"type":0,"tagName":"v","key":"关闭","proportion":null},{"type":6,"tagName":"n","key":"房间","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"阳台上","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":6,"tagName":"n","key":"红色","proportion":null},{"type":6,"tagName":"n","key":"客厅","proportion":null},{"type":6,"tagName":"n","key":"台灯","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null},{"type":26,"tagName":"u","key":"的","proportion":null}]},"status":200,"timestamp":1695000580682}
|
||||
2023-09:29:40.682 [reactor-http-nio-2] INFO c.q.i.a.h.a.f.LogWebFilter - [lambda$filter$1,71] [f8e5e9e1-17]- api end time:1695000580682, total time:8
|
||||
2023-09:27:10.735 [background-preinit] INFO o.h.v.i.util.Version - [<clinit>,21] []- HV000001: Hibernate Validator 6.2.5.Final
|
||||
2023-09:27:12.869 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStartupProfileInfo,637] []- The following 1 profile is active: "dev"
|
||||
2023-09:27:13.265 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:27:13.266 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data R2DBC repositories in DEFAULT mode.
|
||||
2023-09:27:13.271 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 2 ms. Found 0 R2DBC repository interfaces.
|
||||
2023-09:27:13.284 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [multipleStoresDetected,262] []- Multiple Spring Data modules found, entering strict repository configuration mode
|
||||
2023-09:27:13.285 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,132] []- Bootstrapping Spring Data Redis repositories in DEFAULT mode.
|
||||
2023-09:27:13.291 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - [registerRepositoriesIn,201] []- Finished Spring Data repository scanning in 0 ms. Found 0 Redis repository interfaces.
|
||||
2023-09:27:13.396 [main] INFO o.s.c.c.s.GenericScope - [setSerializationId,283] []- BeanFactory id=1348f45b-4920-32e5-9d7c-521bf0a80d40
|
||||
2023-09:27:13.462 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$$EnhancerBySpringCGLIB$$fd770d72] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.471 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.472 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.472 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$427/999674172] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.473 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.476 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'expressionDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.ExpressionDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.476 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'annotationDataSourceSwitchStrategyMatcher' of type [org.hswebframework.web.datasource.strategy.AnnotationDataSourceSwitchStrategyMatcher] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.478 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'alwaysNoMatchStrategyMatcher' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.479 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'switcherMethodMatcherPointcutAdvisor' of type [org.hswebframework.web.datasource.AopDataSourceSwitcherAutoConfiguration$SwitcherMethodMatcherPointcutAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.481 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration' of type [org.hswebframework.web.authorization.simple.DefaultAuthorizationAutoConfiguration$$EnhancerBySpringCGLIB$$58193d84] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.502 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'easyorm-org.hswebframework.web.crud.configuration.EasyormProperties' of type [org.hswebframework.web.crud.configuration.EasyormProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.503 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.EasyormConfiguration' of type [org.hswebframework.web.crud.configuration.EasyormConfiguration$$EnhancerBySpringCGLIB$$27060ca0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.506 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration' of type [org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration$$EnhancerBySpringCGLIB$$27932c0e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.513 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration' of type [org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryConfigurations$PoolConfiguration$PooledConnectionFactoryConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.515 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'spring.r2dbc-org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties' of type [org.springframework.boot.autoconfigure.r2dbc.R2dbcProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.601 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'connectionFactory' of type [io.r2dbc.pool.ConnectionPool] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.603 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'reactiveSqlExecutor' of type [org.hswebframework.web.crud.sql.DefaultR2dbcExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.616 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'syncSqlExecutor' of type [org.hswebframework.ezorm.rdb.executor.reactive.ReactiveSyncSqlExecutor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.639 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'databaseMetadata' of type [org.hswebframework.ezorm.rdb.metadata.RDBDatabaseMetadata] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.645 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - [postProcessAfterInitialization,376] []- Bean 'org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration' of type [org.hswebframework.web.datasource.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$cc014776] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
|
||||
2023-09:27:13.972 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_en.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/commons/messages_zh.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_en.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/authentication/messages_zh.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_en.properties -> messages
|
||||
2023-09:27:13.973 [main] INFO o.h.w.s.i.I18nConfiguration - [autoResolveI18nMessageSource,42] []- register i18n message resource i18n/core/messages_zh.properties -> messages
|
||||
2023-09:27:17.645 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:19.502 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:19.685 [main] INFO o.s.b.w.e.n.NettyWebServer - [start,111] []- Netty started on port 8091
|
||||
2023-09:27:21.560 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:23.429 [main] INFO o.s.c.c.u.InetUtils - [convertAddress,170] []- Cannot determine local hostname
|
||||
2023-09:27:23.436 [main] INFO c.q.i.a.h.a.IotAdminHttpApiApplication - [logStarted,61] []- Started IotAdminHttpApiApplication in 14.915 seconds (JVM running for 16.122)
|
||||
2023-09:27:23.439 [main] DEBUG o.h.e.c.m.AbstractSchemaMetadata - [lambda$loadMetadata$2,94] []- load table metadata s_system ,use parser:MysqlTableMetadataParser
|
||||
2023-09:27:23.767 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select count(1) as 'total' from information_schema.`TABLES` where table_schema=? and table_name=?
|
||||
2023-09:27:23.769 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.769 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select count(1) as 'total' from information_schema.`TABLES` where table_schema='qiuguo_iot' and table_name='s_system'
|
||||
2023-09:27:23.847 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema=? and table_name like ?
|
||||
2023-09:27:23.847 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.848 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select column_name as `name`, data_type as `data_type`, character_maximum_length as `data_length`, numeric_precision as `data_precision`, numeric_scale as `data_scale`, column_comment as `comment`, table_name as `table_name`, case when is_nullable='YES' then 0 else 1 end as 'not_null' from information_schema.columns where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:27:23.927 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema=? and table_name like ?
|
||||
2023-09:27:23.927 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.927 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select table_comment as `comment` ,table_name as `table_name` from information_schema.tables where table_schema='qiuguo_iot' and table_name like 's_system'
|
||||
2023-09:27:23.986 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = ? and TABLE_NAME like ?
|
||||
2023-09:27:23.986 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: qiuguo_iot(String),s_system(String)
|
||||
2023-09:27:23.986 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = 'qiuguo_iot' and TABLE_NAME like 's_system'
|
||||
2023-09:27:24.066 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = ? limit ?,?
|
||||
2023-09:27:24.067 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: default(String),0(Integer),1(Integer)
|
||||
2023-09:27:24.067 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: select s_system.`framework_version` as `frameworkVersion` , s_system.`website` as `website` , s_system.`major_version` as `majorVersion` , s_system.`name` as `name` , s_system.`revision_version` as `revisionVersion` , s_system.`comment` as `comment` , s_system.`dependencies` as `dependencies` , s_system.`minor_version` as `minorVersion` from qiuguo_iot.s_system s_system where s_system.`name` = 'default' limit 0,1
|
||||
2023-09:27:24.257 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,39] []- ==> Preparing: update qiuguo_iot.s_system set `framework_version` = ? , `website` = ? , `major_version` = ? , `name` = ? , `revision_version` = ? , `dependencies` = ? , `minor_version` = ? where `name` = ?
|
||||
2023-09:27:24.257 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,41] []- ==> Parameters: {"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}(String),(String),1(Integer),default(String),0(Integer),[](String),0(Integer),default(String)
|
||||
2023-09:27:24.258 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [printSql,43] []- ==> Native: update qiuguo_iot.s_system set `framework_version` = '{"name":"hsweb framework","comment":"","website":"http://www.hsweb.io","majorVersion":4,"minorVersion":0,"revisionVersion":0,"snapshot":true}' , `website` = '' , `major_version` = 1 , `name` = 'default' , `revision_version` = 0 , `dependencies` = '[]' , `minor_version` = 0 where `name` = 'default'
|
||||
2023-09:27:24.270 [reactor-tcp-nio-2] DEBUG o.h.e.r.e.r.r.R2dbcReactiveSqlExecutor - [lambda$null$9,146] []- ==> Updated: 1
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user