最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

IDEA报错:Consider defining a bean of type ‘com.chimp.pojo.PageBean‘ in your configuration.【错误记录】

业界 admin 2浏览 0评论

报错如下:

 经过一番查询

声明Bean的注解有:
@Component 没有明确角色的组件
@Service 在业务逻辑层(Service层)使用 -----源码包含@Component
@Controller 用于标注控制层组件 -----源码包含@Component
@RestController -----源码包含@Controller -----源码包含@Component

发现是忘记给这个PageBean加注解让他进入容器

加上@Component后:

报错解决。 

报错如下:

 经过一番查询

声明Bean的注解有:
@Component 没有明确角色的组件
@Service 在业务逻辑层(Service层)使用 -----源码包含@Component
@Controller 用于标注控制层组件 -----源码包含@Component
@RestController -----源码包含@Controller -----源码包含@Component

发现是忘记给这个PageBean加注解让他进入容器

加上@Component后:

报错解决。 

与本文相关的文章

发布评论

评论列表 (0)

  1. 暂无评论