The purpose of the JVM is to load .class files and execute those .class files.
Lets say you have a A.java source file.
You can compile A.java with javac utility provided by JDK/JRE.
Now you get A.class (may be multiple .class files depending on your A.java inclusions). A.class is a bytecode...
Spring MVC - DispatcherServlet configuration needs to include a HandlerAdapter that supports this handler
This is full exception thrown from the server.
javax.servlet.ServletException: No adapter for handler [Class name]
The DispatcherServlet configuration needs to include a HandlerAdapter
that supports this handler
Problem Overview
This is took me a while to figure this out...