Bug de guardado de fecha fix

parent 92f8f929
...@@ -78,7 +78,7 @@ public class Experiencia { ...@@ -78,7 +78,7 @@ public class Experiencia {
if(fechaDesde==null || fechaDesde.isEmpty()) return; if(fechaDesde==null || fechaDesde.isEmpty()) return;
try { try {
this.fechaDesde = new SimpleDateFormat("yyyy-mm-dd").parse(fechaDesde); this.fechaDesde = new SimpleDateFormat("yyyy-MM-dd").parse(fechaDesde);
} catch (ParseException e) { } catch (ParseException e) {
// TODO Auto-generated catch block // TODO Auto-generated catch block
e.printStackTrace(); e.printStackTrace();
...@@ -94,7 +94,7 @@ public class Experiencia { ...@@ -94,7 +94,7 @@ public class Experiencia {
if(fechaHasta==null || fechaHasta.isEmpty()) return; if(fechaHasta==null || fechaHasta.isEmpty()) return;
try { try {
this.fechaHasta = new SimpleDateFormat("yyyy-mm-dd").parse(fechaHasta); this.fechaHasta = new SimpleDateFormat("yyyy-MM-dd").parse(fechaHasta);
} catch (ParseException e) { } catch (ParseException e) {
// TODO Auto-generated catch block // TODO Auto-generated catch block
e.printStackTrace(); e.printStackTrace();
......
...@@ -153,7 +153,7 @@ public class Postulante { ...@@ -153,7 +153,7 @@ public class Postulante {
if(fechaNacimiento==null || fechaNacimiento.isEmpty()) return; if(fechaNacimiento==null || fechaNacimiento.isEmpty()) return;
try { try {
this.fechaNacimiento = new SimpleDateFormat("yyyy-mm-dd").parse(fechaNacimiento); this.fechaNacimiento = new SimpleDateFormat("yyyy-MM-dd").parse(fechaNacimiento);
} catch (ParseException e) { } catch (ParseException e) {
// TODO Auto-generated catch block // TODO Auto-generated catch block
System.err.println("Error al parsear"); System.err.println("Error al parsear");
......
...@@ -35,30 +35,30 @@ public class PostulanteTecnologia { ...@@ -35,30 +35,30 @@ public class PostulanteTecnologia {
@JoinColumn @JoinColumn
@JsonBackReference @JsonBackReference
private Postulante postulante; private Postulante postulante;
public long getId() { public long getId() {
return id; return id;
} }
public void setId(long id) { public void setId(long id) {
this.id = id; this.id = id;
} }
public Long getNivel() { public Long getNivel() {
return nivel; return nivel;
} }
public void setNivel(Long nivel) { public void setNivel(Long nivel) {
this.nivel = nivel; this.nivel = nivel;
} }
public Tecnologia getTecnologia() { public Tecnologia getTecnologia() {
return tecnologia; return tecnologia;
} }
public void setTecnologia(Tecnologia tecnologia) { public void setTecnologia(Tecnologia tecnologia) {
this.tecnologia = tecnologia; this.tecnologia = tecnologia;
} }
public Postulante getPostulante() { public Postulante getPostulante() {
return postulante; return postulante;
} }
public void setPostulante(Postulante postulante) { public void setPostulante(Postulante postulante) {
this.postulante = postulante; this.postulante = postulante;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment