How to run an alternate Java Class in Spring Boot?
Suppose you want to run a Spring Boot application has some classes with main methods that are not annotated with…
What is the future scope for AEM Java developer and what is the difference between an AEM Java developer and a Java developer?
Pro’s:- It’s an add on skill. Can get you more salary. You’ll still be a Java developer and continue to…
Mac OS Big Sur IntelliJ indexing problem
In case your sources are not loading in IntelliJ with Mac OS Big Sur, try to Invalidate the IDE caches…
What is an advice in Spring Framework AOP in Java?
Advice is a piece of extremely high reusable code that you don’t want to write everywhere in your code. Advices…
Why does Java not support destructors?
Since Java has inbuilt garbage collector for memory cleanup. Java has finalize method which gets called before an object is…
What all concepts are required to become a good Java developer?
Concepts:- Opps concept Multithreading Design patterns J2EE principles eg Servlets and JSP’s Design Patterns I can suggest some books for…
Which are some good books for programmers to read?
The Pragmatic Programmer Concurrency in Practice Head First Design Patterns Data Structures and Algorithms Made Easy by Nasrimha…. Effective Java
In Java, memory is divided into which two types of memory?
Memory is divided into stack and heap. Stack is further subdivided into per-thread stack. Variables local to the thread live…