python222网站实战(SpringBoot+SpringSecurity+MybatisPlus+thymeleaf+layui)-主页设计Menu动态菜单模块实现

锋哥原创的Springboot+Layui python222网站实战:

python222网站实战课程视频教程(SpringBoot+Python爬虫实战) ( 火爆连载更新中... )_哔哩哔哩_bilibilipython222网站实战课程视频教程(SpringBoot+Python爬虫实战) ( 火爆连载更新中... )共计23条视频,包括:python222网站实战课程视频教程(SpringBoot+Python爬虫实战) ( 火爆连载更新中... )、第2讲 架构搭建实现、第3讲 页面系统属性动态化设计实现等,UP主更多精彩视频,请关注UP账号。icon-default.png?t=N7T8https://www.bilibili.com/video/BV1yX4y1a7qM/新建t_menu表

CREATE TABLE `t_menu` (
  `id` INT(11) NOT NULL AUTO_INCREMENT,
  `name` VARCHAR(20) DEFAULT NULL,
  `url` VARCHAR(500) DEFAULT NULL,
  `color` VARCHAR(20) DEFAULT NULL,
  `strong` BIT(1) DEFAULT b'0',
  `sort` INT(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=INNODB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;

/*Data for the table `t_menu` */

INSERT  INTO `t_menu`(`id`,`name`,`url`,`color`,`strong`,`sort`) VALUES (1,'首页','/','black','\0',1),(2,'课程','/course/list','black','\0',2),(3,'Java全栈学习路线图','/article/1','black','',3),(6,'关于锋哥','/article/14','#e11717','',6),(9,'java1234门徒服务','/article/5','#000000','',5),(11,'VIP活动特价','http://www.java1234.com/vip.html','#f50606','',4);

通过MybatisX插件生成代码

缓存里获取menuList

python222网站实战(SpringBoot+SpringSecurity+MybatisPlus+thymeleaf+layui)-主页设计Menu动态菜单模块实现_第1张图片

common下面新建menu.html

python222网站实战(SpringBoot+SpringSecurity+MybatisPlus+thymeleaf+layui)-主页设计Menu动态菜单模块实现_第2张图片



python222网站实战(SpringBoot+SpringSecurity+MybatisPlus+thymeleaf+layui)-主页设计Menu动态菜单模块实现_第3张图片

你可能感兴趣的:(java,spring,boot,layui,后端)