首页>代码>ssm实现简单的crm客户管理系统>/客户管理系统/SSMBoot/src/com/rainnie/controller/UserController.java
package com.rainnie.controller;

import javax.servlet.http.HttpSession;


import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

import com.rainnie.po.User;
import com.rainnie.service.UserService;

@Controller
public class UserController {
	
	@Autowired
	private UserService userService;
	
	@RequestMapping("login.action")
	public String login(String usercode,String password,Model model,HttpSession session) {
		
		User user=(User) userService.findUser(usercode, password);
		if(user!=null) {
			session.setAttribute("USER_SESSION", user);
			/*return "customer";*/
			return "redirect:customer/list.action";
		}
		model.addAttribute("msg", "账号或者密码错误");
		
		return "login";
		
	}
	
	@RequestMapping("logout.action")
	public String logout(HttpSession session) {
		session.invalidate();
		return "redirect:tologin.action";
		
	}
	
	@RequestMapping("tologin.action")
	public String toLogin() {
		return "login";
		
	}
	
	/**
	 * 此处是模拟没有拦截器登录的情况,没有实质作用
	 * @return
	 */
	@RequestMapping("toCustomer.action")
	public String toCustomer() {
		return "customer";
		 
	}
}
最近下载更多
微信网友_7151914139078656  LV2 2024年9月4日
pangzhihui  LV14 2024年6月7日
wananall  LV13 2024年3月13日
wuge123  LV8 2023年12月19日
枫林与爱00  LV1 2023年10月11日
周敏国  LV9 2023年9月4日
zcx12345678  LV6 2023年5月16日
Peri_qxy  LV2 2023年3月29日
 LV7 2023年3月29日
taoshen95  LV16 2022年12月11日
最近浏览更多
skmckk  LV9 前天
xiuele 2024年12月26日
暂无贡献等级
今天的我也很辛苦 2024年12月25日
暂无贡献等级
微信网友_7290996505972736  LV4 2024年12月11日
bluerstar  LV1 2024年10月23日
微信网友_7151914139078656  LV2 2024年9月4日
897258976  LV8 2024年8月29日
xzg123456  LV6 2024年6月18日
李俊雄  LV3 2024年4月30日
hmf1989 2024年4月26日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友