Skip to content

Commit 0177343

Browse files
committed
finish new blog post
1 parent 90976a2 commit 0177343

20 files changed

+207
-82
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
* Deploy Java EE applications to Kubernetes ([Blog](https://rieckpil.de/howto-deploy-java-ee-applications-to-kubernetes), [Sources](https://github.com/rieckpil/blog-tutorials/tree/master/java-ee-kubernetes-deployment))
4444
* MicroProfile Rest Client for RESTful communication ([Blog](https://rieckpil.de/howto-microprofile-rest-client-for-restful-communication/), [Sources](https://github.com/rieckpil/blog-tutorials/tree/master/microprofile-rest-client-for-restful-communication))
4545
* Deploy a React application to Kuberntes ([Blog](https://dev.to/rieckpil/deploy-a-react-application-to-kubernetes-in-5-easy-steps-516j), [Sources](https://github.com/rieckpil/blog-tutorials/tree/master/react-app-kubernetes))
46+
* Intercept method calls using CDI interceptors ([Blog](https://rieckpil.de/howto-intercept-method-calls-using-cdi-interceptors/), [Sources](https://github.com/rieckpil/blog-tutorials/tree/master/intercept-methods-with-cdi-interceptors))
4647

4748
## WHATIS?:
4849

Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
FROM payara/server-full:latest
1+
FROM payara/server-full:5.192
22
COPY target/intercept-methods-with-cdi-interceptors.war $DEPLOY_DIR
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Codebase for the blog post [#HOWTO: Intercept method calls using CDI interceptors](https://rieckpil.de/howto-intercept-method-calls-using-cdi-interceptors/)
2+
3+
Steps to run this project:
4+
5+
1. Clone this Git repository
6+
2. Navigate to the folder `intercept-methods-with-cdi-interceptors`
7+
3. Start your Docker daemon
8+
4. Execute `buildAndRun.bat` (Windows) or `buildAndRun.sh` (`chmod +X ./buildAndRun.sh` required, Linux & Mac)
9+
5. Wait until the container is up and running
10+
6. Access http://localhost:8080/resources/payments/mike in your browser and you should get HTTP 400
11+
7. Access http://localhost:8080/resources/payments/mike with HTTP header `X-Secure-Payment` (either use Postman or curl) and you should get HTTP 200
12+
8. Access http://localhost:8080/resources/payments/duke with HTTP header `X-Secure-Payment` (either use Postman or cURL) and you should get HTTP 200 and you should see the manipulated amount in the logs
13+
14+
```shell
15+
curl -XGET http://localhost:8080/resources/payments/mike
16+
curl -XGET --header "X-Secure-Payment: true" http://localhost:8080/resources/payments/mike
17+
curl -XGET --header "X-Secure-Payment: true" http://localhost:8080/resources/payments/duke
18+
```

intercept-methods-with-cdi-interceptors/buildAndRun.sh

100644100755
File mode changed.

intercept-methods-with-cdi-interceptors/pom.xml

-19
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,6 @@
1313
<version>8.0</version>
1414
<scope>provided</scope>
1515
</dependency>
16-
<dependency>
17-
<groupId>org.eclipse.microprofile</groupId>
18-
<artifactId>microprofile</artifactId>
19-
<version>2.0.1</version>
20-
<type>pom</type>
21-
<scope>provided</scope>
22-
</dependency>
23-
<dependency>
24-
<groupId>junit</groupId>
25-
<artifactId>junit</artifactId>
26-
<version>4.12</version>
27-
<scope>test</scope>
28-
</dependency>
29-
<dependency>
30-
<groupId>org.mockito</groupId>
31-
<artifactId>mockito-core</artifactId>
32-
<version>2.23.0</version>
33-
<scope>test</scope>
34-
</dependency>
3516
</dependencies>
3617
<build>
3718
<finalName>intercept-methods-with-cdi-interceptors</finalName>

intercept-methods-with-cdi-interceptors/src/main/java/sample/JAXRSConfiguration.java intercept-methods-with-cdi-interceptors/src/main/java/de/rieckpil/blog/JAXRSConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package sample;
1+
package de.rieckpil.blog;
22

33
import javax.ws.rs.ApplicationPath;
44
import javax.ws.rs.core.Application;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package de.rieckpil.blog;
2+
3+
import javax.interceptor.InterceptorBinding;
4+
import java.lang.annotation.Retention;
5+
import java.lang.annotation.Target;
6+
7+
import static java.lang.annotation.ElementType.*;
8+
import static java.lang.annotation.RetentionPolicy.RUNTIME;
9+
10+
@InterceptorBinding
11+
@Target({TYPE, METHOD})
12+
@Retention(RUNTIME)
13+
public @interface ManipulatedPayment {
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
package de.rieckpil.blog;
2+
3+
import javax.annotation.PostConstruct;
4+
import javax.annotation.PreDestroy;
5+
import javax.inject.Inject;
6+
import javax.interceptor.AroundConstruct;
7+
import javax.interceptor.AroundInvoke;
8+
import javax.interceptor.Interceptor;
9+
import javax.interceptor.InvocationContext;
10+
import java.math.BigDecimal;
11+
import java.math.RoundingMode;
12+
13+
@Interceptor
14+
@ManipulatedPayment
15+
public class PaymentManipulationInterceptor {
16+
17+
@Inject
18+
private PaymentManipulator paymentManipulator;
19+
20+
@AroundInvoke
21+
public Object manipulatePayment(InvocationContext invocationContext) throws Exception {
22+
23+
if (invocationContext.getParameters()[0] instanceof String) {
24+
if (((String) invocationContext.getParameters()[0]).equalsIgnoreCase("duke")) {
25+
paymentManipulator.manipulatePayment();
26+
invocationContext.setParameters(new Object[]{
27+
"Duke", new BigDecimal(999.99).setScale(2, RoundingMode.HALF_UP)
28+
});
29+
}
30+
}
31+
32+
return invocationContext.proceed();
33+
}
34+
35+
@AroundConstruct
36+
public void aroundConstructInterception(InvocationContext invocationContext) throws Exception {
37+
System.out.println(invocationContext.getConstructor().getDeclaringClass() + " will be manipulated");
38+
invocationContext.proceed();
39+
}
40+
41+
@PostConstruct
42+
public void postConstructInterception(InvocationContext invocationContext) throws Exception {
43+
System.out.println(invocationContext.getMethod().getDeclaringClass() + " is ready for manipulation");
44+
invocationContext.proceed();
45+
}
46+
47+
@PreDestroy
48+
public void preDestroyInterception(InvocationContext invocationContext) throws Exception {
49+
System.out.println("Stopped manipulating of class " + invocationContext.getMethod().getDeclaringClass());
50+
invocationContext.proceed();
51+
}
52+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package de.rieckpil.blog;
2+
3+
import javax.enterprise.context.RequestScoped;
4+
5+
@RequestScoped
6+
public class PaymentManipulator {
7+
8+
public void manipulatePayment() {
9+
System.out.println("Manipulating payment...");
10+
}
11+
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package de.rieckpil.blog;
2+
3+
import javax.annotation.PostConstruct;
4+
import javax.ejb.Singleton;
5+
import javax.ejb.Startup;
6+
import java.math.BigDecimal;
7+
8+
@Startup
9+
@Singleton
10+
@ManipulatedPayment
11+
public class PaymentProvider {
12+
13+
@PostConstruct
14+
public void setUpPaymentProvider() {
15+
System.out.println("Setting up payment provider ...");
16+
}
17+
18+
public void withdrawMoneyFromCustomer(String customer, BigDecimal amount) {
19+
System.out.println("Withdrawing money from " + customer + " - amount: " + amount);
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
package de.rieckpil.blog;
2+
3+
import javax.inject.Inject;
4+
import javax.ws.rs.GET;
5+
import javax.ws.rs.Path;
6+
import javax.ws.rs.PathParam;
7+
import javax.ws.rs.core.Response;
8+
import java.math.BigDecimal;
9+
import java.math.RoundingMode;
10+
11+
@Path("payments")
12+
public class PaymentResource {
13+
14+
@Inject
15+
private PaymentProvider paymentProvider;
16+
17+
@GET
18+
@Path("/{customerName}")
19+
@SecurePayment(requiredHttpHeader = "X-Secure-Payment")
20+
public Response getPaymentForCustomer(@PathParam("customerName") String customerName) {
21+
22+
paymentProvider
23+
.withdrawMoneyFromCustomer(customerName,
24+
new BigDecimal(42.00).setScale(2, RoundingMode.HALF_UP));
25+
26+
return Response.ok("Payment was withdrawn from customer " + customerName).build();
27+
}
28+
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package de.rieckpil.blog;
2+
3+
import javax.enterprise.util.Nonbinding;
4+
import javax.interceptor.InterceptorBinding;
5+
import java.lang.annotation.Retention;
6+
import java.lang.annotation.Target;
7+
8+
import static java.lang.annotation.ElementType.METHOD;
9+
import static java.lang.annotation.ElementType.TYPE;
10+
import static java.lang.annotation.RetentionPolicy.RUNTIME;
11+
12+
@InterceptorBinding
13+
@Target({METHOD, TYPE})
14+
@Retention(RUNTIME)
15+
public @interface SecurePayment {
16+
17+
@Nonbinding String requiredHttpHeader() default "X-Duke";
18+
19+
}
20+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
package de.rieckpil.blog;
2+
3+
import javax.annotation.Priority;
4+
import javax.interceptor.AroundInvoke;
5+
import javax.interceptor.Interceptor;
6+
import javax.interceptor.InvocationContext;
7+
import javax.ws.rs.WebApplicationException;
8+
import javax.ws.rs.core.Context;
9+
import javax.ws.rs.core.HttpHeaders;
10+
import javax.ws.rs.core.Response;
11+
12+
@Priority(42)
13+
@Interceptor
14+
@SecurePayment
15+
public class SecurePaymentInterceptor {
16+
17+
@Context
18+
private HttpHeaders headers;
19+
20+
@AroundInvoke
21+
public Object securePayment(InvocationContext invocationContext) throws Exception {
22+
23+
String requiredHttpHeader = invocationContext
24+
.getMethod()
25+
.getAnnotation(SecurePayment.class)
26+
.requiredHttpHeader();
27+
28+
if (headers.getRequestHeaders().containsKey(requiredHttpHeader)) {
29+
return invocationContext.proceed();
30+
} else {
31+
throw new WebApplicationException("Missing HTTP header: " + requiredHttpHeader, Response.Status.BAD_REQUEST);
32+
}
33+
34+
}
35+
}

intercept-methods-with-cdi-interceptors/src/main/java/sample/SampleResource.java

-22
This file was deleted.

intercept-methods-with-cdi-interceptors/src/main/resources/META-INF/microprofile-config.properties

-1
This file was deleted.

intercept-methods-with-cdi-interceptors/src/main/resources/META-INF/persistence.xml

-7
This file was deleted.

intercept-methods-with-cdi-interceptors/src/main/webapp/WEB-INF/beans.xml

+3
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd"
55
bean-discovery-mode="all">
6+
<interceptors>
7+
<class>de.rieckpil.blog.PaymentManipulationInterceptor</class>
8+
</interceptors>
69
</beans>

intercept-methods-with-cdi-interceptors/src/test/java/sample/SampleTest.java

-31
This file was deleted.
Binary file not shown.

wad.jar

416 KB
Binary file not shown.

0 commit comments

Comments
 (0)