1.文档《软件设计方案说明书》github地址:https://github.com/gzyt/SRS

2.项目集成开发环境

  • 数据库:Mysql 5.0
  • 项目管理工具:apache-maven-3.3.9 
  • servlet服务器:apache-tomcat-8.0.41
  • Java开发环境:jdk8
  • 开发工具选择:Idea、Sqlyog
  • 项目配置环境:spring boot、Maven和Spring Mvc

3.文档《软件编码规范说明书》GitHub地址:https://github.com/gzyt/SRS

4.软件关联数据库设计

 1  1 #开发环境配置
 2  2 server:
 3  3   #端口
 4  4   port: 8080
 5  5 spring:
 6  6   profiles: dev
 7  7   #redis配置
 8  8   redis:
 9  9       database: 1
10 10       host: 127.0.0.1
11 11       port: 6379
12 12       password:      # 密码(默认为空)
13 13       timeout: 6000  # 连接超时时长(毫秒)
14 14       pool:
15 15         max-active: 1000  # 连接池最大连接数(使用负值表示没有限制)
16 16         max-wait: -1      # 连接池最大阻塞等待时间(使用负值表示没有限制)
17 17         max-idle: 10      # 连接池中的最大空闲连接
18 18         min-idle: 5       # 连接池中的最小空闲连接
19 19   # 数据源配置
20 20   datasource:
21 21     url: jdbc:mysql://localhost:3306/kaoxin?useUnicode=true&characterEncoding=utf8&useSSL=false&tinyInt1isBit=true
22 22     username: root
23 23     password: 123456
数据库连接

相关文章:

  • 2021-10-24
  • 2022-12-23
  • 2021-07-07
  • 2021-10-06
  • 2021-08-04
  • 2021-05-23
  • 2021-11-11
猜你喜欢
  • 2021-07-01
  • 2021-08-13
  • 2021-08-25
  • 2021-09-04
  • 2021-11-10
  • 2021-09-03
  • 2021-12-18
相关资源
相似解决方案