All posts by Nix.Huang

VUE cheat list

9月 14, 2022 |

覆盖知识点 v-bind(:) 数据模型值绑定到元素 v-on(@) 事件处理器 v-model v-bind […more]

spring websocket 实践

8月 31, 2022 |

示例下载: test-websocket.tar 添加maven 依赖 <dependency> […more]

utf-8 vs utf-16

8月 30, 2022 |

java 内部使用utf16,每个字符占用2个字节, \uD800~DFFF 这个区间是作用surrogate […more]

spring feign client [CTRL-CHAR, code 31]解决办法

8月 30, 2022 |

异常提示如下, Caused by: com.fasterxml.jackson.core.JsonParse […more]

VUE 找不到模块

8月 29, 2022 |

通过 npm install npm run build 编译, 放入nginx运行时报如下问题 Cannot […more]

Spring publishEvent 异步执行

8月 28, 2022 |

方法1使用@Async注解 使用spring applicationContext 发布事件 [crayon- […more]

mysql 【with recursive】 和json_table使用

8月 12, 2022 |

将json 转换成表使用 select * from json_table(‘[“javacoder”, 32 […more]

mybatis plus 分页组件和pagehelper 组件共存问题

8月 10, 2022 |

他们都是给予mybatis Interceptor实现, pagehelper将分页参数放入ThreadLoc […more]

nacos启动报No DataSource set解决办法

8月 9, 2022 |

nacos standalone运行 tail -f logs/start.out Caused by: ja […more]

tomcat 乱码问题

8月 5, 2022 |

chcp 65001 只能针对当前控制台有效, 修改注册表可能会影响其他的应用程序, 毕竟windows中文默 […more]