mongodb - spring-data-mongo 該如何連接到其他的函式庫 而不是預設的test函式庫?
phpcn_u1582
phpcn_u1582 2017-05-02 09:18:40
0
1
518

我現在透過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庫裡面的 , 到底怎麼回事 ?

phpcn_u1582
phpcn_u1582

全部回覆(1)
洪涛

在你的application.yml或prop檔裡加上設定
data:

mongodb:
  database: tara
  host: localhost
  port: 27017
  username: tara
  password: tara
  authentication-database: tara
  repositories:
    enabled: true
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板