报错如下:
经过一番查询
声明Bean的注解有:
@Component 没有明确角色的组件
@Service 在业务逻辑层(Service层)使用 -----源码包含@Component
@Controller 用于标注控制层组件 -----源码包含@Component
@RestController -----源码包含@Controller -----源码包含@Component
发现是忘记给这个PageBean加注解让他进入容器
加上@Component后:
报错解决。
报错如下:
经过一番查询
声明Bean的注解有:
@Component 没有明确角色的组件
@Service 在业务逻辑层(Service层)使用 -----源码包含@Component
@Controller 用于标注控制层组件 -----源码包含@Component
@RestController -----源码包含@Controller -----源码包含@Component
发现是忘记给这个PageBean加注解让他进入容器
加上@Component后:
报错解决。