No qualifying bean of type 'com.msb.mapper.TUserMapper' available: expected at least 1 bean which qualifies as autowire candidate.
时间: 2023-11-22 11:49:37 浏览: 172
PD IEC TS 63126:2020 Guidelines for qualifying PV modules, components and materials for operation at high temperatures - 完整英文版(22页).pdf
这个错误提示是因为Spring容器中没有找到类型为com.msb.mapper.TUserMapper的bean,无法进行自动装配。可能的原因是没有在配置文件或代码中定义该bean,或者定义的bean名称与自动装配的名称不匹配。解决方法是在配置文件或代码中定义该bean,并确保bean名称与自动装配的名称匹配。
以下是两种可能的解决方法:
1.在配置文件中定义bean:
```xml
<bean id="tUserMapper" class="com.msb.mapper.TUserMapper"/>
```
2.在代码中使用注解定义bean:
```java
@Repository
public interface TUserMapper {
// ...
}
```
阅读全文