美文网首页
2021-03-16 @ServletComponentScan

2021-03-16 @ServletComponentScan

作者: 忆丶往 | 来源:发表于2021-03-16 17:21 被阅读0次

@ServletComponentScan

在SpringBoot的main方法上使用@ServletComponentScan注解后,Servlet、Filter、Listener可以直接通过@WebServlet、@WebFilter、@WebListener注解自动注册,无需其他代码。

@ComponentScan

包扫描会扫描只要标注了@Controller,@Service,@Repository,@Component这四个注解都会被扫描到容器中。

@Configuration
说明这是个配置文件,和原来xml配置是等效的,只不过现在用java代码进行配置了 加上一个@Configuration注解就行了

相关文章

网友评论

      本文标题:2021-03-16 @ServletComponentScan

      本文链接:https://www.haomeiwen.com/subject/ezbdcltx.html