ERROR 9560 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter 瑞吉外卖报红问题

 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2022-10-14 20:01:15.567 ERROR 9560 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

Field employeeService in com.itheima.reggie.controller.EmployeeController required a bean of type 'com.itheima.reggie.service.EmployeeService' that could not be found.
 

解决方法:

 在service的impl文件夹下的EmployeeServiceImpl中添加

@Service注解
package com.itheima.reggie.service.impl;

import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.itheima.reggie.entity.Employee;
import com.itheima.reggie.mapper.EmployeeMapper;
import com.itheima.reggie.service.EmployeeService;
import org.springframework.stereotype.Service;

@Service
public class EmployeeServiceImpl extends ServiceImpl<EmployeeMapper, Employee> implements EmployeeService {
}