@RestController 注解网页返回 [] ,出现的bug

@RestController 注解网页返回 [] ,出现的bug

@RestController
@RequestMapping("emp")
public class EmployeeController {

    @Autowired
    private EmployeeService employeeService;

    @GetMapping("find")
    public List<Employee> find(){
        List<Employee> all = employeeService.findAll();
        return all;
    }
}

在all 这一步,都有数据但是在网页上显示 []

通过一步一步的查询是自己的lombok 包冲突了。
在父工程写了一个包,在子工程也写了一个包,所有没有正常显示,

所有请认真观察包的问题!!!

你可能感兴趣的:(spring,bug)