类 CompatibleFilter

  • 所有已实现的接口:
    Filter, Filter.Listener

    public class CompatibleFilter
    extends Object
    implements Filter, Filter.Listener
    CompatibleFilter make the remote method's return value compatible to invoker's version of object. To make return object compatible it does
        1)If the url contain serialization key of type json or fastjson then transform
        the return value to instance of Map
        2)If the return value is not a instance of invoked method's return type available at
        local jvm then POJO conversion.
        3)If return value is other than above return value as it is.
     
    另请参阅:
    Filter