IntelliJ 删除导航栏,保留工具栏
10月 8, 2023 |
Nix.Huang
View->Appearance->Navigation Bar × View->Appea […more]
Sentinel集群限流 官方文档非常含糊。通过查看源代码及调试sentinel-demo-cluster-e […more]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
@Configuration public class Config { //将Integer 映射未枚举处理器 @MappedTypes({MState.class}) @MappedJdbcTypes(value ={JdbcType.TINYINT, JdbcType.INTEGER}) public static class MStateTypeHandler extends EnumOrdinalTypeHandler<MState> { public MStateTypeHandler() { super(MState.class); } } //JSON处理器 @MappedTypes({EventHandlingContext.class}) @MappedJdbcTypes(value ={JdbcType.VARCHAR, JdbcType.UNDEFINED}) public static class EventHandlingContextHandler extends FastjsonTypeHandler { public EventHandlingContextHandler() { super((Class)EventHandlingContext.class); } } //将处理器注册未bean @Bean public MStateTypeHandler getTypeHandlerForMState() { return new MStateTypeHandler(); } @Bean public FastjsonTypeHandler getJsonTypeHandler() { return new EventHandlingContextHandler(); } } |
spring boot 返回 Transfer-Encoding: chunked头而不是Content-Le […more]
开始UserRepository定义如下
1 2 3 4 5 6 7 8 9 10 |
@Repository public class UserRepository extends SimpleR2dbcRepository<User, Integer> { public UserRepository(RelationalEntityInformation<User, Integer> entity, R2dbcEntityOperations entityOperations, R2dbcConverter converter) { super(entity, entityOperations, converter); } } |
报 […more]
使用axios发送Ajax理由 使用XMLHttpRequest 发送Ajax请求已经很简单,为啥很多工程使用 […more]
如果一个field 叫xAxis 那么最后序列化的结果是{“xaxis”:””} 而不是{“xAxis”:”” […more]
开始仿照官方离职按需导入echarts的各个组件, 结果我配置了折线图的markLine 属性, 没有导入Ma […more]
VUE ref vs reactive API 两个函数都能用于创建reactive object, reac […more]