搜尋

首頁  >  問答  >  主體

mongodb - spring-data-mongo 該如何連接到其他的函式庫 而不是預設的test函式庫?

我現在透過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_u1582phpcn_u15822789 天前528

全部回覆(1)我來回復

  • PHP中文网

    PHP中文网2017-05-02 09:20:40

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

    mongodb:
      database: tara
      host: localhost
      port: 27017
      username: tara
      password: tara
      authentication-database: tara
      repositories:
        enabled: true

    回覆
    0
  • 取消回覆