Spring Security Basic Authentication With Database
Authenting users, securying APIs, implementing role access based are all difficult jobs but thankfully we can rely on Spring to solve these problems. In this […]
Authenting users, securying APIs, implementing role access based are all difficult jobs but thankfully we can rely on Spring to solve these problems. In this […]
Applying changes to databases is a tedious job. Having to syncronize systems and remember what changes have been applied is hard, and it’s likely to
Data encryption is an important feature to assure the safety of data transmitted. While there are many ways to do it, in this article we’ll see
Communicating to the client when something happen in the back-end is a great way to react to changes or simply to display the latest data.
Spring Boot and SQL Server are two great tools, but when used with Docker Compose they can make an outstanding app. In this article we’ll
In this articile I’ll show you how dockerizing a Java application can be straightforward and how Docker makes it much easier to develop and deploy
Documentation is one of the most important things when it comes to developing an application. There are so many APIs with poor or even no
Spring and Angular are two great frameworks that we all often use to build our applications since their features make our life easier. Sometimes we
All JPA implementations, including Hibernate, provide default mappings for a large set of standard Java classes. Through these mappings it is possible to model the
In this article, we will see how to map a composite key with JPA and Hibernate using the annotations that JPA makes available to us.