南天一柱 发表于 2017-12-15 19:41:07

Spring Boot MongoDB JPA 简化开发

<parent>  
<groupId>org.springframework.boot</groupId>
  
<artifactId>spring-boot-starter-parent</artifactId>
  
<version>1.4.1.RELEASE</version>
  
<relativePath /> <!-- lookup parent from repository -->
  
</parent>
  

  
<dependencies>
  
<dependency>
  
<groupId>org.springframework.boot</groupId>
  
<artifactId>spring-boot-starter-web</artifactId>
  
</dependency>
  
<dependency>
  
<groupId>org.springframework.boot</groupId>
  
<artifactId>spring-boot-starter-tomcat</artifactId>
  
</dependency>
  
<dependency>
  
<groupId>org.springframework.boot</groupId>
  
<artifactId>spring-boot-starter-data-mongodb</artifactId>
  
</dependency>
  
</dependencies>
页: [1]
查看完整版本: Spring Boot MongoDB JPA 简化开发