I am writing a json typebinder to convert json to a Java object of class Foo. But I only want it to be used when the content type is application/json, so that I accept multiple content types without having to define separates methods and use the @As annotation. I basically am looking for a way to define a @Global TypeBinder that is only used when the content-type is application/json.
@Global
public class JsonObjectBinder implements TypeBinder<Foo> {
@Override
public Object bind(String name, Annotation[] annotations, String value,
Class actualClass, Type genericType) throws Exception {
return new Gson().fromJson(value, Foo.class);
}
}