springbootalready

SpringBoot 后台管理框架

2022-10-08  本文已影响0人  beyond阿亮

SpringBoot 后台管理框架

SpringBoot 后台管理框架 功能介绍

登录 注册 文章管理 文章添加修改删除 分类管理 分类添加修改删除

适合学习练手

使用技术

功能展示

登录.jpg 注册.jpg 主页.jpg 文章管理.jpg 添加文章.jpg 文章分类.jpg 添加分类.jpg

springboot配置文件application.properties

#DataBase start
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
#DataBase end

#mybatis start
mybatis.config-location=classpath:/mybatis-config.xml
#mybatis end


#thymeleaf start
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
#开发时关闭缓存,不然没法看到实时页面
spring.thymeleaf.cache=false
#thymeleaf end


#uploadFileSize start
spring.http.multipart.maxFileSize=10Mb
spring.http.multipart.maxRequestSize=100Mb
#uploadFileSize end
 

运行

创建数据库, 然后修改数据库连接相关信息。

启动 Springboot 类的main方法

访问 http://localhost:8080/admin/login

帐号密码: admin/admin

上一篇 下一篇

猜你喜欢

热点阅读