使用SpringBoot读取json文件作为接口,前端Vue可以通过跨域访问接口数据
创建一个 SpringBoot 文件,文件结构目录如下:
-
-
-
spring-boot-test -
org.springframework.boot -
2.1.3.RELEASE -
-
-
-
org.springframework.boot -
spring-boot-starter-web -
-
-
-
org.springframework.boot -
spring-boot-starter-thymeleaf -
-
-
-
org.projectlombok -
lombok -
1.18.22 -
-
-
-
com.alibaba -
fastjson -
1.2.49 -
-
-
-
-
commons-io -
commons-io -
2.4 -
-
App.java作为启动类
代码如下:
- package com;
-
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
-
- @SpringBootApplication
- public class App {
- public static void main(String[] args) {
- SpringApplication.run(App.class);
- }
- }
在com目录下创建controller包,创建IndexController.java控制器类,用于处理特定的HTTP GET请求
- package com.controller;
-
-
- import org.springframework.core.io.Resource;
- import org.springframework.core.io.ResourceLoader;
- import org.springframework.http.MediaType;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RestController;
-
- import java.io.IOException;
-
- @RestController
- public class IndexController {
- // 资源加载器,用于加载外部资源
- private final ResourceLoader resourceLoader;
- // 构造函数注入资源加载器
- public IndexController(ResourceLoader resourceLoader) {
- this.resourceLoader = resourceLoader;
- }
-
- // 定义GET请求的端点"/json",并指定响应类型为JSON
- @GetMapping(value = "/json", produces = MediaType.APPLICATION_JSON_VALUE)
- public String getJsonData() throws IOException {
- // 加载资源,假设JSON文件名为moviedata.json,位于classpath下
- Resource resource = resourceLoader.getResource("classpath:moviedata.json");
- // 读取文件内容并转换为字符串
- String jsonContent = org.apache.commons.io.FileUtils.readFileToString(resource.getFile(), "UTF-8");
- return jsonContent;
- }
- }
在App.java启动程序
访问端口号
http://localhost:8080/json
结果: