得到空的答案Mongodb

时间:2018-12-09 02:31:26

标签: spring mongodb spring-mvc spring-boot emptydatatext

嗨,我在MongoDb上遇到了一些问题,我有一个CRUD,这是我在使用

的代码

首先是POJO:

@Data
@Document(collection = "Informacion")
public class Informacion {

//Declaration code

public Informacion(Pais pais, Date fechaCreacion, String nombre, Boolean sexo,
                   Date fechaNacimiento, List<Preferencias> preferencias, String numTelefono, String usuario,
                   List<RedesSociales> redes, String contraseniaTW, String contraseniaFB, String contraseniaIG,
                   Grupo grupo, String paqChip, String email, String contraseniaMail, String fuente,
                   Date fechaRecarga) {
    this.pais = pais;
    this.fechaCreacion = fechaCreacion;
    this.nombre = nombre;
    this.sexo = sexo;
    this.fechaNacimiento = fechaNacimiento;
    this.preferencias = preferencias;
    this.numTelefono = numTelefono;
    this.usuario = usuario;
    this.redes = redes;
    this.contraseniaTW = contraseniaTW;
    this.contraseniaFB = contraseniaFB;
    this.contraseniaIG = contraseniaIG;
    this.grupo = grupo;
    this.paqChip = paqChip;
    this.email = email;
    this.contraseniaMail = contraseniaMail;
    this.fuente = fuente;
    this.fechaRecarga = fechaRecarga;
}

}

现在DAO:

@Repository
public interface informacionRepo extends MongoRepository<Informacion,String> {
     Informacion findByIdInformacion(String id);
}

和控制器:

@RestController
@RequestMapping("/Informacion")
public class InformacionControlador {
@Autowired
private informacionRepo informacioRepo;

public InformacionControlador(informacionRepo informacioRepo) {
    this.informacioRepo = informacioRepo;
}


@GetMapping("/Listar")
public List<Informacion> getAll(){
    List<Informacion> info = this.informacioRepo.findAll();
    System.out.println(info.isEmpty());
    return info;
}


@PutMapping
public void insert(@RequestBody Informacion informacion){
    this.informacioRepo.insert(informacion);
}


public void update(@RequestBody Informacion informacion){
    this.informacioRepo.save(informacion);
}


@DeleteMapping("/Listar/{id}")
public void delete(@PathVariable("id") String id){
    this.informacioRepo.deleteById(id);
}

@GetMapping("/Listar/{id}")
public Informacion getById(@PathVariable("id") String id){
    Informacion info =  this.informacioRepo.findByIdInformacion(id);
    return info;
}
}

我正在使用POSTMAN测试上面的方法,但是我得到的答案是空的,数据已经在数据库中设置了,我正在使用方法调用种子填充数据,还用robo mongo检查了数据,但是数据仍然存在当我尝试插入方法时,也得到空答案,我得到403错误。 谢谢你的帮助 This is the answer seen from the web browser

1 个答案:

答案 0 :(得分:0)

问题是即时通讯使用了来自lombok的注解@Data,但是我没有在IDE中启用注解处理,只是启用了它并起作用:D