我現在透過spring-boot + spring-mongo 做一個小demo ,都是最新版本, 現在出現了一個問題就是無論如何都不能連接到其他的庫,只能連接到mongodb預設的test庫, 是什麼原因?
設定 application.yml:
spring.data.mongodb.uri: mongodb://localhost:27017/mongo
照理說這裡應該連接到mongo庫才對 。我的mongodb沒有設定權限驗證,及不需要密碼和使用者名稱
gradle :
compile("org.springframework.boot:spring-boot-starter-data-mongodb")
compile("org.springframework.boot:spring-boot-starter-web")
entity :
@Document(collection="customer")
public class Customer {
@Id
private String id;
private String firstName;
private String lastName;
repository :
public interface CustomerRepository extends MongoRepository<Customer, String>,QueryDslPredicateExecutor<Customer> {
}
controller :
//http://localhost:8080/id
@RequestMapping("/{id}")
public Object getmongodbID(@PathVariable String id){
return customerRepository.getIdCustomer(id);
}
然後訪問拿到的內容是test庫裡面的 , 到底怎麼回事 ?
在你的application.yml或prop檔裡加上設定
data: