parent
9723c89d41
commit
c78ccf9352
@ -0,0 +1,52 @@
|
||||
package com.ssm.controller.user;
|
||||
|
||||
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.ssm.bean.User;
|
||||
import com.ssm.service.UserService;
|
||||
|
||||
/**
|
||||
* 控制层
|
||||
* @author Nocol
|
||||
*
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/user")
|
||||
public class UserAction {
|
||||
//注入Service
|
||||
@Autowired
|
||||
private UserService userService;
|
||||
|
||||
@RequestMapping("regist")
|
||||
public String regist(User user,Model model){
|
||||
|
||||
System.out.println("用户注册:"+user.getName()+user.getPassword());
|
||||
|
||||
user.setId(1);
|
||||
userService.regist(user);
|
||||
|
||||
model.addAttribute("msg", "注册成功");
|
||||
//注册成功后跳转success.jsp页面
|
||||
return "success";
|
||||
}
|
||||
|
||||
@RequestMapping("login")
|
||||
public String login(String name,String password,Model model){
|
||||
|
||||
System.out.println("用户登录:"+name+password);
|
||||
|
||||
/*Map<String, String> map=new LinkedHashMap<String,String>();
|
||||
|
||||
map.put("name", user.getName());
|
||||
map.put("password", user.getPassword());*/
|
||||
|
||||
userService.login(name,password);
|
||||
|
||||
model.addAttribute("msg", "登录成功");
|
||||
|
||||
return "success";
|
||||
}
|
||||
}
|
Loading…
Reference in new issue