本文首發於我的網站:Spring Boot項目中如何定製PropertyEditorsjava
在Spring Boot: 定製HTTP消息轉換器一文中咱們學習瞭如何配置消息轉換器用於HTTP請求和響應數據,實際上,在一次請求的完成過程當中還發生了其餘的轉換,咱們此次關注將參數轉換成多種類型的對象,如:字符串轉換成Date對象或字符串轉換成Integer對象。web
在編寫控制器中的action方法時,Spring容許咱們使用具體的數據類型定義函數簽名,這是經過PropertyEditor實現的。PropertyEditor原本是JDK提供的API,用於將文本值轉換成給定的類型,結果Spring的開發人員發現它剛好知足Spring的需求——將URL參數轉換成函數的參數類型。面試
針對經常使用的類型(Boolean、Currency和Class),Spring MVC已經提供了不少PropertyEditor實現。假設咱們須要建立一個Isbn類並用它做爲函數中的參數。spring
package com.test.bookpub.utils; public class Isbn { private String isbn; public Isbn(String isbn) { this.isbn = isbn; } public String getIsbn() { return isbn; } }
package com.test.bookpub.utils; import org.springframework.util.StringUtils; import java.beans.PropertyEditorSupport; public class IsbnEditor extends PropertyEditorSupport { @Override public void setAsText(String text) throws IllegalArgumentException { if (StringUtils.hasText(text)) { setValue(new Isbn(text.trim())); } else { setValue(null); } } @Override public String getAsText() { Isbn isbn = (Isbn) getValue(); if (isbn != null) { return isbn.getIsbn(); } else { return ""; } } }
@InitBinderpublic void initBinder(WebDataBinder binder) { binder.registerCustomEditor(Isbn.class, new IsbnEditor()); }
@RequestMapping(value = "/{isbn}", method = RequestMethod.GET) public Map<String, Object> getBook(@PathVariable Isbn isbn) { Book book = bookRepository.findBookByIsbn(isbn.getIsbn()); Map<String, Object> response = new LinkedHashMap<>(); response.put("message", "get book with isbn(" + isbn.getIsbn() +")"); response.put("book", book); return response; }
運行程序,經過Httpie訪問http localhost:8080/books/9781-1234-1111
,能夠獲得正常結果,跟以前用String表示isbn時沒什麼不一樣,說明咱們編寫的IsbnEditor已經起做用了。後端
Spring提供了不少默認的editor,咱們也能夠經過繼承PropertyEditorSupport實現本身定製化的editor。安全
因爲ProperteyEditor是非線程安全的。經過@InitBinder註解修飾的initBinder函數,會爲每一個web請求初始化一個editor實例,並經過WebDataBinder對象註冊。app
本號專一於後端技術、JVM問題排查和優化、Java面試題、我的成長和自我管理等主題,爲讀者提供一線開發者的工做和成長經驗,期待你能在這裏有所收穫。
框架