元素"context:component-scan"的前缀"context"未绑定,解决方法
时间: 2023-07-19 12:07:59 浏览: 62
Spring 报错:元素 "context:component-scan" 的前缀 "context" 未绑定的问题解决
出这个问题是因为缺少命名空间的绑定,可以在XML文件的顶部添加以下命名空间绑定:
```
xmlns:context="http://www.springframework.org/schema/context"
```
然后在<context:component-scan>元素中使用context前缀即可,例如:
```
<context:component-scan base-package="com.example"/>
```
阅读全文