这篇文章主要为大家详细介绍了springmvc+spring+mybatis实现用户登录功能的第二篇,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
昨天介绍了mybatis与spring的整合,今天我们完成剩下的springmvc的整合工作。
要整合springmvc首先得在web.xml中配置springmvc的前端控制器dispatcherServlet,它是springmvc的核心,为springmvc提供集中访问点,springmvc对页面的分派与调度功能主要靠它完成。
在我们之前配置的web.xml中加入以下springmvc的配置:
web.xml
dispatcherorg.springframework.web.servlet.dispatcherServletcontextConfigLocationclasspath*:config/spring-mvc.xml1dispatcher*.dologin.jsp
配置完后,我们需要在对springmvc框架进行配置,配置文件名为spring-mvc.xml,也是存放在config文件夹下:
当springmvc配置完成后,就需要编写业务啦,也就是service包下的东西,首先编写一个接口类userservice,里面存放了我们抽象出来的登录方法login
package com.mjl.service; import org.springframework.ui.Model; /** * Created by alvin on 15/9/7. */ public interface UserService { public boolean login(String username,String password); }
然后在创建一个userservice的实现类userserviceimpl用于实现我们所抽象出来的登录方法
package com.mjl.service; import com.mjl.dao.IUserDao; import com.mjl.model.User; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Service; import org.springframework.ui.Model; /** * Created by alvin on 15/9/7. */ //@Service("UserService") 注解用于标示此类为业务层组件,在使用时会被注解的类会自动由 //spring进行注入,无需我们创建实例 @Service("UserService") public class UserServiceImpl implements UserService { //自动注入iuserdao 用于访问数据库 @Autowired IUserDao Mapper; //登录方法的实现,从jsp页面获取username与password public boolean login(String username, String password) { // System.out.println("输入的账号:" + username + "输入的密码:" + password); //对输入账号进行查询,取出数据库中保存对信息 User user = Mapper.selectByName(username); if (user != null) { // System.out.println("查询出来的账号:" + user.getUsername() + "密码:" + user.getpassword()); // System.out.println("---------"); if (user.getUsername().equals(username) && user.getpassword().equals(password)) return true; } return false; } }
编写完业务层代码后,我们就可以写控制层代码啦,控制层的代码用于处理页面提交的业务
package com.mjl.controller; import com.mjl.model.User; import com.mjl.service.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import javax.servlet.http.HttpServletRequest; /** * Created by alvin on 15/9/7. */ //@Controller注解用于标示本类为web层控制组件 @Controller //@RequestMapping("/user")用于标定访问时对url位置 @RequestMapping("/user") //在默认情况下springmvc的实例都是单例模式,所以使用scope域将其注解为每次都创建一个新的实例 @Scope("prototype") public class UserController { //自动注入业务层的userService类 @Autowired UserService userService; //login业务的访问位置为/user/login @RequestMapping("/login") public String login(User user,HttpServletRequest request){ //调用login方法来验证是否是注册用户 boolean loginType = userService.login(user.getUsername(),user.getpassword()); if(loginType){ //如果验证通过,则将用户信息传到前台 request.setAttribute("user",user); //并跳转到success.jsp页面 return "success"; }else{ //若不对,则将错误信息显示到错误页面 request.setAttribute("message","用户名密码错误"); return "error"; } } }
登入窗口
用户名:
密码:
登入成功代码
登入成功!
您好!${user.username}
返回
登入失败代码
登入失败! ${message}
返回
OK,已经大功告成,跑一遍看看能不能使用吧
若我输入用户名:1234 密码:1234 则会提示登录失败,如下图所示:
到这里,本文已经全部结束,希望能对在整合springmvc,spring,my baits框架时有困惑的同学有所帮助,本文的代码已经上传github,以后我也会慢慢的增加功能,也会上传相关代码,希望大家能够共同进步!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。