如何让Spring MVC接收的参数可以转换为java对象
展开全部
<!-- 注解驱动 -->
<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相同。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询