Implementing The OAuth 2.0 Authorization Framework Using Java EE 1. Overview In this tutorial, we’re going to provide an implementation for the OAuth 2.0 Authorization Framework using Java EE And MicroProfile. Most importantly, we’re going to implement the interaction of the OAuth 2.0 roles through the Authorization Code grant type.… Continue Reading java-ee-oauth2-implementation

Hibernate Interceptors 1. Overview In this discussion, we’ll look at various ways of intercepting operations within Hibernate’s abstracted relational mapping implementation. 2. Defining Hibernate Interceptors The Hibernate Interceptor is an interface that allows us to react to certain events within Hibernate. These interceptors are registered as callbacks and provide communication… Continue Reading hibernate-interceptor