映射大量文件的正解,Description:Field commentMapper in zero.file.videoProject.controller.CommentController r

简介: 映射大量文件的正解,Description:Field commentMapper in zero.file.videoProject.controller.CommentController r

今天碰到了映射的问题:

Description:
 
Field commentMapper in zero.file.videoProject.controller.CommentController required a bean of type 'zero.file.videoProject.mappers.CommentMapper' that could not be found.
 
The injection point has the following annotations:
  - @org.springframework.beans.factory.annotation.Autowired(required=true)
 
 
Action:
 
Consider defining a bean of type 'zero.file.videoProject.mappers.CommentMapper' in your configuration.

英文翻译:

描述:
 
zero . file . video project . controller . comment controller中的字段commentMapper需要一个类型为“zero . file . video project . mappers . comment mapper”的bean,但找不到该bean。
 
注入点有以下注释:
-@ org . spring framework . beans . factory . annotation . auto wired(required = true)
 
 
行动:
 
请考虑在您的配置中定义一个“zero . file . video project . mappers . comment mapper”类型的bean。

解决问题方法,在springBoot的初始化页面中,就是Application这个文件,添加一个注解:

找到你的mappers映射文件路径,点击CopyPath

在springBoot添加一句这个,这个包的位置是你自己mappers映射的路

@MapperScan("zero.file.videoProject.mappers")

重新启动就好了


相关文章
|
存储
File操作 - list()/listFiles()与目录过滤器
File操作 - list()/listFiles()与目录过滤器
134 0
|
4月前
|
存储 传感器 SQL
influxdb 中得 fields 与 tag 区别总结
influxdb 中得 fields 与 tag 区别总结
381 1
|
3月前
|
XML 缓存 API
【Azure API 管理】使用APIM进行XML内容读取时遇见的诡异错误 Expression evaluation failed. Object reference not set to an instance of an object.
【Azure API 管理】使用APIM进行XML内容读取时遇见的诡异错误 Expression evaluation failed. Object reference not set to an instance of an object.
|
6月前
|
SQL JSON Java
【bug日记】已解决:Invalid bound statement (not found): 找不到对应的Mapper映射类
【bug日记】已解决:Invalid bound statement (not found): 找不到对应的Mapper映射类
|
存储 关系型数据库 数据库
Data dictionary header(2) --系统表空间结构(三十四)
Data dictionary header(2) --系统表空间结构(三十四)
|
XML Android开发 数据格式
Android逆向:二进制xml文件解析(Start Tag Chunk)
在Android中,xml文件经过编译后都是不可读的二进制文件。今天我们来解析一下这个二进制文件的内容,看看如何与我们的源码进行对应。
515 0
|
Python
如何读取保存一些list信息的txt,生成有一组名字有规律的list
如何读取保存一些list信息的txt,生成有一组名字有规律的list
180 0
如何读取保存一些list信息的txt,生成有一组名字有规律的list