解决spring mvc +hibernate整合时使用jackson返回json数据无限循环问题的官方解决方案

第一步:
打开https://github.com/FasterXML/jackson-datatype-hibernate,下载对应hibernate版本的jackson-datatype-hibernate的jar包。


第二部:
创建一个类继承ObjectMapper(com.fasterxml.jackson.databind包下的);

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.hibernate4.Hibernate4Module;

public class HibernateAwareObjectMapper extends ObjectMapper {
    public HibernateAwareObjectMapper() {
        registerModule(new Hibernate4Module());
    }
}

第三步:
在springmvc的配置文件中修改节点。

<mvc:annotation-driven>
    <mvc:message-converters>
    
        <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
            <property name="objectMapper">
                <bean class="com.boleprint.util.HibernateAwareObjectMapper" />
            property>
        bean>
    mvc:message-converters>
mvc:annotation-driven>

至此完成所有配置完成。直接运行就能完美运行。

你可能感兴趣的:(springmvc,jackson,hibernate)