在springBoot中同时使用mysql和MongoDB

2023-12-13 19:27:24

在SpringBoot中非关系向数据库MongoDB和关系型数据库MySQL都可通过引入相关依赖并按照指定配置单独集成;

mysql引入依赖:

compile "org.springframework.boot:spring-boot-starter-web:1.5.18.RELEASE"
 compile "org.springframework.boot:spring-boot-starter-jdbc:1.5.18.RELEASE"
compile 'mysql:mysql-connector-java'

mongo引入依赖

compile "org.springframework.boot:spring-boot-starter-web:1.5.18.RELEASE"
compile "org.springframework.boot:spring-boot-starter-data-mongodb:1.5.18.RELEASE"

同时使用:

第一种方式:

  • 同时引入以上依赖
compile 

文章来源:https://blog.csdn.net/weixin_42551921/article/details/134501323
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。