找不到类的主构造函数或单个唯一构造函数- spring Boot

xam8gpfp  于 2023-04-10  发布在  Spring
关注(0)|答案(2)|浏览(321)

我在使用Spring 2.7.4 时遇到了这个错误:未找到类com.library.project.library_el_aleph.model.Client的主构造函数或唯一构造函数我在POJO实体类中有两个构造函数用于两个可能的插入

  1. @Repository
  2. public interface RoleRespository extends CrudRepository<Role, Integer>{
  3. Role findByUserName(RoleList roleName);
  4. public Cliente(@NotEmpty @Pattern(regexp = "^[A-Z][a-zA-Z]+") String userName,
  5. @NotEmpty String email,
  6. @NotEmpty String contraseña) {
  7. this.userName = userName;
  8. this.email = email;
  9. this.contraseña = contraseña;
  10. }
  11. public Cliente(String productosCliente,
  12. @NotEmpty @Pattern(regexp = "^[A-Z][a-zA-Z]+") String userName, @NotEmpty String segundoNombre,
  13. @NotEmpty String primerApellido, @NotEmpty String segundoApellido, @NotEmpty String ciudadCliente,
  14. @NotEmpty String direccionCliente, @NotEmpty String email, @NotEmpty String contraseña,
  15. @NotNull @Past Date fechaNacimiento, @NotNull Set<Role> roles) {
  16. this.productosCliente = productosCliente;
  17. this.userName = userName;
  18. this.segundoNombre = segundoNombre;
  19. this.primerApellido = primerApellido;
  20. this.segundoApellido = segundoApellido;
  21. this.ciudadCliente = ciudadCliente;
  22. this.direccionCliente = direccionCliente;
  23. this.email = email;
  24. this.contraseña = contraseña;
  25. this.fechaNacimiento = fechaNacimiento;
  26. this.roles = roles;
  27. }
  28. }

这是我的RESTController的代码的一部分,其中包含设置@ RequestBody输入的方法:

  1. @RequestMapping(value= "/register", method = RequestMethod.POST)
  2. public ResponseEntity<Object> register(@Valid @RequestBody NewUser newUser,
  3. BindingResult send){
  4. if(send.hasErrors())
  5. return new ResponseEntity<>(new Message("Error en el registro, por favor
  6. valide nuevamente"), HttpStatus.BAD_REQUEST);
  7. try {
  8. Cliente creatingUser = new Cliente(newUser.getPrimerNombre(),
  9. newUser.getEmail(), passwordEncoder.encode(newUser.getPassword()));
  10. Set<Role> roles = new HashSet<>();
  11. roles.add(roleServices.getRoleByName(RoleList.ROLE_USER).get());
  12. if(newUser.getRoles().contains("Admin"))
  13. roles.add(roleServices.getRoleByName(RoleList.ROLE_ADMIN).get());
  14. creatingUser.setRoles(roles);
  15. clienteServices.saveNewUser(creatingUser);
  16. return new ResponseEntity<>(new Message("El usuario ha sido creado correctamente"), HttpStatus.OK);
  17. } catch (Exception e) {
  18. return new ResponseEntity<Object>(new Message("Ha ocurrido un error inesperado con el servidor, por favor intente nuevamente más tarde"), HttpStatus.BAD_REQUEST);
  19. }
  20. }

这是我第一次为同一个类使用多个构造函数,我想这就是为什么这个错误是由于...有人能帮助我吗?

wswtfjt7

wswtfjt71#

重写构造函数时,必须包含默认构造函数.
“我们还必须注意到,当我们在类中没有使用任何构造函数时,java编译器会调用默认构造函数。但是,如果我们在类中使用了任何构造函数,无论是默认构造函数还是参数化构造函数,则不会调用默认构造函数。在这种情况下,java编译器会抛出一个异常,说明该构造函数未定义。”
解决方案:使用Lombok @NoArgsConstructor或
public void run(){
}
https://www.javatpoint.com/constructor-overloading-in-java

xv8emn3q

xv8emn3q2#

我也遇到过类似的问题,但还没能找到解决办法

相关问题