Java

Spring Boot: Handling a REST Endpoint That Queries More Data Than Memory Available

If you are a developer and have not faced this issue yet, it is still worth reading, as at some point in your career, you will likely need to create a Spring Boot REST endpoint that performs a database query with results that do not fit into memory. In this article, let’s delve into an […]

Spring Boot: Handling a REST Endpoint That Queries More Data Than Memory Available Read More »

Spring doesn’t recommend @Autowired anymore???

There are 3 ways we can inject dependencies and Field Injection is not recommended anymore. In Spring, dependency injection is a fundamental concept used to manage the lifecycle and dependencies of beans. @Autowired is a common way to inject dependencies into Spring-managed components. When we run the code analysis tool in the IDE, it may issue the

Spring doesn’t recommend @Autowired anymore??? Read More »

Java: Probably the Most Understandable Explanation of Lambda Expression You’ll Ever See

My articles are open to everyone; non-member readers can read the full article by clicking this link. 1.What is Lambda? We know that for a Java variable, we can assign a “value” to it, and you can do something with it. Integer a = 1;String s = “Hello”;System.out.println(s + a); What should you do if you

Java: Probably the Most Understandable Explanation of Lambda Expression You’ll Ever See Read More »

Stop Doing Tutorials. Learn Programming Like This

If I had to start learning Python again, I would do it differently. Back when I was a Psychology undergraduate student, I started studying Python with Coursera’s courses. I watched and rewatched videos until I gained some familiarity, fluency, and understanding of the concepts. “I learned Python, yay!” I thought. Well, not really. When I

Stop Doing Tutorials. Learn Programming Like This Read More »

My interview experience for Software Architect — Java position.

Recently I gave interview for Software Architect — Java role in one of the leading service based companies. I am sharing here list of questions asked to me. ClassNotFoundException occurs when you try to load a class at runtime using Class.forName() or loadClass() methods and requested classes not found in classpath. This error occurs when

My interview experience for Software Architect — Java position. Read More »

Rolar para cima