[BUG] jsonpath syntax error when other filters are followed by 'in' filter
- Dominant language
- Java
- Stars
- 4.4k
- Forks
- 613
- Avg merge
- 1d 22h
- Merged PRs (30d)
- 6
Description
### 问题描述
*简要描述您碰到的问题。*
com.alibaba.fastjson2.JSONException: jsonpath syntax error, offset 75, character ], line 1, column 75, fastjson-version 2.0.61
$.riskRequests[?(@.requestRiskType=='05' && @.customerType in ('01','04'))].customerName
but the following one works:
$.riskRequests[?(@.customerType in ('01','04') && @.requestRiskType=='05')].customerName
### 环境信息
*请填写以下信息:*
- 版本信息:[e.g.:Fastjson2 2.0.61]
### 重现步骤
*如何操作可以重现该问题:*
1. 使用 `xxx.xxx` 方法
2. 输入 `...` 数据
3. 出现 `...` 错误
```java
JSONPath.of("")
```
### 期待的正确结果
*对您期望发生的结果进行清晰简洁的描述。*
### 相关日志输出
*请复制并粘贴任何相关的日志输出。*
#### 附加信息
*如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。*
Contributor guide
Research direction
Start with the JSONPath.of expression in the report and reproduce the syntax error on fastjson2 2.0.61, comparing the two filter orderings. Trace the JSONPath parsing entry point to identify why the equivalent expression with the in filter second fails; done means both expressions parse and produce the expected customerName results.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- backend
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 55/100