SSM登录页面和数据分页显示功能

这篇博客主要介绍了如何在SSM(Spring、SpringMVC、MyBatis)框架下实现登录功能,包括DAO、Mapper、Service和Controller层的实现细节。同时,讲解了数据分页显示功能的实现,通过引入PageHelper插件,配置SessionFactory,并在Service和Controller中处理分页查询,最终在页面上展示分页数据。
摘要由CSDN通过智能技术生成

1.登录并在登录页面显示用户信息

1.在DAO层UserDao中添加登录函数

//登录
    UserInfo doLogin(String username);

2.在mapper层中UserMapper.xml文件中添加登录标签

<select id="doLogin" resultType="com.zhongruan.bean.UserInfo" parameterType="java.lang.String">
    select * from tb_user where username=#{username}
</select>

3.service层中在UserInfoService中添加该函数

//登录
    UserInfo doLogin(String username);

4.service层中Impl中实现该函数

public UserInfo doLogin(String username) {
    return userDao.doLogin(username);
}

5.controller层实现

@RequestMapping("/doLogin.do")
public String doLogin(String username, String password, HttpSession session){
    UserInfo userInfo = userInfoService.doLogin(username);
    if(userInfo!=null){
        if(userInfo.getPassword().equals(password)){
            System.out.p
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值