当前位置: 首页 > 知识库问答 >
问题:

Java在添加mongoDB支持时,请考虑在配置异常中定义一个bean类型

万英武
2023-03-14
@Autowired
private UserPropsRepository userPropsRepository;

https://github.com/guojing/spb

我的例外是:

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

Description:

Field userPropsRepository in controller.UserController required a bean of type 'repository.UserPropsRepository' that could not be found.


Action:

Consider defining a bean of type 'repository.UserPropsRepository' in your configuration.

共有1个答案

何峰
2023-03-14

问题解决了。

  1. 更改我的项目结构,将根包和模型以及Dao...移动到com.example.Model...
  2. 将application.java移动到root,以便它自动扫描组件

与这个相同的问题和解决方案有关。

 类似资料: