简体   繁体   中英

Spring Boot Lombok API not serializing

I have a simple Spring Boot controller with a simple Object, which is annotated with Lombok, when I tried to post data to the controller the object to not serializing.

@Entity
@Data
@AllArgsConstructor
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class Employee extends BaseDomain {

    private String firstName;
    private String middleName;
    private String lastName;
    private String email;
    private String mobileNo;

    @PostMapping
    public Employee saveEmployee(Employee employee) {
        log.debug("Employee save {}", employee);
        return employeeService.saveOrUpdateEmployee(employee);
    }
}
 @PostMapping
    public Employee saveEmployee(@Requestbody Employee employee) {
        log.debug("Employee save {}", employee);
        return employeeService.saveOrUpdateEmployee(employee);
    }

@Requestbody is missing

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM