Jon Edvardsson
Jon Edvardsson
Proto3 syntax have been available in an official Protobuf release since 2016. I can’t find any note that the syntax is not official. They’ve added back optional but other than...
I appreciate the effort you put into Jackson. I’ll see if there was a something I can do to help. I’ll need to study the existing code to understand the...
Would the preferred way to fix this be to rewrite the property names when deriving the bean description? I guess I could add a beandeserializermodifier to fix this temporarily, right?...
Great. I will only use my fix will until 2.13. Here is a version that does not modify in place: ``` package com.examaple.jackson; import com.fasterxml.jackson.databind.BeanDescription; import com.fasterxml.jackson.databind.DeserializationConfig; import com.fasterxml.jackson.databind.deser.SettableBeanProperty; import...
> Does this workaroud work on every case? This solution didn't work for me (a record with `SnakeCaseStrategy`). It still complains about `Can not set final java.lang.String field ...`. @MRamonLeon,...
@cgpassante you CSN just add the workaround I posted in a [comment](#issuecomment-799213433) No need for annotations. Use the test in [comment](#issuecomment-1043039439) to track the bug.
First of all: Great plugin! It would be even better with some minor adjustments to the automatic configuration for import paths. While the plugin could scan dependencies for protos as...
Yes, I suppose so. However, the newBuilder-method on the builder class will not work as expected. Therefore, to keep compatibility it might be better to make the generated builder abstract...
Maybe this isn't a good idea after all. Careless subclassing might messup equals and hashcode.
Yes, that is probably better.