-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpring
96 lines (77 loc) · 4.19 KB
/
Spring
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/**
* projecciones de querys directamente a DTOs
* con el contructor se puede manejar el llenado de objetos internos particulares
* @Query anotacion de springboot
* @lombok puede quitar boilerplate de constructores pero si se usa un generador de codigo hace mas facil
*/
@Query("select new co.gov.fna.admincredito.DTO.ObligacionDTONOEntity(ob.idOblicacion,"
+ " solcap.idSolicitud,ts.idTipoSector,ob.paqueteInformacionI,ob.identificadorLineaI,"
+ "ob.tipoContratoI,ob.estadoContratoI,ob.numeroObligacionIo,"
+ "ob.fechaCorteI,ob.afectado) "
+ "from Obligacion ob "
+ "join ob.solicitudCapacidad solcap "
+ "join ob.tipoSector ts "
+ "where solcap.idSolicitud= :solicitudCapacidad")
List<ObligacionDTONOEntity> findBySolicitudCapacidad2(String solicitudCapacidad);
@GetMapping(value = "/descararPDF", produces = "application/pdf")
public ResponseEntity<InputStreamResource> getFilePDF(@Param("path") String path) throws IOException {
log.info("el path es: " + path);
File fichero = new File(path);
// Set the input stream
InputStream inputstream = new FileInputStream(fichero);
// asume that it was a PDF file
HttpHeaders responseHeaders = new HttpHeaders();
InputStreamResource inputStreamResource = new InputStreamResource(inputstream);
responseHeaders.setContentLength(fichero.length());
responseHeaders.setContentType(MediaType.valueOf("application/pdf"));
return new ResponseEntity<InputStreamResource>(inputStreamResource, responseHeaders, HttpStatus.OK);
}
// @Produces("application/vnd.ms-excel")
@GetMapping(value = "/descargarXLS", produces = "application/vnd.ms-excel")
// @RequestMapping(value="/login", method = RequestMethod.GET, produces =
// MediaType.IMAGE_JPEG_VALUE))
public ResponseEntity getFileXLS(@Param("path") String path) throws IOException {
if (path.equals(Constants.ULTIMO_REPORTE_TRAMITES_XLSX)
|| path.equals(Constants.ULTIMO_REPORTE_TRAMITES_XLSX_MASIVO)) {
path = reportePorTramiteServicio.getRutaReporteTramites() + path;
}
File file = new File(path);
InputStream inputstream = new FileInputStream(file);
HttpHeaders responseHeaders = new HttpHeaders();
InputStreamResource inputStreamResource = new InputStreamResource(inputstream);
responseHeaders.setContentLength(file.length());
responseHeaders.setContentType(MediaType.valueOf("application/vnd.ms-excel"));
log.info("Antes de retornar el ARCHIVO xlsx");
return new ResponseEntity<InputStreamResource>(inputStreamResource, responseHeaders, HttpStatus.OK);
}
@GetMapping(value = "/descargarXLSX", produces = "application/vnd.ms-excel")
public ResponseEntity<InputStreamResource> getFileXLSX(@Param("path") String path) throws IOException {
log.info("en getFileXLSX1");
File file = new File(path);
InputStream inputstream = new FileInputStream(file);
HttpHeaders responseHeaders = new HttpHeaders();
InputStreamResource inputStreamResource = new InputStreamResource(inputstream);
responseHeaders.setContentLength(file.length());
responseHeaders.setContentType(MediaType.valueOf("application/vnd.ms-excel"));
log.info("antes de retornar xlsx");
return new ResponseEntity<InputStreamResource>(inputStreamResource, responseHeaders, HttpStatus.OK);
// ResponseEntity response = ResponseEntity.ok((Object) file);
// response.getHeaders().add("Content-Disposition", "attachment;
// filename=\"reporteFisico2.xlsx\"");
/// new Thread(d).start();
/// response.header("Content-Disposition", "attachment;
/// filename=\"reporteFisico2.xlsx\"");
// return response;
}
@GetMapping(value = "/descargarTXT", produces = "text/plain")
public ResponseEntity<InputStreamResource> getFileTxt(@Param("path") String path) throws IOException {
log.info("en getFileTxt1");
File file = new File(path);
InputStream inputstream = new FileInputStream(file);
HttpHeaders responseHeaders = new HttpHeaders();
InputStreamResource inputStreamResource = new InputStreamResource(inputstream);
responseHeaders.setContentLength(file.length());
responseHeaders.setContentType(MediaType.valueOf("text/plain"));
log.info("antes de retornar txt");
return new ResponseEntity<InputStreamResource>(inputStreamResource, responseHeaders, HttpStatus.OK);
}