用户名:
密码:
当前位置:   article > 正文

简单的登录欢迎页面_welcome登录

welcome登录

webapp代码
开发工具:IntelliJ IDEA
登录代码(login.jsp)

<body>
<form action="do.jsp" method="get">
    用户名:<input type="text" name="username"><br>
    密码:<input type="password" name="password"><br>
    <input type="submit" value="登录">
</form>
</body>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

判断跳转代码(do.jsp)

<body>
<%
request.setCharacterEncoding("utf-8");
response.setCharacterEncoding("utf-8");
response.setContentType("text/html;charset=UTF-8");
String username=request.getParameter("username");
String password=request.getParameter("password");
if (username.equals("丽丽")&&password.equals("123")){
    session.setAttribute("username",username);
    response.sendRedirect("success.jsp");
}else {
    response.sendRedirect("login.jsp");
}
%>
</body>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

成功代码(success.jsp)

<body>
<%
    String username=(String)session.getAttribute("username");
    if (username!=null){
        out.print(username+"欢迎您");
    }else {
        out.print("<script>alert(‘您还没有登录请先登录’);</script>");
        out.print("<script>location.href='login.jsp';</script>");
    }
%>
</body>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

pom.xml依赖

    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.1.0</version>
    </dependency>
    
    <dependency>
      <groupId>javax.servlet.jsp</groupId>
      <artifactId>jsp-api</artifactId>
      <version>2.2</version>
    </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

页面展示

在这里插入图片描述

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/525971
推荐阅读
相关标签
  

闽ICP备14008679号