-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jackson Mixin style annotations #58
Comments
It's nice to see a pure-Java configuration that is not based on Strings. That being said, this sort of configuration is brittle when refactoring as the compiler will not complain if the names of the properties change (although, we could make it complain I suppose). Have you looked at the |
Yes it is brittle and I have been bitten by that before for many times. But in some cases I would need to persist model objects that looked like this(from an external library that I can do nothing about):
If I could annotate this class directly, life would be too easy.
I'm haven't tested 1 and am not motivated to The mixin approach that I was suggesting would look something like this:
I'll experiment with ParcelConverter to see if it will suit my needs. |
I don't advise this approach, but I was able to make your class work by extending it: @Parcel
public class ParcelImage extends Image {
@ParcelConstructor
public ParcelImage(Type type, Display display, int padding, String content) {
super(type, display, padding, content);
}
} Was this your approach with the Wrapper class? Approach 1 you mention probably won't work, because the Parceler annotation need to exist at compile time. So, the question is now: should we introduce a more-manual way of configuring Parceler's code generation? I see this fitting between the ParcelConverter option and the As an example, this annotation approach would look like the following: @ParcelConfiguration(
type = Target.class
constructorParams = {@ConstructorParam(type = Target2.class, on=Target.class, name="inputParam", field="outputField"),...}
fieldParams = {@FieldParam(type = Target3.class, on=Target.class, name="someField", readMethod="getSomeField"),...}
methodParams = {@MethodParam(type = Target4.class, on=TargetSuper.class, name="setTarget4", readMethod="getTarget4"),...}
) I'm leaning towards leaving it as is with the ParcelConverter as the fall-back solution. I think this covers most, if not all, of the cases that wouldn't fit regular annotation processing analysis via |
The wrapper class above is almost identical to mine. What I don't like is that I have to subclass a POJO, which can be problematic because the library can change the structure anytime and I would have to look out for that. This problem also affects the suggested mixin/
And that would silence warnings about And anything that still doesn't work can use the ParcelConverter |
I agree with your problems around the wrapper class. Personally, I'd rather use a ParcelConverter than the wrapper approach. There was another request to suppress warnings (#45) but we did not move forward with it. You can suppress warnings by adding the -Xlint:-processing option. Keep in mind, the warnings are very helpful as they highlight that reflection is required, negating the benefits of using Parceler. When I see these warnings I know I've done something wrong. |
I wonder if there is an approach that following configuration by exception instead of the mentioned verbose annotation approach. Here's what I mean. We'll use your class as an example: public static class Image {
public enum Display {
COVER, CONTAIN, START, END
}
public enum Type {
BASE64, FILE, URL
}
public final Type type;
public final Display display;
public final int padding;
public final String content;
public String extraContent;
public Image(Type type, Display display, int padding, String content) {
this.type = type;
this.display = display;
this.padding = padding;
this.content = content;
}
} Say you want the constructor to be used and the @ParcelClass(value = Image.class,
configuration = @ParcelConfiguration(
constructor = @ConstructorConfiguration(Type.class, Display.class, int.class, String.class)
transients = {@TransientConfiguration(type = Image.class, method = FIELD, name = "extraContent")}
)); These would effectively act as annotations directly on the fields/constructors/methods. |
This is even better than the MinIn approach! I think this solves not only the POJO problem but many other problems related to immutability as well. I think we can add this to the next snapshot and I'll give it a go. |
is this change included in the 0.2.16-SNAPSHOT? can't wait to try it out :) |
@tom91136, I haven't deployed it yet, but the beginnings of this is available on the referenced PR if you want to play with an early preview. |
Sorry I was having exams in uni, I'm back now. I was testing out 0.2.16-SNAPSHOT and found that it's a bit different from the PR, is there an example on how I would use |
I've been thinking about this feature for a couple months now, and I've come to the conclusion that it's largely unnecessary because of the existing As always, I'm open to discussion, but I'm closing this issue and related PR for now. |
Sometimes, we have a external library were
@ParcelClass
doesn't work very well.Is it possible to introduce something like Mixins in the Jackson JSON library?
Here are the docs:
http://wiki.fasterxml.com/JacksonMixInAnnotations
The text was updated successfully, but these errors were encountered: