# SpringBoot+thymeleaf实现列表展示,登录拦截,session共享 **Repository Path**: lv_guoliang/springbootShareSession ## Basic Information - **Project Name**: SpringBoot+thymeleaf实现列表展示,登录拦截,session共享 - **Description**: No description available - **Primary Language**: Unknown - **License**: MulanPSL-1.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2020-10-13 - **Last Updated**: 2021-01-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SpringBoot+thymeleaf实现列表展示,登录拦截,spring-session-data-redis实现session共享 开发环境:JDK 11.0.8 MySQL 8.0 Tomcat 8.5 (运行项目需要redis开启) 数据库脚本: CREATE TABLE tb_resume ( id bigint(20) NOT NULL AUTO_INCREMENT, address varchar(255) DEFAULT NULL, name varchar(255) DEFAULT NULL, phone varchar(255) DEFAULT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- Records of tb_resume BEGIN; INSERT INTO tb_resume VALUES (1, '北京', '张三', '131000000'); INSERT INTO tb_resume VALUES (2, '上海', '李四', '151000000'); INSERT INTO tb_resume VALUES (3, '⼴州', '王五', '153000000'); COMMIT;