美文网首页
crm项目框架搭建

crm项目框架搭建

作者: 咿呀一样 | 来源:发表于2020-04-22 22:06 被阅读0次

crm项目技术

一.框架搭建

  • 后台:Springboot +mybatis+mysql

  • 前台:layui+thymeleaf

    layui是前端第三方框架(把css、js、html进行打包可直接用)
    thymeleaf模板引擎

  •  开发工具:idea+jdk1.8+git+maven
    

二.项目搭建

Springboot框架搭建
pro文件添加依赖:mysql驱动和thymeleaf模板引擎和Springboot的相应依赖。

application.properties:配置文件如下:

spring.datasource.url=jdbc:mysql://location:3306/edu_crm
spring.datasource.username=root
spring.datasource.password=xxxxx
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#页面热加载
spring.thymeleaf.cache=false
#端口
server.port=8888

添加mybatis依赖
添加控制器:
就是html页面跟controller进行打通

PsfgSxorKCGXVd3

相关文章

网友评论

      本文标题:crm项目框架搭建

      本文链接:https://www.haomeiwen.com/subject/hemgihtx.html