-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJAVAEE
118 lines (92 loc) · 4.09 KB
/
JAVAEE
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
java criteria builder in count
CriteriaQuery<Long> c = cb.createQuery(Long.class);
Root<MedioContacto> mc = c.from(MedioContacto.class);
c.select(cb.count(mc));
List<Predicate> predicates = new ArrayList<Predicate>();
predicates.add(cb.equal(mc.get("entidad"), idEntidad));
predicates.add(cb.equal(mc.get("tipo"), 55));
c.where(predicates.toArray(new Predicate[]{}));
Integer cantidadMediosContacto = this.entityManager.createQuery(c).getSingleResult().intValue();
RestClientConfiguration config = RestClientConfiguration.loadConfiguration("jasperserver.properties");;
JasperserverRestClient client = new JasperserverRestClient(config);
Session session = client.authenticate("jasperadmin", "jasperadmin");
ReportExecutionRequest reportExecRequest = new ReportExecutionRequest();
reportExecRequest.setReportUnitUri("/reports/historicoVentas");
reportExecRequest.setAsync(true);
reportExecRequest.setFreshData(false);
reportExecRequest.setSaveDataSnapshot(false);
reportExecRequest.setOutputFormat(ReportOutputFormat.XLSX);
reportExecRequest.setInteractive(true);
reportExecRequest.setIgnorePagination(false);
ReportExecutionDescriptor entity = session
.reportingService()
.newReportExecutionRequest(reportExecRequest)
.getEntity();
String expId = entity.getExports().get(0).getId();
String reqId = entity.getRequestId();
logger.info(session.getStorage().getSessionId());
String status=null;
times=0;
while(times<100 && !status.equalsIgnoreCase(ExecutionStatus.ready.toString()))
{
TimeUnit.SECONDS.sleep(5);
status = session.reportingService()
.reportExecutionRequest(reqId)
.export(expId)
.status()
.getEntity()
.getValue();
times++;
}
if(times>=10 && !status.equalsIgnoreCase(ExecutionStatus.ready.toString()))
{
this.jsfMessageSender.sendErrorMessage(BundleMessage.Error.UNDEFINED_ERROR);
}
OperationResult<InputStream> operationResult =
session
.reportingService()
.reportExecutionRequest(reqId)
.export(expId)
.outputResource();
InputStream file = operationResult.getEntity();
FacesContext facesContext = FacesContext.getCurrentInstance();
ExternalContext externalContext = facesContext.getExternalContext();
externalContext.responseReset();
externalContext.setResponseContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
externalContext.setResponseHeader("Content-Disposition",
"attachment; filename=" +"HistoricoVentas"+ "\\.xlsx");
OutputStream out = externalContext.getResponseOutputStream();
IOUtils.copy(file,out);
facesContext.responseComplete();
out.flush();
out.close();
//consulta de JPa agregando criterios al on de las relaciones JPA
select
new co.inv.commons.TurnoPersonaDTO(tp.idTurnoPersona,
t.idTurno,
t.turno,
tp.idEntidadLogueada,
tp.idPersona,
tp.idOpcion,
tp.created,
tp.createdBy,
tp.updated,
tp.updatedBy)
from TurnosPersona tp
inner join tp.turno t
join t.parqueaderosYZona pyz on (pyz.idParqueadero=:idParqueadero)
where
tp.idPersona= :entidadLogueada
and tp.idOpcion= :idOpcion
and t.idTurno not in (select tt.idTurno
from TurnosPersona tpp
inner join tpp.turno tt
where tpp.idPersona= :entidadSeleccionada)
----------------------------------------------------------------
---info of JAX-WS
Una implementación de un servicio Web JAX-WS reside en un contenedor Web, y por lo tanto puede desplegarse en un servidor Web
o un servidor de aplicaciones, una implementación EJB, en cambio, reside en un contenedor EJB y sólo podrá desplegarse en un
servidor de aplicaciones.
La plataforma Java EE 6, soporta las siguientes implementaciones de servicios Web: como un componente Web JAX-WS en un contenedor de
Servlets, y como un componente EJB de sesión stateless o singleton.
---continuar leyendo