17

我在尝试将 HTML 返回到我的 Spring MVC 控制器时遇到问题。

它看起来像这样:

@RequestMapping(value = QUESTION_GROUP_CREATE_URL, method = RequestMethod.POST)
public
@ResponseBody
String createQuestionGroup(@RequestBody JsonQuestionGroup questionGroup, HttpServletResponse response) {

    // questionGroup - this comes OK.

    response.setContentType("text/html");
    response.setCharacterEncoding("UTF-8");
    return "<div></div>";
}

我的弹簧配置:

<bean id="contentNegotiationManager" class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">
    <property name="favorPathExtension" value="false"/>
    <property name="favorParameter" value="true"/>
    <property name="mediaTypes">
        <value>
            json=application/json
            xml=application/xml
            html=application/html
        </value>
    </property>
</bean>

我看到萤火虫的响应是这样的:{"String":"<div></div>"}我怎样才能告诉这个方法向我发送纯 HTML 作为响应?

4

1 回答 1

28

像这样更改您的 Spring 配置:html=text/html并添加produces = MediaType.TEXT_HTML_VALUE到您的@RequestMapping注释中。

于 2013-07-12T09:45:44.790 回答