Merge branch 'master' of ssh://git.jizhiweb.cn:2222/clinic-v2/server
This commit is contained in:
commit
d2ce50896e
5
pom.xml
5
pom.xml
|
|
@ -125,6 +125,11 @@
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,11 @@ spring:
|
||||||
application:
|
application:
|
||||||
name: server
|
name: server
|
||||||
data:
|
data:
|
||||||
redis:
|
mongodb:
|
||||||
|
host: dev.jizhiweb.cn # MongoDB服务器地址
|
||||||
|
port: 27017 # MongoDB端口
|
||||||
|
database: syjiaer_clinic # 使用的数据库名称
|
||||||
|
redis:
|
||||||
host: dev.jizhiweb.cn
|
host: dev.jizhiweb.cn
|
||||||
port: 6379
|
port: 6379
|
||||||
datasource:
|
datasource:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue