spring - SpringBootApplication Mapping With Controllers -
i new spring boot understand how spring framework works. unable understand how springbootapplication class maps/call other controller.can explain how internal mapping works?
is there other guide available explanation other spring guide site?
i tried few examples , liked how easy want understand complete flow instead of annotating classes.
thanks in advance...
a class annotated @springbootapplication
isn't controller, it's configuration class kicks off component scanning in own package. controller mappings follow ordinary spring mvc rules.