我正在阅读和学习MongoDB的Spring Boot数据。我的数据库中有大约10条记录,格式如下:
{
"_id" : ObjectId("5910c7fed6df5322243c36cd"),
name: "car"
}
以下是我的Java / Spring课程:
@SpringBootApplication
public class Application {
public static void main(String[] args) throws IOException {
SpringApplication.run(Application.class, args);
}
}
@Document
public class Item implements Serializable {
private static final long serialVersionUID = -4343106526681673638L;
@Id
private String id;
private String name;
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;
}
}
@RepositoryRestResource(collectionResourceRel = "item", path = "items")
public interface ItemRepository<T, ID extends Serializable> extends MongoRepository<Item, String>, ItemRepositoryCustom {
}
MongoDB配置:
@Configuration
@EnableMongoRepositories
public class MongoConfiguration extends AbstractMongoConfiguration {
@Override
protected String getDatabaseName() {
return "itemdb";
}
@Override
public Mongo mongo() throws Exception {
return new MongoClient("localhost", 27017);
}
@Override
protected String getMappingBasePackage() {
return "com.learning.domain";
}
}
我从春天开始关注文档,但是当我在浏览器中打开链接时:
http://localhost:1337/items
我没有得到数据库中的任何项目。我得到的只是:
{
"_embedded" : {
"item" : [ ]
},
"_links" : {
"self" : {
"href" : "http://localhost:1337/items"
},
"profile" : {
"href" : "http://localhost:1337/profile/items"
}
},
"page" : {
"size" : 20,
"totalElements" : 0,
"totalPages" : 0,
"number" : 0
}
}
_embedded对象为空。我是否必须显式创建控制器并实现这些方法,或者Spring-Data是否自动执行?例如,我想得到计数,我这样做了:
http://localhost:1337/items/count
但它给了我一个404.
答案 0 :(得分:0)
我的MongoConfiguration没有被选中,所以我在application.properties中添加了详细信息:
spring.data.mongodb.database=itemdb
这解决了问题,现在我从查询中获取所有项目。