Springmvc参数转换 Springmvc请求参数类型转换器及原生api代码实例

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Springmvc参数转换 Springmvc请求参数类型转换器及原生api代码实例

一路繁花似锦绣前程   2021-03-16 我要评论
想了解Springmvc请求参数类型转换器及原生api代码实例的相关内容吗,一路繁花似锦绣前程在本文为您仔细讲解Springmvc参数转换的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Springmvc,请求,参数类型,转换器,原生api,下面大家一起来学习吧。

一、springmvc的xml配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    https://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context
    https://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/mvc
    https://www.springframework.org/schema/mvc/spring-mvc.xsd">
  <!--扫描组件-->
  <context:component-scan base-package="com.wuxi"></context:component-scan>
  <!--视图解析器-->
  <bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/pages/"></property>
    <property name="suffix" value=".jsp"></property>
  </bean>
  <!--参数类型装换器-->
  <bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean">
    <property name="converters">
      <set>
        <bean class="com.wuxi.utils.StringToDateConverter"></bean>
      </set>
    </property>
  </bean>
  <!--开启springmvc框架注解的支持-->
  <mvc:annotation-driven conversion-service="conversionService"></mvc:annotation-driven>
</beans>

二、转换的类

package com.wuxi.utils;

import org.springframework.core.convert.converter.Converter;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class StringToDateConverter implements Converter<String, Date> {
  @Override
  public Date convert(String string) {
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    Date date = null;
    try {
      date = sdf.parse(string);
    } catch (ParseException e) {
      e.printStackTrace();
    }
    return date;
  }
}

三、接口

@RequestMapping("/student")
public String student(Student student, HttpServletRequest request, HttpServletResponse response) {
  System.out.println(student);
  return "success";
}

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们