這篇“SpringBoot如何讀取資源目錄中的JSON文件”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“SpringBoot如何讀取資源目錄中的JSON文件”文章吧。
10年積累的做網(wǎng)站、成都網(wǎng)站設(shè)計經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認識你,你也不認識我。但先網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有瀍河免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
使用Spring的ResourceUtils讀取資源目錄下的json文件。
使用common-io將讀取的文件轉(zhuǎn)化為json字符串。
使用fastjson將json字符串反序列為對象。
pom.xml,主要是common-io、fastjson的引入。
commons-io commons-io 2.11.0 com.alibaba.fastjson2 fastjson2 2.0.14
notice.json,簡單列舉要使用json內(nèi)容。
[ { "title": "新功能xxx上線", "content": "支持xxx" }, { "title": "舊功能xxx下線", "content": "不支持xxx" } ]
3.1.定義接口
package com.example.springbootjson.service; import com.example.springbootjson.domain.NoticeInfo; import java.io.IOException; import java.util.List; /** * @author hongcunlin */ public interface NoticeService { /** * 獲取公告 * * @return 公告 * @throws IOException 文件 */ ListgetNoticeInfoList() throws IOException; }
3.2.實現(xiàn)接口
這里可以說是本文的核心部分了,具體可以看代碼中的實現(xiàn),通過ResourceUtils讀取notice.json這個json文件,通過common-io的FileUtils轉(zhuǎn)化文件為json字符串,通過fastjson的JSON反序列json對象。
package com.example.springbootjson.service.impl; import com.alibaba.fastjson2.JSON; import com.example.springbootjson.domain.NoticeInfo; import com.example.springbootjson.service.NoticeService; import org.apache.commons.io.FileUtils; import org.springframework.stereotype.Service; import org.springframework.util.ResourceUtils; import java.io.File; import java.io.IOException; import java.util.List; /** * @author hongcunlin */ @Service public class NoticeServiceImpl implements NoticeService { @Override public ListgetNoticeInfoList() throws IOException { File file = ResourceUtils.getFile("classpath:notice.json"); String json = FileUtils.readFileToString(file, "UTF-8"); List noticeInfoList = JSON.parseArray(json, NoticeInfo.class); return noticeInfoList; } }
編寫一個簡單的集成測試,將上述編寫的Service注入,執(zhí)行方法,打印執(zhí)行結(jié)果。
package com.example.springbootjson; import com.example.springbootjson.service.NoticeService; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; import javax.annotation.Resource; import java.io.IOException; @SpringBootTest class SpringbootJsonApplicationTests { @Resource private NoticeService noticeService; @Test void contextLoads() throws IOException { System.out.println(noticeService.getNoticeInfoList()); } }
可以看到,可以正常地輸出json文件中的內(nèi)容,說明我們的程序是正確的。
以上就是關(guān)于“SpringBoot如何讀取資源目錄中的JSON文件”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。