Field userService in /UserController required a bean of type‘/UserService‘ that could not be found.

在UserServiceImpl类上添加注解@Service就可以解决问题,

如下:

问题截图:

Field userService in /UserController required a bean of type‘/UserService‘ that could not be found._第1张图片

问题描述:

Field userService in /UserController required a bean of type‘/UserService‘ that could not be found._第2张图片

问题解决:

在UserServiceImpl类上添加注解@Service,问题便得以解决。

Field userService in /UserController required a bean of type‘/UserService‘ that could not be found._第3张图片

Field userService in /UserController required a bean of type‘/UserService‘ that could not be found._第4张图片

问题解决,正常运行:

你可能感兴趣的:(笔记,java,开发语言)