如何让Spring MVC接收的参数可以转换为java对象

 我来答
新无糖口香糖
2017-07-21 · TA获得超过106个赞
知道答主
回答量:59
采纳率:100%
帮助的人:22.9万
展开全部
	<!-- 注解驱动 -->
<mvc:annotation-driven validator="validator">
<mvc:message-converters>
<bean
class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<!--避免IE执行AJAX时,返回JSON出现下载文件 -->
<property name="supportedMediaTypes">
<list>
<value>text/html;charset=UTF-8</value>
<value>text/json;charset=UTF-8</value>
<!--  <value>application/json;charset=UTF-8</value> -->
</list>
</property>
<!-- 处理responseBody里面日期类型,将其中的日期设置为指定的日期格式 -->
<property name="objectMapper">
<bean class="com.fasterxml.jackson.databind.ObjectMapper">
<property name="dateFormat">
<bean class="java.text.SimpleDateFormat">
<constructor-arg type="java.lang.String" value="yyyy-MM-dd HH:mm:ss" />
</bean>
</property>
</bean>
</property>
</bean>
<!--自定义json格式application/crypt-json -->
<bean id="cryptFastJsonHttpMessageConverter"
class="com.ybdc.yy.base.basis.utils.converter.CryptFastJsonHttpMessageConverter">
<property name="returnKeyName" value="key"></property>
<property name="supportedMediaTypes">
<list>
<value>application/crypt-json;charset=UTF-8</value>
</list>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>

这是xml里面需要配置的转换。另外你表单提交的时候一定,提交的字段一定要与后台的javaBean相同。

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式