我想开始学习大数据技术.我希望将来在这个领域工作.有没有人知道好书开始学习它?Hadoop,HBase.
初学者 - 中级 - 高级 -
提前致谢
I need to pass an object to a spring boot endpoint (in the @RequestBody) and use that object to query the database using spring data jpa.
My Class
@Entity(name = "PESSOA")
public class Pessoa {
private Long codigo;
private String nome;
private String cpf;
private String estadoCivil;
private LocalDate dataNascimento;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
public Long getCodigo() {
return codigo;
}
@Column
public String getNome() {
return nome;
}
@Column
public String getCpf() {
return cpf;
}
@Column
public String …Run Code Online (Sandbox Code Playgroud)