我正在学习 Spring Boot,我知道如何从资源目录中读取 JSON 文件,但我想获取特定数据,而不是整个数据。像 localhost:8080/user 返回用户名。
下面是我当前的代码
package com.example;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.core.io.Resource;
import org.springframework.web.bind.annotation.*;
@RestController
@EnableAutoConfiguration
public class HelloWorld {
@Value("classpath:json/test.json")
private Resource resourceFile;
@RequestMapping("/")
Resource home() {
return resourceFile;
}
public static void main(String[] args) throws Exception {
SpringApplication.run(HelloWorld.class, args);
}
}
我想读取 test.json 文件中的特定数据。请给我一些建议或步骤。谢谢
胡子哥哥
慕哥6287543
相关分类