1,@ServletComponentScan
在SpringBoot的main方法上使用@ServletComponentScan注解后,Servlet、Filter、Listener可以直接通過@WebServlet、@WebFilter、@WebListener注解自動注冊,無需其他代碼。
2,@ComponentScan
包掃描會掃描只要標注了@Controller,@Service,@Repository,@Component這四個注解都會被掃描到容器中。
3,@Configurati
說明這是個配置文件,和原來xml配置是等效的,只不過現在用java代碼進行配置了 加上一個@Configuration注解就行了
on
