“字段需要一个无法找到的类型的bean。”错误使用mongodb的restful API
所以我一直在学习春季在夫妻一周,一直在学习本教程
一切都很好,直到我试图将它集成到mongodb中。所以我按照本教程。
但我的实践部分仍在使用第一个。所以我的项目目录结构是这样的。
src/
├── main/
│ └── java/
| ├── model/
| | └── User.java
| ├── rest/
| | ├── Application.java
| | ├── IndexController.java
| | └── UsersController.java
| └── service/
| └── UserService.java
└── resources/
└── application.properties
这是我的模型/用户.java文件
package main.java.model;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
@Document(collection="user")
public class User {
private int age;
private String country;
@Id
private String id;
private String name;
public User() {
super();
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
}
这是我的休息/用户控制器.java文件
package main.java.rest;
import java.util.List;
import main.java.service.UserService;
import main.java.model.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping(value = "/users")
public class UsersController {
@Autowired
UserService userService;
@RequestMapping(method = RequestMethod.GET)
public List<User> getAllUsers() {
return userService.findAll();
}
}
这是我的服务/用户服务.java文件
package main.java.service;
import java.util.List;
import main.java.model.User;
import org.springframework.data.mongodb.repository.MongoRepository;
public interface UserService extends MongoRepository<User, String> {
public List<User> findAll();
}
我可以编译它们(我正在使用gradle进行编译,因为我正在遵循本教程),但是当我运行jar文件时,它会抛出此错误。
应用程序启动失败
描述:
main.java.rest.UsersController 中的 Field userService 需要一个类型为“main.java.service.UserService”的 Bean,但找不到。
行动:
考虑在配置中定义类型为“main.java.service.UserService”的 Bean。
不确定出了什么问题,我开始谷歌搜索,发现我需要包含文件并在其中注册userService。我这样做了,但它不起作用。我对此非常陌生,所以我真的不知道发生了什么。Beans.xml