Elytrium / Elytrium/java-serializer
Using square brackets for a list of strings causes an infinite loop
オープン
- 主要言語
- Java
- スター
- 27
- フォーク
- 4
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
It looks like the yml reader goes into a deep loop if square brackets are found for a list of strings.
This configuration cause error:
```yaml
stringList: ["test1", "test2", "test3"]
```
This configuration does NOT cause problems:
```yaml
stringList:
- "test1"
- "test2"
- "test3"
```
The example does not use a custom serializer, only a simple List\ type.
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
調査の方向性
まず、角括弧で囲まれた List 設定を使って YAML reader で問題を再現し、その parsing path を同等のブロックリスト形式のものと比較します。インラインの文字列リストが無限ループに入らず、両方の設定が正常にデシリアライズされれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- java
- 領域
- backend
- issue の種類
- バグ
- 難易度
- 3/5
- 見積もり時間
- 1〜2日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 50/100