Skip to content

Tag: spring-boot

Is there a better way to write my if statement?

I have a function that checks if multiple conditions are fulfilled before performing an operation. The code below shows all conditions that must be fulfilled. This code works perfectly as is. However, is there a better way of writing my if statements? Something about the look of it just feels wrong, feels ver…

Store bearerToken until expires

I have an application that consumes a REST service from another server, which has its own authentication method to be able to consume its services. Today, for each request we have, I am calling the authentication service then i receivethe bearerToken (which has a duration of 3 hours) and after that I call the…