Passing headers with Spring Cloud Feign
Feign is a great way to communicate between services. Spring Cloud has it’s own way of defining Feign clients, it’s done with Spring MVC annotations. Usually it’s a common requirement Continue reading
Being a good software engineer is 3% talent, 97% not being distracted by the internet.
Feign is a great way to communicate between services. Spring Cloud has it’s own way of defining Feign clients, it’s done with Spring MVC annotations. Usually it’s a common requirement Continue reading
For one of my presentations, I wanted to have some numbers regarding the efficiency of projections. If you don’t know what projections are, read this previously written article. I basically Continue reading
Have you ever heard about datasource proxies? No worries, it’s not complicated at all. Let’s say you want to access the database from an application. First you have to configure Continue reading
Anyone who is familiar with Spring and JPA knows about the magical @Transactional annotation which helps us to focus on the business logic rather than programming transactions around. This approach is so Continue reading
If you care about your data-access layer to make it as fast as possible, you should consider using projections for reading data. Check a simple example together. We have cities Continue reading
There are a lot of great articles out there about OAuth 2.0, Spring Security, REST especially when you are about to have both the Resource and the Authorization server in Continue reading
Quite some time ago, I had a chance to try out one of the coolest features of Hibernate when I had to insert and update multiple entities. By multiple, I mean Continue reading
Follow me