Posts by Joaquim Oliveira • 218 points
6 posts
-
1
votes1
answer161
viewsA: https.request does not send body if it is the DELETE method
By specification, the requisition DELETEhas no defined semantics for the body. Probably why he’s being ignored.…
-
1
votes1
answer105
viewsA: How to configure the Demoiselle 2.4.2 Junit component to inject EJB dependencies
Alex, the CDI, who injects the department @Inject, including in the unit test, does not support specific EJB annotations. The suggestion is you create a Producer that gets its object from the EJB…
-
0
votes1
answer106
viewsA: Demoiselle update to JEE7
Demoiselle version 3.0, compatible with JEE 7, was made available on February 2017. More information on http://demoiselle.io/ Sample applications:…
-
1
votes1
answer174
viewsA: How to configure Jboss AS 7.1 with Demoiselle 2.4.1 to operate with distributed transactions?
According to the official documentation, configuration is done with the following steps: Add to file pom.xml dependence on extension demoiselle-jta : <dependency>…
-
2
votes1
answer2399
viewsQ: When to use ADD or COPY to copy files to a Dockerfile?
Dockerfile syntax has two instructions for copying files: ADDand COPY. Both copy files to the container. When to use each?
dockerasked Joaquim Oliveira 218 -
2
votes1
answer257
viewsA: How to support transactions with Junit and Demoiselle 2.4.2
Transaction annotations are processed by a Javaee Interceptor (br.gov.frameworkdemoiselle.transaction.TransactionalInterceptor). Make sure he: 1) It is stated correctly in…