I'm trying to do a CRUD with spring using the h2 database and lombok, and it's giving me an error like this:
java.lang.IllegalArgumentException: The given id must not be null
My controller:
package br.edu.unicesumar.crud.controller;
import br.edu.unicesumar.crud.model.domain.Pessoa;
import br.edu.unicesumar.crud.model.repository.PessoaRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@RestController
@RequestMapping("/pessoa")
public class PessoaController {
@Autowired
private PessoaRepository pessoaRepository;
@GetMapping
public List<Pessoa> all() {
return pessoaRepository.findAll();
}
@GetMapping("/{id}")
public Pessoa getById(@PathVariable Long id) {
return pessoaRepository.findById(id).orElse(null);
}
@PostMapping
public Pessoa create(@RequestBody Pessoa nova) {
return pessoaRepository.save(nova);
}
@DeleteMapping("/{id}")
public void delete(@PathVariable Long id) {
pessoaRepository.deleteById(id);
}
}
My Entity service:
package br.edu.unicesumar.crud.model.domain;
import jakarta.persistence.*;
@Entity
@Table(name = "ES_PESSOA") // para tabelas com nome diferente da entidade
public class Pessoa {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String nome;
@Column(name = "doc", length = 14) // se necessário, informar atribuições para a coluna
private String documento;
public Pessoa(Long id, String nome, String documento) {
this.id = id;
this.nome = nome;
this.documento = documento;
}
public Pessoa() {
}
// getters e setters necessários para serializar e deserializar a classe para json
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getDocumento() {
return documento;
}
public void setDocumento(String documento) {
this.documento = documento;
}
}
My repository:
package br.edu.unicesumar.crud.model.repository;
import br.edu.unicesumar.crud.model.domain.Pessoa;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface PessoaRepository extends JpaRepository<Pessoa, Long> {
}
I would like to understand why @notnull validation is being required and applied even without it being included in the code.
I'm a beginner in Java, however, I believe it could be something related to pom.xml Follow my pom to stop giving this error: