SpringMVC 中 数据绑定 数据转换 自定义数据转换器

简介: input.jsp页面加入这样的方式,将一个字符串提交到后台。后台用SpringMVCTest.java处理它。但是这个处理是将字符串转换成对象,所以我们得去配置EmployeeConverter自定义的对象。package com.hust.springmvc.test;import com.hust.springmvc.dao.EmployDao;imp

这里写图片描述

input.jsp页面加入这样的方式,将一个字符串提交到后台。

后台用SpringMVCTest.java处理它。但是这个处理是将字符串转换成对象,所以我们得去配置EmployeeConverter自定义的对象。

package com.hust.springmvc.test;

import com.hust.springmvc.dao.EmployDao;
import com.hust.springmvc.entities.Employee;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;

/**
 * Created by yexx on 16-11-11.
 */

@Controller
public class SpringMVCTest {

    @Autowired
    private EmployDao employDao;

    @RequestMapping(value = "/testConversionServiceConverter", method = RequestMethod.POST)
    public String testConverter(@RequestParam("employee") Employee employee) {
        System.out.print("save:" + employee);
        employDao.save(employee);
        return "redirect:/emps";
    }
}

EmployeeConverter.java

package com.hust.springmvc.converters;

import com.hust.springmvc.dao.DepartmentDao;
import com.hust.springmvc.entities.Department;
import com.hust.springmvc.entities.Employee;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.convert.converter.Converter;
import org.springframework.stereotype.Component;

/**
 * Created by yexx on 16-11-11.
 */

@Component
public class EmployeeConverter implements Converter<String, Employee> {

    @Autowired
    private DepartmentDao departmentDao;

    @Override
    public Employee convert(String s) {
        if (s != null) {
            String[] vals = s.split("-");
            if (vals != null && vals.length == 4) {
                String lastName = vals[0];
                String email = vals[1];
                Integer gender = Integer.parseInt(vals[2]);

                Employee employee = new Employee(null, lastName, email, gender, departmentDao.getDepartment(Integer.parseInt(vals[3])));
                System.out.println(s + "--convert--" + employee);
                return employee;
            }
        }
        return null;
    }
}

在SpringMVC的配置文件配置如下。配置conversionService,而且还要在mvc:annotation-driven配置一下conversion-service。

<mvc:annotation-driven conversion-service="conversionService"></mvc:annotation-driven>

    <!-- 配置 ConversionService -->
    <bean id="conversionService"
          class="org.springframework.context.support.ConversionServiceFactoryBean">
        <property name="converters">
            <set>
                <ref bean="employeeConverter"/>
            </set>
        </property>
    </bean>

这样就能进行自定义数据转换器的功能了,会按照自定义的字符串的格式转换为相应的对象。

跟踪流程:

先在字符串进来的地方打断点,debug模式进入,找到resolveArgument,找到binder。

这里写图片描述

找到conversionService

这里写图片描述

找到最底下我们自己自定义的数据转换器,看到了包名了吧,还有String类型的。可以把他们加到watches,看到具体情况。

这里写图片描述

运行截图

这里写图片描述

这里写图片描述

目录
相关文章
|
前端开发 Java 编译器
SpringMVC自定义注解---[详细介绍]
SpringMVC自定义注解---[详细介绍]
43 0
SpringMVC入门到实战------5、域对象共享数据 Request、Session、Application、Model、ModelAndView、Map、ModelMap的详细使用及代码实例
这篇文章详细解释了在IntelliJ IDEA中如何使用Mute Breakpoints功能来快速跳过程序中的后续断点,并展示了如何一键清空所有设置的断点。
SpringMVC入门到实战------5、域对象共享数据 Request、Session、Application、Model、ModelAndView、Map、ModelMap的详细使用及代码实例
|
5月前
|
JSON 前端开发 数据格式
SpringMVC的数据响应-直接回写json字符串
SpringMVC的数据响应-直接回写json字符串
|
6月前
|
前端开发 Java Spring
数据之桥:深入Spring MVC中传递数据给视图的实用指南
数据之桥:深入Spring MVC中传递数据给视图的实用指南
88 3
|
6月前
SpringMVC 域对象共享数据
SpringMVC 域对象共享数据
30 0
|
6月前
【SpringMVC】SpringMVC方式,向作用域对象共享数据(ModelAndView、Model、map、ModelMap)
【SpringMVC】SpringMVC方式,向作用域对象共享数据(ModelAndView、Model、map、ModelMap)
66 1
|
6月前
SpringMVC之获取请求参数和域对象共享数据
【1月更文挑战第18天】 一、SpringMVC获取请求参数 1、通过ServletAPI获取 2、通过控制器方法的形参获取请求参数 3、@RequestParam 4、@RequestHeader 5、@CookieValue 6、通过POJO获取请求参数 7、解决获取请求参数的乱码问题 二、域对象共享数据 1、使用ServletAPI向request域对象共享数据 2、使用ModelAndView向request域对象共享数据 3、使用Model向request域对象共享数据 4、使用map向request域对象共享数据 5、使用ModelMap向request域对象共享数据
103 0
|
6月前
|
缓存 安全 Java
SpringMVC自定义注解和使用
SpringMVC自定义注解和使用
133 0
|
6月前
SpringMVC之域对象共享数据
SpringMVC之域对象共享数据
|
JSON 安全 Java
SpringMVC之自定义注解(这期博客带你领略自定义注解的魅力)
SpringMVC之自定义注解(这期博客带你领略自定义注解的魅力)
66 0
SpringMVC之自定义注解(这期博客带你领略自定义注解的魅力)