SpringBoot返回Json對象報錯(返回對象為空{})

1 需求描述

我們現在要幹一個什麼事情呢,我們要在瀏覽器輸入一個請求地址,然後我們的後端就給我返回一個User對象即可,並且我希望以Json的格式返回。這個需求很明確,我們先直觀的展示一下效果。
發送請求:

在這裡插入圖片描述

接受結果:

在這裡插入圖片描述

2 代碼展示

行瞭,明確瞭需求我們開始整活兒。首先我們老規矩還是先展示一下目錄結構(其中標紅的文件使我們今天要用到的):

在這裡插入圖片描述

接下來是具體的文件內容首先呢我們展示一下User.java文件

package com.example.springboot02.entity;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import java.io.Serializable;

@Entity //表示為實體類
public class User implements Serializable {

    @Id //Jpa 註解可以不寫
    private Long id;
    //Jpa 註解可以不寫,下邊一樣
    @Column(nullable = false, unique = true)
    private String userName;
    @Column(nullable = false)
    private String passWord;
    @Column(nullable = false, unique = true)
    private String email;
    @Column(nullable = true, unique = true)
    private String nickName;
    @Column(nullable = false)
    private String regTime;

	// 有參構造函數
    public User(Long id, String userName, String passWord, String email, String nickName, String regTime) {
        this.id = id;
        this.userName = userName;
        this.passWord = passWord;
        this.email = email;
        this.nickName = nickName;
        this.regTime = regTime;
    }
	// 無參構造函數
    public User() {

    }

}

接下來Usercontroller.java文件的內容:

package com.example.springboot02.controller;

import com.example.springboot02.entity.User;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;



@RestController
public class UserController {

    @RequestMapping(value = "/getUser")
    public User getUser() {
        return new User(0L,"zxd", "12345", "[email protected]", "zxd","123");
    }
}

好瞭齊活瞭,我們來測試一下:

在這裡插入圖片描述

在這裡插入圖片描述

沒想到吧結果卻是這個鬼樣子!沒返回!!!為啥呢?

3 原因分析

其實在Springboot中,我們使用 @RestController 註解可以讓我們直接返回Json對象,可以將對象轉換成Json格式,然而這一切都依賴於User類的Getter/Setter函數而我們的代碼中卻沒有寫,最終導致瞭我麼得到瞭空的對象。

4 解決方案

那就加Getter/Setter函數就好嘍~
我們更新一下User.java文件:

package com.example.springboot02.entity;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import java.io.Serializable;

@Entity
public class User implements Serializable {

    @Id
    private Long id;
    @Column(nullable = false, unique = true)
    private String userName;
    @Column(nullable = false)
    private String passWord;
    @Column(nullable = false, unique = true)
    private String email;
    @Column(nullable = true, unique = true)
    private String nickName;
    @Column(nullable = false)
    private String regTime;


    public User(Long id, String userName, String passWord, String email, String nickName, String regTime) {
        this.id = id;
        this.userName = userName;
        this.passWord = passWord;
        this.email = email;
        this.nickName = nickName;
        this.regTime = regTime;
    }

    public User() {

    }

    public void setId(Long id) {
        this.id = id;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public void setPassWord(String passWord) {
        this.passWord = passWord;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public void setNickName(String nickName) {
        this.nickName = nickName;
    }

    public void setRegTime(String regTime) {
        this.regTime = regTime;
    }

    public Long getId() {
        return id;
    }

    public String getUserName() {
        return userName;
    }

    public String getPassWord() {
        return passWord;
    }

    public String getEmail() {
        return email;
    }

    public String getNickName() {
        return nickName;
    }

    public String getRegTime() {
        return regTime;
    }
}

//

5 效果展示

這次就行瞭哦

在這裡插入圖片描述

6 結束語

本來今天想講一下springboot 整合Redis的,無意中觸發瞭這個bug,就來記錄瞭一下希望大傢引以為戒,明天繼續sprinboot實戰整合redis,沖沖沖!

到此這篇關於SpringBoot返回Json對象報錯(返回對象為空{})的文章就介紹到這瞭,更多相關SpringBoot返回Json報錯內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: