nailcui

Results 4 issues of nailcui

### 请描述您的问题 我使用的是 `2.0.11` 版本的api 我想使用JSONPath来判断json中某个字段是否存在,并且需要区分 `不存在` 和 `null` 这两种情况,比如: ```json { "a1":null } ``` 在上面这串json中,我想使用api能做到如下判断 - a1存在,且值为 `null` - a2不存在 我尝试了如下api,接入如注释所示: ``` public class Main { public static void...

question

### 问题描述 *简要描述您碰到的问题。* 我有个json数据,计划用JsonPath获取其中 `x-limit` 字段的数据,`JSONPath.of("$.x-limit")` 时候抛出异常提示: `com.alibaba.fastjson2.JSONException: not support -` ```json { "x-limit":10 } ``` ### 环境信息 *请填写以下信息:* - OS信息: [e.g.:Mac ] - JDK信息: [e.g.:Openjdk 1.8.0_231] - 版本信息:[e.g.:Fastjson2 2.0.11]...

bug

Nacos 配置信息: ```yaml url: localhost:8080 username: nacos ``` 复现代码: ``` @Data @Configuration @NacosConfigurationProperties(groupId = "production", dataId = "app-config.yaml", autoRefreshed = true) public class MysqlConfiguration { private String url; private String...