溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Spring Boot定制type Formatters有什么用

發(fā)布時間:2021-07-15 11:28:09 來源:億速云 閱讀:150 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關(guān)Spring Boot定制type Formatters有什么用的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

PropertyEditors是用來將文本類型轉(zhuǎn)換成指定的Java類型,不過,考慮到PropertyEditor的無狀態(tài)和非線程安全特性,Spring 3增加了一個Formatter接口來替代它。Formatters提供和PropertyEditor類似的功能,但是提供線程安全特性,也可以實現(xiàn)字符串和對象類型的互相轉(zhuǎn)換。

假設(shè)在我們的程序中,需要根據(jù)一本書的ISBN字符串得到對應(yīng)的book對象。通過這個類型格式化工具,我們可以在控制器的方法簽名中定義Book參數(shù),而URL參數(shù)只需要包含ISBN號和數(shù)據(jù)庫ID。

實戰(zhàn)

  • 首先在項目根目錄下創(chuàng)建formatters包

  • 然后創(chuàng)建BookFormatter,它實現(xiàn)了Formatter接口,實現(xiàn)兩個函數(shù):parse用于將字符串ISBN轉(zhuǎn)換成book對象;print用于將book對象轉(zhuǎn)換成該book對應(yīng)的ISBN字符串。

package com.test.bookpub.formatters;

import com.test.bookpub.domain.Book;
import com.test.bookpub.repository.BookRepository;
import org.springframework.format.Formatter;
import java.text.ParseException;
import java.util.Locale;

public class BookFormatter implements Formatter<Book> {
 private BookRepository repository;

 public BookFormatter(BookRepository repository) {
  this.repository = repository;
 }
 
 @Override
 public Book parse(String bookIdentifier, Locale locale) throws ParseException {
  Book book = repository.findBookByIsbn(bookIdentifier);
  return book != null ? book : repository.findOne(Long.valueOf(bookIdentifier));
 }
 
 @Override
 public String print(Book book, Locale locale) {
  return book.getIsbn();
 }
}

在WebConfiguration中添加我們定義的formatter,重寫(@Override修飾)addFormatter(FormatterRegistry registry)函數(shù)。

@Autowired
private BookRepository bookRepository;

@Override
public void addFormatters(FormatterRegistry registry) {
 registry.addFormatter(new BookFormatter(bookRepository));
}

最后,需要在BookController中新加一個函數(shù)getReviewers,根據(jù)一本書的ISBN號獲取該書的審閱人。

@RequestMapping(value = "/{isbn}/reviewers", method = RequestMethod.GET)
public List<Reviewer> getReviewers(@PathVariable("isbn") Book book) {
 return book.getReviewers();
}

通過mvn spring-boot:run運(yùn)行程序

通過httpie訪問URL——http://localhost:8080/books/9781-1234-1111/reviewers,得到的結(jié)果如下:

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Date: Tue, 08 Dec 2015 08:15:31 GMT
Server: Apache-Coyote/1.1
Transfer-Encoding: chunked

[]

分析

Formatter工具的目標(biāo)是提供跟PropertyEditor類似的功能。通過FormatterRegistry將我們自己的formtter注冊到系統(tǒng)中,然后Spring會自動完成文本表示的book和book實體對象之間的互相轉(zhuǎn)換。由于Formatter是無狀態(tài)的,因此不需要為每個請求都執(zhí)行注冊formatter的動作。

使用建議:如果需要通用類型的轉(zhuǎn)換——例如String或Boolean,最好使用PropertyEditor完成,因為這種需求可能不是全局需要的,只是某個Controller的定制功能需求。

我們在WebConfiguration中引入(@Autowired)了BookRepository(需要用它創(chuàng)建BookFormatter實例),Spring給配置文件提供了使用其他bean對象的能力。Spring本身會確保BookRepository先創(chuàng)建,然后在WebConfiguration類的創(chuàng)建過程中引入。

感謝各位的閱讀!關(guān)于“Spring Boot定制type Formatters有什么用”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI