I am running my first Spring based project where I was trying to execute this class but as I mentioned, it shows me some processing and nothing happens.
My App.java code (screenshot):
package in.gautamiShetty.test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class App {
public static void main(String[] args) {
ApplicationContext ctxt = new AnnotationConfigApplicationContext(AppConfig.class);
}
}
I tried searching for the solution, where I checked my main method, tried to rerun it as java application. I would really be thankful if someone finds the solution for this problem