package com.order.controller;
import com.order.service.OrderService;
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 javax.servlet.http.HttpSession;
@Controller
public class loginController {
@Autowired
private OrderService service;
@RequestMapping("/login")
public String login(String name, String password, HttpSession session, Model model){
System.out.println("俺来了");
if(name.equals("afeng321")&&password.equals("123456")){
session.setAttribute("name",name);
return "/WEB-INF/index.jsp";
}
if(name.equals("zhanglong")&&password.equals("123456")){
session.setAttribute("name",name);
return "/WEB-INF/index.jsp";
}
if(name.equals("gaozengliang")&&password.equals("123456")){
session.setAttribute("name",name);
return "/WEB-INF/index.jsp";
}
return "redirect:/login.jsp";
}
@RequestMapping("/test")
public String test(){
return "/WEB-INF/index.jsp";
}
}
最近下载更多
vincemokea LV9
5月5日
xiaoaitx LV8
1月1日
微信网友_6802139027345408 LV2
2023年12月31日
houhanlin33 LV3
2023年12月28日
0o0o0o LV2
2023年6月12日
6389181 LV7
2023年6月1日
苏拉德666 LV4
2023年5月15日
LCL10086 LV3
2022年12月29日
hihhhh LV6
2022年12月25日
短巷拥猫 LV12
2022年12月10日
最近浏览更多
微信网友_7826662819680256
12月24日
暂无贡献等级
vincemokea LV9
5月5日
currety
4月10日
暂无贡献等级
哪里的完整版 LV8
3月1日
xiaoaitx LV8
1月1日
今天的我也很辛苦
2024年12月25日
暂无贡献等级
taoshen95 LV16
2024年12月21日
897258976 LV8
2024年8月29日
柳咪华沙 LV7
2024年6月28日
微信网友_7051335135711232
2024年6月24日
暂无贡献等级

