README.md 1.0 KB

TTC_5.0

基于ssm框架的技术转移云平台系统

##后端

  • JDK: 1.8
  • 数据库: Mysql 5.6
  • 项目构建工具: Maven
  • MVC框架:SpringBoot 1.5.9.RELEASE
  • ORM框架:MyBatisPlus 2.1.9
  • 数据库连接池: Druid 1.1.10
  • 搜索引擎: elasticsearch 2.3.2
  • 文件存储系统: FastDFS 5.05
  • 消息队列: kafka 2.11-0.10.1.0
  • 缓存: ehcache 1.1.0 + redis 2.0.0
  • 消息推送:mosquitto

##注意事项 1.创建好数据库,通过MybaitsPlus自动生成代码,需要在entity中手动加入tablename,tablecode 并判断该entity是否需要继承权限. 此外在entity中需要加入tablename和tablecode字段,另自动填充字段值:创建时间(createtime)和更新时间(updatetime)

@TableField(exist = false)
private String tablename = "resourcelibrary";

@TableField(exist = false)
private Integer tablecode;

@TableField(value = "createtime",fill = FieldFill.INSERT)
private Date createtime;

@TableField(value = "updatetime",fill = FieldFill.INSERT_UPDATE)
private Date updatetime;