【发布时间】:2021-10-04 19:57:31
【问题描述】:
我正在使用@Valid 注释来验证我的一些模型属性。它按预期工作,如果未按预期提供任何数据,则会返回 400 Bad Request 错误。但是响应正文总是空的。
我的控制器类
import java.util.ArrayList;
import java.util.List;
import javax.validation.Valid;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import com.bnpp.leavemanagement.exception.DepartmentNotFoundException;
import com.bnpp.leavemanagement.exception.EmployeeAlreadyExistsException;
import com.bnpp.leavemanagement.exception.EmployeeNotFoundException;
import com.bnpp.leavemanagement.model.EmployeeModel;
import com.bnpp.leavemanagement.service.EmployeeService;
@RestController
@Validated
@RequestMapping("/employee")
public class EmployeeController
{
@Autowired
EmployeeService empService;
@PostMapping("/create")
public ResponseEntity<EmployeeModel> createEmployee(@RequestBody @Valid EmployeeModel empNew) throws EmployeeAlreadyExistsException, DepartmentNotFoundException, EmployeeNotFoundException
{
EmployeeModel resEmp = empService.addEmployee(empNew);
return new ResponseEntity( resEmp, HttpStatus.CREATED);
}
模型类属性
@JsonProperty("firstName")
@NotEmpty(message = "FirstName cannot be empty")
private String firstName = null;
application.properties
spring.datasource.url=jdbc:h2:mem:leavemgmt
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.h2.console.enabled=true
server.port=8443
server.ssl.key-alias=leavemanagement
server.ssl.key-store=classpath:leavemanagement.jks
server.ssl.key-store-type=JKS
server.ssl.key-store-password=password
server.error.include-message=always
server.error.include-binding-errors=always
server.error.include-exception=true
server.error.include-stacktrace=always
请帮助我了解如何在任何验证失败时在 Postman 中获取响应正文。
【问题讨论】:
-
也分享你的服务层,
-
也共享服务和存储库类
-
对于初学者,请从不需要的控制器中删除
@Validated。方法参数上的@Valid就足够了。 -
我已按照指示从控制器中删除了@Validated,但场景仍然保持不变
标签: java spring spring-boot exception