当前位置: 首页 > 知识库问答 >
问题:

返回对象列表的Spring-Request方法显示错误

南宫浩皛
2023-03-14
@RestController
public class ApiController {
    @RequestMapping(value = "/", method = RequestMethod.GET)
    public String home() {
        return "<h1>Welcome to Spring REST API</h1>";
    }

    @RequestMapping(value = "/data", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    public @ResponseBody List<UserData> data() {
        return new UserService().getData();
    }

}
public class UserService {

    private List<UserData> data;

    public UserService() {
        this.data = new ArrayList<UserData>();
        this.data.add(new UserData(1, "Leanne Graham", "bret", "Sincere@april.biz", "Romaguera-Crona", "hildegard.org",
                "1-770-736-8031 x56442"));
        this.data.add(new UserData(2, "Ervin Howell", "Antonette", "Shanna@melissa.tv", "Deckow-Crist", "anastasia.net",
                "010-692-6593 x09125"));
        this.data.add(new UserData(3, "Clementine Bauch", "Samantha", "Nathan@yesenia.net", "Romaguera-Jacobson",
                "ramiro.info", "1-463-123-4447"));
        this.data.add(new UserData(4, "Patricia Lebsack", "Karianne", "Julianne.OConner@kory.org", "Robel-Corkery",
                "kale.biz", "1-770-736-8037"));
        this.data.add(new UserData(5, "Chelsey Dietrich", "Kamren", "Lucio_Hettinger@annie.ca", "Keebler LLC",
                "demarco.info", "1-344-736-8031 x564"));
    }

    /**
     * @return the data
     */
    public List<UserData> getData() {
        return data;
    }

    /**
     * @param data the data to set
     */
    public void setData(List<UserData> data) {
        this.data = data;
    }

}
public class UserData {

    int id;
    String name, username, email, company, website, phone;

    public UserData(int id, String name, String username, String email, String company, String website, String phone) {
        this.id = id;
        this.name = name;
        this.username = username;
        this.email = email;
        this.company = company;
        this.website = website;
        this.phone = phone;
    }

}

会引发以下错误和异常:

路径为[]的上下文中servlet[dispatcherServlet]的servlet.Service()引发异常[请求处理失败;嵌套异常为org.springframework.http.converter.httpmessageConversionException:类型定义错误:[简单类型,类com.example.springrest.userdata];嵌套异常为com.fasterxml.jackson.databind.exc.invaliddefinitionException:未找到类com.example.springrest.userdata的序列化程序,也未发现创建BeanSerializer的属性(为避免异常,禁用

共有1个答案

后树
2023-03-14

试试这个

控制器代码

@RestController
public class ApiController {

    @AutoWired
    UserService userservice;

    @RequestMapping(value = "/", method = RequestMethod.GET)
    public String home() {
        return "<h1>Welcome to Spring REST API</h1>";
    }

    @RequestMapping(value = "/data", method = RequestMethod.GET, produces = produces = MediaType.APPLICATION_JSON_VALUE)
    public List<UserData> data() {
        return new userservice.getData();
    }

}

服务代码

@Service
public class UserService {

    private List<UserData> data;

    public UserService() {
        this.data = new ArrayList<UserData>();
        this.data.add(new UserData(1, "Leanne Graham", "bret", "Sincere@april.biz", "Romaguera-Crona", "hildegard.org",
                "1-770-736-8031 x56442"));
        this.data.add(new UserData(2, "Ervin Howell", "Antonette", "Shanna@melissa.tv", "Deckow-Crist", "anastasia.net",
                "010-692-6593 x09125"));
        this.data.add(new UserData(3, "Clementine Bauch", "Samantha", "Nathan@yesenia.net", "Romaguera-Jacobson",
                "ramiro.info", "1-463-123-4447"));
        this.data.add(new UserData(4, "Patricia Lebsack", "Karianne", "Julianne.OConner@kory.org", "Robel-Corkery",
                "kale.biz", "1-770-736-8037"));
        this.data.add(new UserData(5, "Chelsey Dietrich", "Kamren", "Lucio_Hettinger@annie.ca", "Keebler LLC",
                "demarco.info", "1-344-736-8031 x564"));
    }

    /**
     * @return the data
     */
    public List<UserData> getData() {
        return data;
    }

    /**
     * @param data the data to set
     */
    public void setData(List<UserData> data) {
        this.data = data;
    }

}
 类似资料:
  • 我使用mysql存储过程来检索对象列表。这可能吗? 我在看这篇文章 问题: > 如何使用结果集检索select语句中的对象列表? 如何将结果集映射到对象列表? CREATE DEFINER=@PROCEDURE(ININT,OUTINT,OUTINT,OUTVARCHAR(50),OUTVARCHAR(50),OUTFLOAT 内部连接(从rate中选择aid,r.rate,re.country_

  • 我使用带thymeleaf 3的Spring靴 我试着展示一个豆子 在我的控制器里我有 在我的车里 在我的位置 在我的胸腺碎片中 当我试图显示这个片段时,我得到 org.attoparser。ParseException:异常评估SpringEL表达式:“cities.id”由:org.springframework.expression.spel引起。SpelEvaluationExceptio

  • 我使用spring boot和thymeleaf我试图保存一个对象列表。 我得到这个结果 ERREUR:{“时间戳”:“2018-06-29T15:36:58.427+0000”,“状态”:400,“错误”:“错误请求”,“消息”:“JSON解析错误:不能反序列化的START_OBJECT令牌外的实例;嵌套异常是com.fasterxml.jackson.databind.exc.mismatch

  • 我有一个sql select查询,它只从数据库中检索单个列(组)(即),我在对象数组列表中接收上面列表的结果 , 理想情况下,结果应该包含一个对象数组列表,但是当我检查时,结果的第0个索引包含String object而不是object数组。 但是,如果我使用多个列(假设在查询的select子句中有2个列),我可以看到结果的第0个索引作为对象数组,即 即使查询的select子句中只提到一列,如何获

  • 正如您在这里看到的,基本的程序流程是将一个param传递到这条路由,它用param设置的值创建一个新的用户对象(当前只有“role”,但我希望它会随着时间的推移而改变) 然后,findAll方法查找role=角色参数值的所有记录; 换句话说,我的SQL查询将如下所示: 在role=“admin”处运行此查询当前返回1条记录,这是预期的。 但是上面java代码中的findAll(示例)返回0条记录。

  • 问题内容: 我有这样的对象: 现在我只想获取主题和ID。有没有办法像这样获得它: 因为即使只使用此查询 我只能得到这样的记录: 我不希望获得具有属性ID和主题的对象数组。实现这一目标的最好方法是什么? 问题答案: 在Spring Data JPA中,您可以使用投影: 基于接口 : 基于类 (DTO): 然后在您的仓库中创建一个简单的查询方法: 您甚至可以创建动态查询方法: 然后像这样使用它: