javascriptjavajsonspring-bootpostman

Why does Postman throw a 400 status for this POST request with a pre-request script?


I'm working on an API REST with SpringBoot and I'm trying to create multiples users from Postman with a Pre-request script, but I get a 400 status code even when the users are save in the DataBase

"trace": "org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing: public org.springframework.http.ResponseEntity<library_management_system.entities.User>

This is the script:

let data = [{
    "name": "Alex M",
    "email": "alexis23@hotmail.com",
    "password": "ASF2354SDF"
},
{
    "name": "Lucas M",
    "email": "luke23@gmail.com",
    "password": "FGSASD123"
},
{
    "name": "Jenifer L",
    "email": "jeniferLop@gmail.com",
    "password": "531234asd"
}
];

data.forEach(item => {
    pm.sendRequest({
        url: "http://localhost:8080/library/users",
        method: "POST",
        header: { "Content-Type": "application/json" },
        body: {
            mode: "raw",
            raw: JSON.stringify(item)
        }
    }, (err, res) => {
        if (err) {
            console.error("Error:", err);
        } else {
            console.log("Response:", res.json());
        }
    });
});

This is the POST method:

@PostMapping
    public ResponseEntity<User> create(@RequestBody User user) {
        return   ResponseEntity.status(HttpStatus.CREATED).body(userService.saveUser(user));
    }

User Class:

@Data
@Entity
@AllArgsConstructor
@NoArgsConstructor
public class User {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;

    private String name;

    @Column(nullable = false, unique = true)
    private String email;

    private String password;
}

What I have tried:


Solution

  • Pre-request Script: You can use pre-request scripts in Postman to run JavaScript before a request runs.

    If you provide the pre request script, every request you make runs automatically after executing the pre-request script. In your case, you have provided a pre-request script; however, your POST request body is empty. This is the reason for the error.

    org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing
    

    For every POST request, you must provide a request body in addition to the pre-request script (pre-request script is optional)

    body of POST request