码迷,mamicode.com
首页 > 其他好文 > 详细

Servlet应用

时间:2020-05-31 19:53:53      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:密码   localhost   图片   过滤器   return   默认页面   str   att   enum   

1、在idea中新建spring boot项目,把html文件复制到static目录下,配置mysql连接启动项目

(idea中:new->prokect->Spring Initializr->改名字或者不改->next->勾选Spring Boot Devtools,spring web,Mysql Driver,MyBatis Framework,Thtmeleaf->next。新建成功)。

由于勾选了mysql,需要先在application.properties中配置mysql连接。配置过后启动。

技术图片

 

 

访问默认页面:localhost:8080。

 

技术图片

 2、配置过滤器

技术图片

 

添加过滤器的扫描包

 技术图片

 

 3、编写servlet接收用户输入,由于添加了保存登录信息选项,需要修改html和添加了一个参数flag记录是否保存登录信息。

技术图片

4、在数据库中建立表

技术图片

 

 5、配置Mybatis

技术图片

 

6、在服务端用session保存用户的登录信息,在客户端用cookie保存登录信息

logger.info("user:-----------"+name);
        logger.info("pwd:-----------"+pwd);
        logger.info("record:-----------"+flag);
        //查询数据库,验证用户名和密码
        User user1 = userMapper.findUser(name,pwd);
        if(user1==null){
            return new LoginResult(false,"","用户名或密码错误");
        }else {
            //是否需要记录用户信息,写入session
            if(flag==true){
                String token = getMd5(name);
                httpServletRequest.getSession().setAttribute(token,name);
                //设置session过期时间30天
                httpServletRequest.getSession().setMaxInactiveInterval(30*24*60*60);
                System.out.println("session过期时间 : "+httpServletRequest.getSession().getMaxInactiveInterval());
                System.out.println("session token: "+httpServletRequest.getSession().getAttribute(token));
                Cookie cookie = new Cookie("token",token);
                cookie.setMaxAge(30*24*60*60);
                response.addCookie(cookie);
            }
            return new LoginResult(true,name,""); 

客户端的token。

技术图片

 7、使用session记录当前登录人数

Enumeration<String> attributeNames = httpServletRequest.getSession().getAttributeNames();
        int count=0;
        for (;attributeNames.hasMoreElements();){
            attributeNames.nextElement();
            count++;
        }
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("count",count);
        logger.info(jsonObject.toString());
        return jsonObject.toString();

 技术图片

 8、上传到github。地址    https://github.com/JPL1988/demo

技术图片

 

Servlet应用

标签:密码   localhost   图片   过滤器   return   默认页面   str   att   enum   

原文地址:https://www.cnblogs.com/l123456l/p/12971506.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!