欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot返回多种格式的数据的实现示例

程序员文章站 2022-06-17 22:22:40
目录一、springboot整合fastjson1.1、引入fastjson依赖包1.2、创建一个web mvc的配置类,并放在springboot扫描包路径下。二、springboot返回xml数据...

一、springboot整合fastjson

1.1、引入fastjson依赖包

maven项目:

<dependency>
    <groupid>com.alibaba</groupid>
    <artifactid>fastjson</artifactid>
    <version>1.2.78</version>
</dependency>

gradle项目:

compile 'com.alibaba:fastjson:1.2.78'    // 引入fastjson

1.2、创建一个web mvc的配置类,并放在springboot扫描包路径下。

package com.it.config;

import com.alibaba.fastjson.serializer.serializerfeature;
import com.alibaba.fastjson.support.config.fastjsonconfig;
import com.alibaba.fastjson.support.spring.fastjsonhttpmessageconverter;
import org.springframework.context.annotation.configuration;
import org.springframework.http.mediatype;
import org.springframework.http.converter.httpmessageconverter;
import org.springframework.http.converter.json.mappingjackson2httpmessageconverter;
import org.springframework.web.servlet.config.annotation.webmvcconfigurer;

import java.util.arraylist;
import java.util.list;

@configuration
public class webconfig implements webmvcconfigurer {

    @override
    public void configuremessageconverters(list<httpmessageconverter<?>> converters) {
        // 1.springboot默认使用jaskson组件,需要先移除jaskson组件
        for (httpmessageconverter<?> converter : converters) { // 循环所有的转换器
            if (converter instanceof mappingjackson2httpmessageconverter) {
                converters.remove(converter); // 删除jaskson转换器
            }
        }
        // 2. 项目中添加fastjson转换器
        fastjsonhttpmessageconverter fastjsonhttpmessageconverter = new fastjsonhttpmessageconverter();
        // 3. 配置fastjson转换器
        fastjsonconfig fastjsonconfig = new fastjsonconfig();
        fastjsonconfig.setserializerfeatures( // 配置序列化相关操作
                serializerfeature.writemapnullvalue,              // 允许map内容为null
                serializerfeature.writenulllistasempty,           // list集合为null使用[]代替
                serializerfeature.writenullstringasempty,         // string内容为null使用空文字代替
                serializerfeature.writedateusedateformat,         // 日期格式化输出
                serializerfeature.writenullnumberaszero,          // 数字为空使用0代替
                serializerfeature.disablecircularreferencedetect  // 禁用循环引用
        );
        fastjsonhttpmessageconverter.setfastjsonconfig(fastjsonconfig); // 配置fastjson转换处理
        // 4. 配置响应的头信息
        list<mediatype> fastjsonmediatypes = new arraylist<>(); // 所有的响应类型
        fastjsonmediatypes.add(mediatype.application_json); // 使用json类型进行相应
        fastjsonhttpmessageconverter.setsupportedmediatypes(fastjsonmediatypes);
        // 5. 转换器列表中添加配置好的fastjson组件
        converters.add(fastjsonhttpmessageconverter);
    }
}

1.3、测试fastjson是否引入成功。

创建message类:

import com.fasterxml.jackson.annotation.jsonformat;
import lombok.data;

import java.util.date;

@data
public class message {
    private string title;
    @jsonformat(pattern = "yyyy年mm月dd日")
    private date pubdate;
    private string content;
}

restcontroller中添加测试方法:

@requestmapping("/echo")
public object echo(message message) {
    message.settitle("【echo】" + message.gettitle());
    message.setcontent("【echo】" + message.getcontent());
    return message;
}

访问echo发现fastjson引入成功:

SpringBoot返回多种格式的数据的实现示例

二、springboot返回xml数据

2.1、引入jackson组件依赖

jackson组件既支持json操作,也支持xml操作。

<dependency>
    <groupid>com.fasterxml.jackson.dataformat</groupid>
    <artifactid>jackson-dataformat-xml</artifactid>
    <version>2.12.2</version>
</dependency>

<dependency>
    <groupid>com.fasterxml.jackson.core</groupid>
    <artifactid>jackson-databind</artifactid>
    <version>2.12.2</version>
</dependency>

<dependency>
    <groupid>com.fasterxml.jackson.core</groupid>
    <artifactid>jackson-annotations</artifactid>
    <version>2.12.2</version>
</dependency>

如果使用的是gradle构建项目:

compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.12.2'
compile 'com.fasterxml.jackson.core:jackson-databind:2.12.2'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.12.2'

2.2、新建vo类,引入jackson-xml注解

package com.it.vo;

import lombok.data;

import javax.xml.bind.annotation.xmlelement;
import javax.xml.bind.annotation.xmlrootelement;
import java.util.date;

@data
@xmlrootelement  // 定义xml根元素
public class message {
    @xmlelement  // xml元素
    private string title;
    @xmlelement
    private date pubdate;
    @xmlelement
    private string content;
}

2.3、建立restcontroller测试返回数据

@requestmapping("/echo")
public object echo(message message) {
    message.settitle("【echo】" + message.gettitle());
    message.setcontent("【echo】" + message.getcontent());
    return message;
}

SpringBoot返回多种格式的数据的实现示例

三、springboot返回pdf数据

pdf是portable document format的简称,意为“可携带文档格式”,是由adobe systems用于与应用程序、操作系统、硬件无关的方式进行文件交换所发展出的文件格式。pdf文件以postscript语言图象模型为基础,无论在哪种打印机上都可保证精确的颜色和准确的打印效果,即pdf会忠实地再现原稿的每一个字符、颜色以及图象。

在java项目中,itextpdf组件是比较常见的pdf创建工具、如果想要让springboot程序以pdf的形式进行相应,那么需要引入itextpdf创建组件依赖。

3.1、引入itextpdf组件依赖

<dependency>
    <groupid>com.itextpdf</groupid>
    <artifactid>itextpdf</artifactid>
    <version>5.5.13.2</version>
</dependency>

如果使用的是gradle构建的项目:

compile 'com.itextpdf:itextpdf:5.5.13.2'

3.2、引入系统字体库

将pdf打印需要用到的字体放到项目资源路径:src/main/resources/fonts下(windows系统字体库路径:c:\windows\fonts)

SpringBoot返回多种格式的数据的实现示例

3.3、在pdf中存入图片

src/main/resources/images下存放一张图片pic.jpg。

SpringBoot返回多种格式的数据的实现示例

3.4、创建pdf生成控制器

package com.it.action;

import com.itextpdf.text.*;
import com.itextpdf.text.pdf.basefont;
import com.itextpdf.text.pdf.pdfpcell;
import com.itextpdf.text.pdf.pdfptable;
import com.itextpdf.text.pdf.pdfwriter;
import org.springframework.core.io.classpathresource;
import org.springframework.core.io.resource;
import org.springframework.stereotype.controller;
import org.springframework.web.bind.annotation.getmapping;
import org.springframework.web.bind.annotation.requestmapping;

import javax.servlet.http.httpservletresponse;

@controller
@requestmapping("/pdf")
public class pdfaction {

    @getmapping("/create")
    public void createpdf(httpservletresponse response) throws exception { // 使用response处理响应
        response.setheader("content-type", "application/pdf"); // 设置相应类型
        // 强制开启下载,并配置下载名称
        response.setheader("content-disposition", "attachment;filename=a.pdf");
        // 使用itextpdf在内存生成pdf
        document document = new document(pagesize.a4, 10, 10, 50, 20); // 设置页面大小、边距
        // 获取pdf的输出流配置
        pdfwriter.getinstance(document, response.getoutputstream());
        // 开始构建pdf文档内容
        document.open();
        resource imageresource = new classpathresource("/images/pic.jpg"); // spring提供的资源访问
        image image = image.getinstance(imageresource.getfile().getabsolutepath()); // 通过指定路径加载图片
        // pdf在生成文件的时候是基于坐标的方式进行绘制
        image.scaletofit(pagesize.a4.getwidth() / 2, pagesize.a4.getheight());
        float printx = (pagesize.a4.getwidth() - image.getscaledwidth()) / 2;
        float printy = pagesize.a4.getheight() - image.getheight() - 100;
        image.setabsoluteposition(printx, printy); // 设置图片绘制坐标
        document.add(image);
        document.add(new paragraph("\n\n\n")); //图片之后换三行输出文字
        // 加载字库
        resource fontresource = new classpathresource("/fonts/fzstk.ttf");
        basefont basefont = basefont.createfont(fontresource.getfile().getabsolutepath(),
                basefont.identity_h, basefont.embedded);
        font font = new font(basefont, 20, font.normal); // 引用字库
        // pdf上绘制文本信息
        string[] titles = new string[]{"springboot test"};
        for (string title : titles) { // 循环输出
            pdfptable table = new pdfptable(2); // 定义表格
            pdfpcell cell = new pdfpcell(); //创建单元格
            cell.setphrase(new paragraph(title, font)); // 单元格内容
            table.addcell(cell); // 追加单元格
            document.add(table); // 追加文档
        }
        document.close();
    }
}

四、springboot返回excel数据

springboot为了便于用户生成excel文件,提供了easypoi-spring-boot-starter依赖库。

4.1、引入easypoi-spring-boot-starter依赖库

<dependency>
    <groupid>cn.afterturn</groupid>
    <artifactid>easypoi-spring-boot-starter</artifactid>
    <version>4.4.0</version>
</dependency>

如果是gradle项目:

compile 'cn.afterturn:easypoi-spring-boot-starter:4.4.0'

4.2、新建message类

excel表格可以通过java bean转换生成。

package com.it.vo;

import cn.afterturn.easypoi.excel.annotation.excel;
import lombok.data;

import java.util.date;

@data
public class message {
    @excel(name = "信息标题", ordernum = "0", width = 30)
    private string title;
    @excel(name = "信息日期", ordernum = "1", width = 50)
    private date pubdate;
    @excel(name = "信息内容", ordernum = "2", width = 100)
    private string content;
}

4.3、新建excelaction负责生成excel

package com.it.action;

import cn.afterturn.easypoi.excel.entity.exportparams;
import cn.afterturn.easypoi.excel.entity.enmus.exceltype;
import cn.afterturn.easypoi.excel.export.excelexportservice;
import com.it.vo.message;
import org.apache.poi.xssf.usermodel.xssfworkbook;
import org.springframework.stereotype.controller;
import org.springframework.web.bind.annotation.getmapping;
import org.springframework.web.bind.annotation.requestmapping;

import javax.servlet.http.httpservletresponse;
import java.util.arraylist;
import java.util.date;
import java.util.list;

@controller
@requestmapping("/excel")
public class excelaction {

    @getmapping("/create")
    public void createexcel(httpservletresponse response) throws exception { // 使用response处理响应
        response.setheader("content-type",
                "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); // 设置响应类型
        // 强制开启下载,并配置下载名称
        response.setheader("content-disposition", "attachment;filename=test.xls");
        list<message> messagelist = new arraylist<>();
        messagelist.add(new message("重大消息", new date(), "xxx厂喜迎重大改革"));
        messagelist.add(new message("首届稀土开发者大会全日程公布", new date(), "27-28日直播两天精彩不停!"));
        exportparams exportparams = new exportparams("消息管理", "最新消息", exceltype.xssf);
        xssfworkbook workbook = new xssfworkbook();
        new excelexportservice().createsheet(workbook, exportparams, message.class, messagelist);
        workbook.write(response.getoutputstream());
    }
}

SpringBoot返回多种格式的数据的实现示例 

五、springboot返回资源流

在进行前后端分离设计的时候,需要进行一些资源的加载,一般会有两种做法:

  • 直接通过远程文件服务器进行资源的加载。
  • 通过程序进行加载。

5.1、返回图像流

程序在进行图像流返回的时候只需要将返回类型设置为图片即可。

5.1.1、创建imageaction负责返回图像流

package com.it.action;

import org.springframework.core.io.classpathresource;
import org.springframework.core.io.resource;
import org.springframework.http.mediatype;
import org.springframework.web.bind.annotation.getmapping;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.restcontroller;

import java.io.ioexception;
import java.io.inputstream;

@restcontroller
@requestmapping("/image")
public class imageaction {

    @getmapping(value = "/download", produces =
            {mediatype.image_jpeg_value, mediatype.image_gif_value, mediatype.image_png_value}) // 设置返回类型
    public byte[] createimage() throws ioexception {
        resource imageresource = new classpathresource("/images/dog.jpg");
        inputstream inputstream = imageresource.getinputstream();
        byte[] bytes = new byte[inputstream.available()];
        inputstream.read(bytes, 0, imageresource.getinputstream().available());// 实现文件加载
        return bytes;
    }
}

5.1.2、输入访问路径

http://localhost:8080/image/download

SpringBoot返回多种格式的数据的实现示例 

5.2、返回视频流

springboot可以实现对视频流的控制。

5.2.1、提供视频资源的请求处理器

package com.it.handler;

import org.springframework.core.io.classpathresource;
import org.springframework.core.io.resource;
import org.springframework.stereotype.component;
import org.springframework.web.servlet.resource.resourcehttprequesthandler;

import javax.servlet.http.httpservletrequest;
import java.io.ioexception;

/**
 * 请求处理器
 */
@component
public class videoresourcehttprequesthandler extends resourcehttprequesthandler {
    @override
    public resource getresource(httpservletrequest request) throws ioexception {
        return new classpathresource("/videos/study.mp4");
    }
}

5.2.2、定义视频响应action类

package com.it.action;

import com.it.handler.videoresourcehttprequesthandler;
import org.springframework.web.bind.annotation.getmapping;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.restcontroller;

import javax.servlet.http.httpservletrequest;
import javax.servlet.http.httpservletresponse;

@restcontroller
@requestmapping("/video")
public class videoaction {

    private final videoresourcehttprequesthandler videoresourcehttprequesthandler;

    public videoaction(videoresourcehttprequesthandler videoresourcehttprequesthandler) {
        this.videoresourcehttprequesthandler = videoresourcehttprequesthandler;
    }

    @getmapping("/download")
    public void createvideo(httpservletrequest request, httpservletresponse response) throws exception {
        this.videoresourcehttprequesthandler.handlerequest(request, response);
    }
}

5.2.3、输入访问路径

http://localhost:8080/video/download

SpringBoot返回多种格式的数据的实现示例

六、springboot文件下载

springboot可以直接通过输出流的方式实现文件下载,例如下载resources/files/banner.rar文件:

SpringBoot返回多种格式的数据的实现示例

package com.it.action;

import org.springframework.core.io.classpathresource;
import org.springframework.core.io.resource;
import org.springframework.web.bind.annotation.getmapping;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.restcontroller;

import javax.servlet.http.httpservletresponse;
import java.io.ioexception;
import java.io.inputstream;

@restcontroller
@requestmapping("/file")
public class downloadaction {

    @getmapping("/download")
    public void filedownload(httpservletresponse response) throws ioexception {
        response.setcontenttype("application/force-download");// 强制性下载
        response.setheader("content-disposition", "attachment;filename=banner.rar");
        resource fileresource = new classpathresource("/files/banner.rar"); // 要下载的文件
        // 通过io流读取文件内容
        inputstream input = fileresource.getinputstream();
        byte[] data = new byte[1024]; // 每次最多读取1024字节
        int len = 0; // 每次读取的字节数
        while ((len = input.read(data)) != -1) {
            response.getoutputstream().write(data, 0, len);
        }
    }
}

访问:http://localhost:8080/file/download:

SpringBoot返回多种格式的数据的实现示例

到此这篇关于springboot返回多种格式的数据的实现示例的文章就介绍到这了,更多相关springboot返回多种格式内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!