作者主页:舒克日记
简介:Java领域优质创作者、Java项目、学习资料、技术互助
文中获取源码
项目介绍
springboot客户管理系统
功能模块:登录+修改密码+客户列表+充值列表+消费记录+客户类型
环境:IDEA+jdk1.8+Tomcat9+MySQL5.7+maven3.6.1+redis
技术:springboot+jsp+layui
环境要求
1.运行环境:最好是java jdk1.8,我们在这个平台上运行的。其他版本理论上也可以。
2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;
3.tomcat环境:Tomcat7.x,8.X,9.x版本均可
4.硬件环境:windows7/8/10 4G内存以上;或者Mac OS;
5.是否Maven项目:是;查看源码目录中是否包含pom.xml;若包含,则为maven项目,否则为非maven.项目
6.数据库:MySql5.7/8.0等版本均可;
技术栈
- 技术框架:jQuery + MySQL5.7 + mybatis + shiro + Layui + HTML + CSS + JS + thymeleaf
- 运行环境:jdk8 + IntelliJ IDEA + maven3
使用说明
1.使用Navicati或者其它工具,在mysql中创建对应sq文件名称的数据库,并导入项目的sql文件;
2.使用IDEA/Eclipse/MyEclipse导入项目,修改配置,运行项目;
3.将项目中config-propertiesi配置文件中的数据库配置改为自己的配置,然后运行;
运行指导
idea导入源码空间站顶目教程说明(Vindows版)-ssm篇:
http://mtw.so/5MHvZq
源码地址:http://codegym.top。
运行截图
代码
LoginController
package com.rain.controller;import com.rain.common.base.BaseController;
import com.rain.common.base.JSONResult;
import com.rain.common.cache.SessionCache;
import com.rain.common.constant.Constant;
import com.rain.domain.dto.user.LoginDto;
import com.rain.domain.vo.user.LoginVo;
import com.rain.service.user.IUserService;
import com.rain.util.JsonUtils;
import com.rain.util.ObjectUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;import javax.servlet.http.HttpServletRequest;/*** 登录控制器*/
@Controller
public class LoginController extends BaseController {private static final Logger logger = LoggerFactory.getLogger(LoginController.class);@Autowiredprivate IUserService userService;@RequestMapping("/")public String index() {return "index";}/*** 进入登录页面** @return*/@RequestMapping(value = "/login", method = RequestMethod.GET)public String loginPage(HttpServletRequest request) {logger.debug("into /loginPage >>>>>>>>>>>>>>>>>>>>>>>");//判断当前用户是否登录,如果已登录转到系统首页LoginVo user = SessionCache.getUser(request);if (ObjectUtils.isNotEmpty(user)) {return "redirect:/";}return "login";}/*** 登录** @return*/@RequestMapping(value = "/login", method = RequestMethod.POST)@ResponseBodypublic Object login(LoginDto loginDto, HttpServletRequest request) {logger.info("into /login loginDto:{}", JsonUtils.toJson(loginDto));//用户登录信息LoginVo loginVo = userService.login(loginDto);//将用户信息存放在session中SessionCache.setUser(request, loginVo);request.getSession().setAttribute(Constant.SESSION_USER, loginVo);return new JSONResult();}/*** 登出** @return*/@RequestMapping(value = "/logout", method = RequestMethod.GET)public Object logout(HttpServletRequest request) {logger.info("into /logout >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>");SessionCache.removeUser(request);return "redirect:/login";}}