curl发送数据不为null,但是后端接收到为null
curl -X POST http://localhost:8080/xiaozhi/test --header "Content-Type: application/json" -d "{\"age\":123}"
经过检查发现注解导入错误
正确的应该是
import org.springframework.web.bind.annotation.RequestBody;
curl -X POST http://localhost:8080/xiaozhi/test --header "Content-Type: application/json" -d "{\"age\":123}"
经过检查发现注解导入错误
正确的应该是
import org.springframework.web.bind.annotation.RequestBody;