Package com.fasterxml.jackson.datatype.hibernate4

Examples of com.fasterxml.jackson.datatype.hibernate4.PersistentCollectionSerializer


        return liquibase;
    }

    @Bean
    public Hibernate4Module hibernate4Module() {
        return new Hibernate4Module();
    }<% } %><% if (databaseType == 'nosql') { %>
View Full Code Here


        return liquibase;
    }

    @Bean
    public Hibernate4Module hibernate4Module() {
        return new Hibernate4Module();
    }
View Full Code Here

    /**
     * Override to configure the {@link Hibernate4Module}.
     */
    protected Hibernate4Module createHibernate4Module() {
        return new Hibernate4Module();
    }
View Full Code Here

  }

  private static class Hibernate4ModuleRegistrar {

    public static void registerModule(ObjectMapper mapper) {
      mapper.registerModule(new Hibernate4Module());
    }
View Full Code Here

            SimpleBeanPropertyFilter.serializeAllExcept("created", "updated", "productId", "id"));
        filterProvider = filterProvider.addFilter("SubscriptionCertificateFilter",
            SimpleBeanPropertyFilter.serializeAllExcept("cert", "key"));
        mapper.setFilters(filterProvider);

        Hibernate4Module hbm = new Hibernate4Module();
        hbm.enable(Hibernate4Module.Feature.FORCE_LAZY_LOADING);
        mapper.registerModule(hbm);

        AnnotationIntrospector primary = new JacksonAnnotationIntrospector();
        AnnotationIntrospector secondary = new JaxbAnnotationIntrospector(
            mapper.getTypeFactory());
View Full Code Here

        filterProvider = filterProvider.addFilter("OwnerFilter",
            SimpleBeanPropertyFilter.serializeAllExcept("parentOwner", "consumers",
                "activationKeys", "environments", "pools"));
        this.mapper.setFilters(filterProvider);

        Hibernate4Module hbm = new Hibernate4Module();
        hbm.enable(Hibernate4Module.Feature.FORCE_LAZY_LOADING);
        mapper.registerModule(hbm);

        // Very important for deployments so new rules files can return additional
        // properties that this current server doesn't know how to serialize, but still
        // shouldn't fail on.
View Full Code Here

    public JsonProvider(boolean indentJson) {
        // Prefer jackson annotations, but use jaxb if no jackson.
        super(Annotations.JACKSON, Annotations.JAXB);

        ObjectMapper mapper = _mapperConfig.getDefaultMapper();
        Hibernate4Module hbm = new Hibernate4Module();
        hbm.enable(Hibernate4Module.Feature.FORCE_LAZY_LOADING);
        mapper.registerModule(hbm);
        configureHateoasObjectMapper(mapper, indentJson);
        setMapper(mapper);
    }
View Full Code Here

    public void init() {
        this.objectMapper = new ObjectMapper();
        /**
         * Prevents Hibernate Lazy Instantiation
         */
        Hibernate4Module hm = new Hibernate4Module();
        this.objectMapper.registerModule(hm);
        // Correct Serialization of JDK 8 javax.time API's
        JSR310Module jsr310Module = new JSR310Module();
        this.objectMapper.registerModule(jsr310Module);
        /**
 
View Full Code Here

TOP

Related Classes of com.fasterxml.jackson.datatype.hibernate4.PersistentCollectionSerializer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.