@Portable public class Person { private String name; private int age; public Person() { } public Person(String name, int age) { this.name = name; this.age = age; } public String getName() { return name; } public int getAge() { return age; } }
Errai includes a comprehensive marshalling framework which permits the serialization of domain objects between the browser and the server. From the perspective of GWT, this is a complete replacement for the provided GWT serialization facilities and offers a great deal more flexibility. You are be able to map both application-specific domain model, as well as preexisting model, including model from third-party libraries using the custom definitions API.
All classes that you intend to be marshalled between the client and the server must be exposed to the marshalling framework. There are several ways you can do it and this section will take you through the different approaches you can take to fit your needs.
To make a Java class eligible for serialization with Errai Marshalling, mark it with the org.jboss.errai.common.client.api.annotations.Portable annotation. This tells the marshalling system to generate marshalling and demarshalling code for the annotated class and all of its nested classes.
The mapping strategy that will be used depends on how much information you provide about your model up-front. If you simply annotate a domain type with @Portable and do nothing else, the marshalling system will use and exhaustive strategy to determine how to construct and deconstruct instances of that type and its nested types.
The Errai marshalling system works by enumerating all of the Portable types it can find (by any of the three methods discussed in this section of the reference guide), eliminating all the non-portable types it can find (via @NonPortable annotations and entries in ErraiApp.properties), then enumerating the marshallable properties that make up each remaining portable entity type. The rules that Errai uses for enumerating the properties of a portable entity type are as follows:
If an entity type has a field called foo, then that entity has a property called foo unless the field is marked static or transient.
Note that the existence of methods called getFoo(), setFoo(), or both, does not mean that the entity has a property called foo. Errai Marshalling always works from fields when discovering properties.
When reading a field foo, Errai Marshalling will call the method getFoo() in preference to direct field access if the getFoo() method exists.
Similarly, when writing a field foo, Errai Marshalling will call the method setFoo() in preference to direct field access if the setFoo() method exists.
The above rules are sufficient for marshalling an existing entity to a JSON representation, but for de-marshalling, Errai must also know how to obtain an instance of a type. The rules that Errai uses for deciding how to create an instance of a @Portable type are as follows:
If the entity has a public constructor where every argument is annotated with @MapsTo, and those parameters cover all properties of the entity type, then Errai uses this constructor to create the object, passing in all of the property values.
Otherwise, if the entity has a public static method where every argument is annotated with @MapsTo, and those parameters cover all properties of the entity type, then Errai uses this method to create the object. Note that when using this mechanism you are free to create and return a subtype of the marshalled type, or resolve one from a cache.
If the entity has a public no-arguments constructor (or no explicit constructors at all), it will be created via that constructor, and the properties will be written to the new object one at a time. Each property will be written by its setter method, or by direct field access if a setter method is not available.
Now let's take a look at some common examples of how this works.
@Portable public class Person { private String name; private int age; public Person() { } public Person(String name, int age) { this.name = name; this.age = age; } public String getName() { return name; } public int getAge() { return age; } }
This is a pretty vanilla domain object. Note the default, public, no-argument constructor. In this case, it will be necessary to have one explicitly declared. But notice we have no setters. In this case, the marshaler will rely on private field access to write the values on each side of the marshalling transaction. For simple domain objects, this is both nice and convenient. But you may want to make the class immutable and have a constructor enforce invariance. See the next section for that.
Immutability is almost always a good practice, and the marshalling system provides you a straight forward way to tell it how to marshal and de-marshal objects which enforce an immutable contract. Let's modify our example from the previous section.
@Portable public class Person { private final String name; private final int age; public Person(@MapsTo("name") String name, @MapsTo("age") int age) { this.name = name; this.age = age; } public String getName() { return name; } public int getAge() { return age; } }
Here we have set both of the class fields final. By doing so, we had to remove our default constructor. But that's okay, because we have annotated the remaining constructor's parameters using the org.jboss.errai.marshalling.client.api.annotations.MapsTo annotation.
By doing this, we have told the marshaling system, for instance, that the first parameter of the constructor maps to the property name. Which in this case, defaults to the name of the corresponding field. This may not always be the case – as will be explored in the section on custom definitions. But for now that's a safe assumption.
Another good practice is to use a factory pattern to enforce invariance. Once again, let's modify our example.
@Portable public class Person { private final String name; private final int age; private Person(String name, int age) { this.name = name; this.age = age; } public static Person createPerson(@MapsTo("name") String name, @MapsTo("age") int age) { return new Person(name, age); } public String getName() { return name; } public int getAge() { return age; } }
Here we have made our only declared constructor private, and created a static factory method. Notice that we've simply used the same @MapsTo annotation in the same way we did on the constructor from our previous example. The marshaller will see this method and know that it should use it to construct the object.
For types with a large number of optional attributes, a builder is often the best approach.
@Portable public class Person { private final String name; private final int age; private Person(@MapsTo("name") String name, @MapsTo("age") int age) { this.name = name; this.age = age; } public String getName() { return name; } public int getAge() { return age; } @NonPortable public static class Builder { private String name; private int age; public Builder name(String name) { this.name = name; return this; } public Builder age(int age) { this.age = age; return this; } public Person build() { return new Person(name, age); } } }
In this example, we have a nested Builder class that implements the Builder Pattern and calls the private Person constructor. Hand-written code will always use the builder to create Person instances, but the @MapsTo annotations on the private Person constructor tell Errai Marshalling to bypass the builder and construct instances of Person directly.
One final note: as a nested type of Person (which is marked @Portable), the builder itself would normally be portable. However, we do not intend to move instances of Person.Builder across the network, so we mark Person.Builder as @NonPortable.
Some classes may be out of your control, making it impossible to annotate them for auto-discovery by the marshalling framework. For cases such as this, there are two approaches which can be undertaken to include these classes in your application.
The first approach is the easiest, but is contingent on whether or not the class is directly exposed to the GWT compiler. That means, the classes must be part of a GWT module and within the GWT client packages. See the GWT documentation on Client-Side Code for information on this.
If you have client-exposed classes that cannot be annotated with the @Portable annotation, you may manually map these classes so that the marshaller framework will comprehend and produce marshallers for them and their nested types.
To do this, specify them in ErraiApp.properties, using the errai.marshalling.serializableTypes attribute with a whitespace separated list of classes to make portable.
errai.marshalling.serializableTypes=org.foo.client.UserEntity \ org.foo.client.GroupEntity \ org.abcinc.model.client.Profile
If any of the serializable types have nested classes that you wish to make non-portable, you can specify them like this:
errai.marshalling.nonserializableTypes=org.foo.client.UserEntity$Builder \ org.foo.client.GroupEntity$Builder
The marshalling framework supports and promotes the concept of marshalling by interface contract, where possible. For instance, the framework ships with a marshaller which can marshall data to and from the java.util.List interface. Instead of having custom marshallers for classes such as ArrayList and LinkedList, by default, these implementations are merely aliased to the java.util.List marshaller.
There are two distinct ways to go about doing this. The most straightforward is to specify which marshaller to alias when declaring your class is @Portable.
package org.foo.client; @Portable(aliasOf = java.util.List.class) public MyListImpl extends ArrayList { // .. // }
In the case of this example, the marshaller will not attempt to comprehend your class. Instead, it will merely rely on the java.util.List marshaller to dematerialize and serialize instances of this type onto the wire.
If for some reason it is not feasible to annotate the class, directly, you may specify the mapping in the ErraiApp.properties file using the errai.marshalling.mappingAliases attribute.
errai.marshalling.mappingAliases=org.foo.client.MyListImpl->java.util.List \ org.foo.client.MyMapImpl->java.util.Map
The list of classes is whitespace-separated so that it may be split across lines.
The example above shows the equivalent mapping for the MyListImpl class from the previous example, as well as a mapping of a class to the java.util.Map marshaller.
The syntax of the mapping is as follows: <class_to_map> -> <contract_to_map_to>.
When you alias a class to another marshalling contract, extended functionality of the aliased class will not be available upon deserialization. For this you must provide custom marshallers for those classes.
Although the default marshalling strategies in Errai Marshalling will suit the vast majority of use cases, there may be situations where it is necessary to manually map your classes into the marshalling framework to teach it how to construct and deconstruct your objects.
This is accomplished by specifying MappingDefinition classes which inform the framework exactly how to read and write state in the process of constructing and deconstructing objects.
All manual mappings should extend the org.jboss.errai.marshalling.rebind.api.model.MappingDefinition class. This is base metadata class which contains data on exactly how the marshaller can deconstruct and construct objects.
Consider the following class:
public class MySuperCustomEntity { private final String mySuperName; private String mySuperNickname; public MySuperCustomEntity(String mySuperName) { this.mySuperName = mySuperName;; } public String getMySuperName() { return this.mySuperName; } public void setMySuperNickname(String mySuperNickname) { this.mySuperNickname = mySuperNickname; } public String getMySuperNickname() { return this.mySuperNickname; } }
Let us construct this object like so:
MySuperCustomEntity entity = new MySuperCustomEntity("Coolio"); entity.setSuperNickname("coo");
It is clear that we may rely on this object's two getter methods to extract the totality of its state. But due to the fact that the mySuperName field is final, the only way to properly construct this object is to call its only public constructor and pass in the desired value of mySuperName.
Let us consider how we could go about telling the marshalling framework to pull this off:
@CustomMapping public MySuperCustomEntityMapping extends MappingDefinition { public MySuperCustomEntityMapping() { super(MySuperCustomEntity.class); // (1) SimpleConstructorMapping cnsMapping = new SimpleConstructorMapping(); cnsMapping.mapParmToIndex("mySuperName", 0, String.class); // (2) setInstantiationMapping(cnsMapping); addMemberMapping(new WriteMapping("mySuperNickname", String.class, "setMySuperNickname")); // (3) addMemberMapping(new ReadMapping("mySuperName", String.class, "getMySuperName")); // (4) addMemberMapping(new ReadMapping("mySuperNickname", String.class, "getMySuperNickname")); // (5) } }
And that's it. This describes to the marshalling framework how it should go about constructing and deconstructing MySuperCustomEntity.
Paying attention to our annotating comments, let's describe what we've done here.
Call the constructor in MappingDefinition passing our reference to the class we are mapping.
Using the SimpleConstructorMapping class, we have indicated that a custom constructor will be needed to instantiate this class. We have called the mapParmToIndex method with three parameters. The first, "mySupername" describes the class field that we are targeting. The second parameter, the integer 0 indicates the parameter index of the constructor arguments that we'll be providing the value for the aforementioned field – in this case the first and only, and the final parameter String.class tells the marshalling framework which marshalling contract to use in order to de-marshall the value.
Using the WriteMapping class, we have indicated to the marshaller framework how to write the "mySuperNickname" field, using the String.class marshaller, and using the setter method setMySuperNickname .
Using the ReadMapping class, we have indicated to the marshaller framework how to read the "mySuperName" field, using the String.class marshaller, and using the getter method getMySuperName .
Using the ReadMapping class, we have indicated to the marshaller framework how to read the "mySuperNickname" field, using the String.class marshaller, and using the getter method getMySuperNickname .
There is another approach to extending the marshalling functionality that doesn't involve mapping rules, and that is to implement your own Marshaller class. This gives you complete control over the parsing and emission of the JSON structure.
The implementation of marshallers is made relatively straight forward by the fact that both the server and the client share the same JSON parsing API.
Consider the included java.util.Date marshaller that comes built-in to the marshalling framework:
@ClientMarshaller(Date.class) @ServerMarshaller(Date.class) public class DateMarshaller extends AbstractNullableMarshaller<Date> { @Override public Date[] getEmptyArray() { return new Date[0]; } @Override public Date doNotNullDemarshall(final EJValue o, final MarshallingSession ctx) { if (o.isObject() != null) { EJValue qualifiedValue = o.isObject().get(SerializationParts.QUALIFIED_VALUE); if (!qualifiedValue.isNull() && qualifiedValue.isString() != null) { return new Date(Long.parseLong(qualifiedValue.isString().stringValue())); } EJValue numericValue = o.isObject().get(SerializationParts.NUMERIC_VALUE); if (!numericValue.isNull() && numericValue.isNumber() != null) { return new Date(new Double(numericValue.isNumber().doubleValue()).longValue()); } if (!numericValue.isNull() && numericValue.isString() != null) { return new Date(Long.parseLong(numericValue.isString().stringValue())); } } return null; } @Override public String doNotNullMarshall(final Date o, final MarshallingSession ctx) { return "{\"" + SerializationParts.ENCODED_TYPE + "\":\"" + Date.class.getName() + "\"," + "\"" + SerializationParts.OBJECT_ID + "\":\"" + o.hashCode() + "\"," + "\"" + SerializationParts.QUALIFIED_VALUE + "\":\"" + o.getTime() + "\"}"; } }
The class is annotated with both @ClientMarshaller and @ServerMarshaller indicating that this class should be used for both marshalling on the client and on the server.
The doNotNullDemarshall() method is responsible for converting the given JSON object (which has already been parsed and verified non-null) into a Java object.
The doNotNullMarshall() method does roughly the inverse: it converts the given Java object into a String (which must be parseable as a JSON object) for transmission on the wire.