I had this same issue when creating a Spring Boot application using their @SpringBootApplication annotation. This annotation represents @Configuration, @EnableAutoConfiguration and @ComponentScan according to the spring reference. As expected, the new annotation worked properly and my application ran smoothly...
  • April 5, 2022
  • 0 Comments
IT Nursery
Steps for adding external jars in IntelliJ IDEA: Click File from the toolbar Select Project Structure option (CTRL + SHIFT + ALT + S on Windows/Linux, ⌘ + ; on Mac OS X) Select Modules at the left panel Select Dependencies tab Select + icon Select 1 JARs or directories option
  • April 4, 2022
  • 0 Comments
IT Nursery
This is because the className value which you are passing as argument forforName(String className) method is not found or doesn’t exists, or you a re passing the wrong value...
  • April 3, 2022
  • 0 Comments