Sometimes the best way to find a solution to your bug is to take a break.
Your mind will be thinking about it in the background and you might just get a bit of a light bulb moment. This has happened a few times for me.
Have you ever experienced this?
Java Tip 💡
Do you know that since Java 11 there is a built-in HTTP client (`https://t.co/4pc9s5JbEj.http.HttpClient`)? You can use e.g. for calling your REST services 👇
🏷️ #java#httpclient#rest#json
💡☕️ A new Java web framework RIFE2 https://t.co/bk7ldn2bLA (built on the foundations of the original RIFE framework) by @gbevin.
"A full-stack framework to effortlessly
create web applications with modern Java".
Full description here 👉 https://t.co/n10UooBPYp
Java Tip 💡
How do you generate data in your unit tests? You can use Instancio (https://t.co/GxZVSwxQj3) for that. It is a library for instantiating and populating objects with random data and aims to reduce lines of code spent on manual data setup.
🏷️ #java#tests#junit