Uses of Interface
io.vertx.core.spi.JsonFactory
-
Packages that use JsonFactory Package Description io.vertx.core.json io.vertx.core.json.jackson io.vertx.core.spi -
-
Uses of JsonFactory in io.vertx.core.json
Methods in io.vertx.core.json that return JsonFactory Modifier and Type Method Description static JsonFactory
Json. load()
Load the factory with theServiceLoader
, when no factory is found then a factory using Jackson will be returned. -
Uses of JsonFactory in io.vertx.core.json.jackson
Classes in io.vertx.core.json.jackson that implement JsonFactory Modifier and Type Class Description class
JacksonFactory
-
Uses of JsonFactory in io.vertx.core.spi
Methods in io.vertx.core.spi that return JsonFactory Modifier and Type Method Description static JsonFactory
JsonFactory. load()
Load the JSON factory with theServiceLoader
An attempt is made to load a factory using the service loaderMETA-INF/services
JsonFactory
. Factories are sorted If not factory is resolved (which is usually the default case),JacksonFactory.INSTANCE
is used.
-