14/01/2016, 22:00
|
| | Fecha de Ingreso: diciembre-2015
Mensajes: 22
Antigüedad: 9 años, 1 mes Puntos: 0 | |
Respuesta: Guardar imagen en base64 con restful
Código:
@POST
@Path("guardarImagenes")
@Consumes({"application/json"})
@Produces("text/plain")
public int guardarImagenes(Imagenes entity) {
if(entity.getIdActivo().getIdActivo()!=0){
em.persist(entity);
return 1;
} else {
return 0;
}
}
|