您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)利用SpringMVC如何實現(xiàn)一個自定義類型轉(zhuǎn)換器,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
我們在使用SpringMVC時,常常需要把表單中的參數(shù)映射到我們對象的屬性中,我們可以在默認的spring-servlet.xml加上如下的配置即可做到普通數(shù)據(jù)類型的轉(zhuǎn)換,如將String轉(zhuǎn)換成Integer和Double等:
<mvc:annotation-driven />
代碼如下:
其實 <mvc:annotation-driven /> 標簽會默認創(chuàng)建并注冊一個 RequestMappingHandlerMapping(在Spring3.2之前是DefaultAnnotationHandlerMapping) 和 RequestMappingHandlerAdapter (Spring3.2之前是AnnotationMethodHandlerAdapter),當(dāng)然,如果上下文有對應(yīng)的顯示實現(xiàn)類,將該注解注冊的覆蓋掉。該注解還會創(chuàng)建一個ConversionService,即 FormattingConversionServiceFactoryBean。
如果想把一個字符串轉(zhuǎn)換成其它實體類型,spring沒有提供這樣默認的功能,我們需要自定義類型轉(zhuǎn)換器。
這里有個實體類Employee。
package com.proc; public class Employee { private String name; private Integer age; private String gender; public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public String getGender() { return gender; } public void setGender(String gender) { this.gender = gender; } @Override public String toString() { return "Employee [name=" + name + ", age=" + age + ", gender=" + gender + "]"; } }
規(guī)定將字符串轉(zhuǎn)換成實體類的規(guī)則為: name-age-gender
那么接下來就寫一個類型轉(zhuǎn)換器,需要實現(xiàn)一個接口org.springframework.core.convert.converter.Converter
package com.proc; import org.springframework.core.convert.converter.Converter; import org.springframework.stereotype.Component; @Component public class EmployeeConverter implements Converter<String, Employee> { @Override public Employee convert(String str) { Employee emp=null; //字符串格式 name-age-gender if(str!=null && str.split("-").length==3){ emp=new Employee(); String[] arr=str.split("-"); emp.setName(arr[0]); emp.setAge(Integer.parseInt(arr[1])); emp.setGender(arr[2]); } return emp; } }
這里我們?yōu)檗D(zhuǎn)換器加上@Component注解,是為了讓Spring自動掃描該轉(zhuǎn)換器到容器中。這樣就不用通過配置文件配置<bean>了
接下來編寫控制器
package com.proc; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; @Controller public class EmployeeController { @RequestMapping("/add") public String add(@RequestParam("employee") Employee employee){ System.out.println(employee); return "add"; } }
這里可以看到,參數(shù)的名字為employee,所有要為請求定義一個employee參數(shù),該參數(shù)傳入需要轉(zhuǎn)換的字符串
除此之外,我們還需要在spring配置文件中配置,如下類容。讓轉(zhuǎn)換器生效
<?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/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd"> <context:component-scan base-package="com.proc"></context:component-scan> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/"/> <property name="suffix" value=".jsp"></property> </bean> <mvc:annotation-driven conversion-service="conversionService"/> <bean id="conversionService" class="org.springframework.context.support.ConversionServiceFactoryBean"> <property name="converters"> <set> <ref bean="employeeConverter"/> </set> </property> </bean> </beans>
測試代碼:http://localhost:8080/springmvc-1/add?employee=caoyc-18-male
結(jié)果輸出:Employee [name=caoyc, age=18, gender=male]
上面配置文件中我們使用配置了一個ConversionServiceFactoryBean。雖然可以這樣,但不建議。我們通常用org.springframework.format.support.FormattingConversionServiceFactoryBean
為什么要這樣用呢?這樣用的好處是什么呢?
使用FormattingConversionServiceFactoryBean可以讓SpringMVC支持@NumberFormat和@DateTimeFormat等Spring內(nèi)部自定義的轉(zhuǎn)換器。
關(guān)于利用SpringMVC如何實現(xiàn)一個自定義類型轉(zhuǎn)換器就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。