-
Hi, there!
I attempted to use in Kotlin the jddl deserializer with these json and class for deserialization:
The json is:
```
{
"dummy": 123
}
```
The class is:
```
class Deserialized…
-
Here's the situation - for our app, safe_yaml works for everything except for a massive number of serialized HashWithIndifferentAccess. With safe_yaml, we have to choose between:
- Inspecting everywhe…
zwily updated
9 years ago
-
Does the json serializer/deserializer support Enums?
eg. Java enums
-
**What is the bug?**
I am using opensearch-java client 2.12.0
**Describe the issue**:
I have a specific requirement where I will be using aggregations on a index, but I want to use SQL plugin fo…
-
I would kind of enjoy being able to use [simd_json](https://github.com/simd-lite/simd-json) with this library, which I think could be achieved by permitting a BYO/dependency injectable Deserializer. I…
-
```
It would be nice to use the JsonSerializer interface (or something similar) on
the class itself, rather than in a separate utility class which then needs to
be registered as a type adapter. In …
-
One pretty common pain point is that the JSON spec can't serialize or deserialize datetimes. I suggest that we can add a `dateutil.json` submodule that would provide a common JSON serializer/deseriali…
-
通过docker部署的rocketmq-5.2.0+rocketmq-mqtt-1.0.1
一直重复报下面的JSON解析错误日志:
```
2024-07-18 14:16:19:333 ERROR [QueueCache]
com.alibaba.fastjson.JSONException: unclosed.str
at com.alibaba.fastjso…
-
## Expected Behavior
svg is imported without error
## Actual Behavior
`Error: Malformed svg path at 2:46. Path closed itself with command #1`
but that branch should never be reached
htt…
-
You can add a generic serializer which works for all Enums like so
```
@JSONSerializer.register_serializer(Enum)
def Enum_serializer(obj: Enum) -> str:
return obj.name
@JSONSerializer.regis…