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日

最近浏览