search
HomeJavajavaTutorialSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text

In series (6) we introduced how to verify the correctness of the submitted data. When the data passes the verification, it will be saved by us. The saved data will be used for future display, which is the value of saving. So how to display it as required when displaying? (For example: retain a certain number of decimal digits, date in a specified format, etc.). This is what this article is about—>Formatted display.

Starting from Spring SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text. For conversion, Formatter SPI is an encapsulation of Converter SPI and adds support for internationalization. Its internal conversion is still completed by Converter SPI.

The following is a simple conversion process between a request and a model object:

SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text

Spring provides FormattingConversionService and DefaultFormattingConversionService to complete object parsing and formatting. Several Formatter SPIs built into Spring are as follows:

##NameFunctionNumberFormatterRealize the parsing and formatting between Number and StringCurrencyFormatterRealize the parsing and formatting between Number and String (with currency symbol)PercentFormatterRealizes parsing and formatting between Number and String (with percent symbol)DateFormatterImplement the parsing and formatting between Date and StringNumberFormatAnnotationFormatterFactory@NumberFormat annotation, to realize the parsing and formatting between Number and String, can be specified by style to indicate the format to be converted (Style.Number/Style.Currency/Style.Percent). Of course, you can also specify pattern (such as pattern="#.##" (retaining SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text decimal places)), so that the format specified by pattern will Override the format specified by StyleJodaDateTimeFormatAnnotationFormatterFactory@DateTimeFormat annotation to implement parsing and formatting between date types and String. Date types here include Date, Calendar, Long and Joda date types. Joda-Time package must be added to the project

Let’s start the demonstration:

First add the Joda-Time package to the previous project. Here we use joda-time-SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text.SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text.jar, and add a formattest.jsp view under the views folder. , the content is as follows:

nbsp;html PUBLIC "-//WSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextC//DTD HTML SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text.0SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text Transitional//EN" "http://www.wSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text.org/TR/htmlSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text/loose.dtd"><meta><title>Insert title here</title>
    money:<br>${contentModel.money}<br>
    date:<br>${contentModel.date}<br>
    


SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text. First, we use Formatter directly for demonstration, and add FormatModel.java in the com.demo.web.models package with the following content:

package com.demo.web.models;public class FormatModel{    
    private String money;    private String date;    
    public String getMoney(){        return money;
    }    public String getDate(){        return date;
    }    
    public void setMoney(String money){        this.money=money;
    }    public void setDate(String date){        this.date=date;
    }
        
}


Add FormatController.java in the com.demo.web.controllers package with the following content:

package com.demo.web.controllers;import java.math.RoundingMode;import java.util.Date;import java.util.Locale;import org.springframework.context.iSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text8n.LocaleContextHolder;import org.springframework.format.datetime.DateFormatter;import org.springframework.format.number.CurrencyFormatter;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import com.demo.web.models.FormatModel;

@Controller
@RequestMapping(value = "/format")public class FormatController {
    
    @RequestMapping(value="/test", method = {RequestMethod.GET})    public String test(Model model) throws NoSuchFieldException, SecurityException{        if(!model.containsAttribute("contentModel")){
            
            FormatModel formatModel=new FormatModel();

            CurrencyFormatter currencyFormatter = new CurrencyFormatter();  
            currencyFormatter.setFractionDigits(SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text);//保留SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text位小数
            currencyFormatter.setRoundingMode(RoundingMode.HALF_UP);//向(距离)最近的一边舍入,如果两边(的距离)是相等的则向上舍入(四舍五入)            
            DateFormatter dateFormatter=new DateFormatter();
            dateFormatter.setPattern("yyyy-MM-dd HH:mm:ss");
            
            Locale locale=LocaleContextHolder.getLocale();
            
            formatModel.setMoney(currencyFormatter.print(SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text5.678, locale));
            formatModel.setDate(dateFormatter.print(new Date(), locale));        
            
            model.addAttribute("contentModel", formatModel);
        }        return "formattest";
    }
    
}


Run the test:

SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text

Change your preferred browser language:

SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text

Refresh the page:

SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text

SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text. This time use DefaultFormattingConversionService for demonstration, change FormatController.java to the following content:

package com.demo.web.controllers;import java.math.RoundingMode;import java.util.Date;import org.springframework.format.datetime.DateFormatter;import org.springframework.format.number.CurrencyFormatter;import org.springframework.format.support.DefaultFormattingConversionService;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import com.demo.web.models.FormatModel;

@Controller
@RequestMapping(value = "/format")public class FormatController {
    
    @RequestMapping(value="/test", method = {RequestMethod.GET})    public String test(Model model) throws NoSuchFieldException, SecurityException{        if(!model.containsAttribute("contentModel")){
            
            FormatModel formatModel=new FormatModel();

            CurrencyFormatter currencyFormatter = new CurrencyFormatter();  
            currencyFormatter.setFractionDigits(SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text);//保留SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text位小数
            currencyFormatter.setRoundingMode(RoundingMode.HALF_UP);//向(距离)最近的一边舍入,如果两边(的距离)是相等的则向上舍入(四舍五入)            
            DateFormatter dateFormatter=new DateFormatter();
            dateFormatter.setPattern("yyyy-MM-dd HH:mm:ss");
            
            DefaultFormattingConversionService conversionService = new DefaultFormattingConversionService();  
            conversionService.addFormatter(currencyFormatter); 
            conversionService.addFormatter(dateFormatter); 
            
            formatModel.setMoney(conversionService.convert(SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text5.678, String.class));
            formatModel.setDate(conversionService.convert(new Date(), String.class));    
            
            model.addAttribute("contentModel", formatModel);
        }        return "formattest";
    }
    
}


##This time there is no Locale locale=LocaleContextHolder.getLocale( ); Run the test again and change the language and refresh. You can see the same effect as the screenshot of the first method, indicating that the DefaultFormattingConversionService will automatically return the corresponding format according to the information requested by the browser.

SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text. I guess some people may think, ah... I just want to format the display. Why should it be so troublesome to write code to convert field by field? ? ? Don’t worry, the above is just a demonstration of the built-in format converter. It will definitely not be used in actual projects. Here is an introduction to annotation-based formatting. First, change FormatModel.java to the following content:

package com.demo.web.models;import java.util.Date;import org.springframework.format.annotation.DateTimeFormat;import org.springframework.format.annotation.NumberFormat;import org.springframework.format.annotation.NumberFormat.Style;public class FormatModel{
    
    @NumberFormat(style=Style.CURRENCY)   private double money;
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")    private Date date;    
    public double getMoney(){        return money;
    }    public Date getDate(){        return date;
    }    
    public void setMoney(double money){        this.money=money;
    }    public void setDate(Date date){        this.date=date;
    }
        
}


Note: The money and date here are no longer String types, but their own types.

Change FormatController.java to the following content:

package com.demo.web.controllers;import java.util.Date;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import com.demo.web.models.FormatModel;

@Controller
@RequestMapping(value = "/format")public class FormatController {
    
    @RequestMapping(value="/test", method = {RequestMethod.GET})    public String test(Model model) throws NoSuchFieldException, SecurityException{        if(!model.containsAttribute("contentModel")){
            
            FormatModel formatModel=new FormatModel();

            formatModel.setMoney(SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text5.678);
            formatModel.setDate(new Date());
            
            model.addAttribute("contentModel", formatModel);
        }        return "formattest";
    }
    
}


Note: There is only assignment and no formatting content in this code.

Change the content of the view formattest.jsp as follows:

nbsp;html PUBLIC "-//WSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextC//DTD HTML SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text.0SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text Transitional//EN" "http://www.wSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text.org/TR/htmlSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text/loose.dtd">
<meta><title>Insert title here</title>
    
    money:<br>
    <eval></eval><br>
    date:<br>
    <eval></eval><br>
    


Note: You need to add a reference here@taglib prefix="spring" uri="http://www.php.cn/" %>, and use spring:eval to bind the value to be displayed.

Run the test, change the browser language and refresh the page. You can still see the same effect as the screenshot in the first method, which proves that the annotation is valid.

The formatted display content ends here.

Note: I didn’t pay attention to the sample codes in the first SpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and TextSpringMVC Learning Series (7) Detailed Explanation of Formatted Display Graphics and Text articles before. I don’t know why the package and uploaded at that time did not have a .project project file. As a result, after downloading, it could not be directly imported into eclipse to run, and the virtual machine was I deleted it, and there is no backup of these sample codes, but the code files are still there, so you can create a new Dynamic Web Project and import the corresponding configuration files, controllers and views. I apologize for the inconvenience caused to everyone.

The above is the detailed explanation of the graphic display of formatted display in SpringMVC learning series (7). For more related content, please pay attention to the PHP Chinese website ( www.php.cn)!


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
SpringBoot与SpringMVC的比较及差别分析SpringBoot与SpringMVC的比较及差别分析Dec 29, 2023 am 11:02 AM

SpringBoot和SpringMVC都是Java开发中常用的框架,但它们之间有一些明显的差异。本文将探究这两个框架的特点和用途,并对它们的差异进行比较。首先,我们来了解一下SpringBoot。SpringBoot是由Pivotal团队开发的,它旨在简化基于Spring框架的应用程序的创建和部署。它提供了一种快速、轻量级的方式来构建独立的、可执行

比较SpringBoot与SpringMVC的差异是什么?比较SpringBoot与SpringMVC的差异是什么?Dec 29, 2023 am 10:46 AM

SpringBoot与SpringMVC的不同之处在哪里?SpringBoot和SpringMVC是两个非常流行的Java开发框架,用于构建Web应用程序。尽管它们经常分别被使用,但它们之间的不同之处也是很明显的。首先,SpringBoot可以被看作是一个Spring框架的扩展或者增强版。它旨在简化Spring应用程序的初始化和配置过程,以帮助开发人

SpringBoot与SpringMVC的区别是什么?SpringBoot与SpringMVC的区别是什么?Dec 29, 2023 pm 05:19 PM

SpringBoot和SpringMVC是Java开发中常用的两个框架,它们都是由Spring框架所提供的,但在功能和使用方式上有着一些区别。本文将分别介绍SpringBoot和SpringMVC的特点和区别。一、SpringBoot的特点:简化配置:SpringBoot通过约定优于配置的原则,大大简化了项目的配置过程。它可以自动配置项目所需要的参数,开发人

springboot和springmvc有哪些区别springboot和springmvc有哪些区别Jun 07, 2023 am 10:10 AM

springboot和springmvc区别是:​1、含义不同;2、配置不同;3、依赖项不同;4、开发时间不同;5、生产力不同;6、实现JAR打包功能的方式不同;7、是否提供批处理功能;8、作用不同;9、社区和文档支持不同;10、是否需要部署描述符。

spring和springmvc有哪些区别spring和springmvc有哪些区别Dec 29, 2023 pm 05:02 PM

spring和springmvc的区别:1、定位和功能;2、核心功能;3、应用领域;4、扩展性。详细介绍:1、定位和功能,Spring是一个综合性的应用程序开发框架,提供了依赖注入、面向切面编程、事务管理等功能,旨在简化企业级应用程序的开发,而Spring MVC是Spring框架中的一个模块,用于Web应用程序的开发,实现了MVC模式;2、核心功能等等。

Java API 开发中使用 SpringMVC 进行 Web 服务处理Java API 开发中使用 SpringMVC 进行 Web 服务处理Jun 17, 2023 pm 11:38 PM

随着互联网的发展,Web服务越来越普遍。JavaAPI作为一种应用编程接口,也在不断地推出新的版本来适应不同的应用场景。而SpringMVC作为一种流行的开源框架,能够帮助我们轻松地构建Web应用程序。本文将详细讲解在JavaAPI开发中,如何使用SpringMVC进行Web服务处理,包括配置SpringMVC、编写控制器、使用

Java的SpringMVC拦截器怎么用Java的SpringMVC拦截器怎么用May 13, 2023 pm 02:55 PM

拦截器(interceptor)的作用SpringMVC的拦截器类似于Servlet开发中的过滤器Filter,用于对处理器进行预处理和后处理。将拦截器按一定的顺序联结成一条链,这条链称为拦截器链(InterceptorChain)。在访问被拦截的方法或字段时,拦截器链中的拦截器就会按其之前定义的顺序被调用。拦截器也是AOP思想的具体实现。拦截器和过滤器区别区别过滤器(Filter)拦截器(Intercepter)使用范围是servlet规范中的一部分,任何JavaWeb工程都可以使用是Spri

比较SpringBoot和SpringMVC的异同点比较SpringBoot和SpringMVC的异同点Dec 29, 2023 am 08:30 AM

解析SpringBoot和SpringMVC之间的异同SpringBoot和SpringMVC是Java领域中非常重要的开发框架。虽然它们都属于Spring框架的一部分,但是在使用和功能上有一些明显的区别。本文将对SpringBoot和SpringMVC进行比较,解析它们之间的异同。首先,让我们来了解一下SpringBoot。SpringBo

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!