1. 前端
<! DOCTYPE html >
< html lang = " en" >
< head> < meta charset = " UTF-8" > < title> Title</ title>
</ head>
< body> < form action = " login" method = " POST" > < input type = " text" name = " username" > < input type = " password" name = " password" > < input type = " submit" value = " 提交" > </ form>
</ body>
</ html>
2. 后端登录
package EnableUserLogin ; import javax. servlet. annotation. WebServlet ;
import javax. servlet. http. HttpServlet ;
import javax. servlet. http. HttpSession ;
import javax. servlet. ServletException ;
import javax. servlet. annotation. WebServlet ;
import javax. servlet. http. HttpServlet ;
import javax. servlet. http. HttpServletRequest ;
import javax. servlet. http. HttpServletResponse ;
import java. io. IOException ;
@WebServlet ( "/login" )
public class LoginServlet extends HttpServlet { @Override protected void doPost ( HttpServletRequest req, HttpServletResponse resp) throws ServletException , IOException { resp. setContentType ( "text/html; charset=utf-8" ) ; String username = req. getParameter ( "username" ) ; String password = req. getParameter ( "password" ) ; if ( ! username. equals ( "admin" ) || ! password. equals ( "123" ) ) { resp. getWriter ( ) . write ( "登陆失败" ) ; return ; } System . out. println ( "登陆成功" ) ; HttpSession session = req. getSession ( true ) ; session. setAttribute ( "username" , "admin" ) ; session. setAttribute ( "loginCount" , "0" ) ; resp. sendRedirect ( "index" ) ; }
}
3. 后端检验页面
package EnableUserLogin ; import javax. servlet. annotation. WebServlet ;
import javax. servlet. http. HttpServlet ;
import javax. servlet. http. HttpSession ;
import javax. servlet. ServletException ;
import javax. servlet. annotation. WebServlet ;
import javax. servlet. http. HttpServlet ;
import javax. servlet. http. HttpServletRequest ;
import javax. servlet. http. HttpServletResponse ;
import java. io. IOException ; @WebServlet ( "/index" )
public class IndexServlet extends HttpServlet { @Override protected void doGet ( HttpServletRequest req, HttpServletResponse resp) throws ServletException , IOException { resp. setContentType ( "text/html; charset=utf-8" ) ; HttpSession session = req. getSession ( false ) ; if ( session == null ) { resp. sendRedirect ( "login.html" ) ; return ; } String userName = ( String ) session. getAttribute ( "username" ) ; String countString = ( String ) session. getAttribute ( "loginCount" ) ; int loginCount = Integer . parseInt ( countString) ; loginCount += 1 ; session. setAttribute ( "loginCount" , loginCount + "" ) ; StringBuilder html = new StringBuilder ( ) ; html. append ( String . format ( "<div>用户名: %s</div>" , userName) ) ; html. append ( String . format ( "<div>loginCount: %d</div>" , loginCount) ) ; resp. getWriter ( ) . write ( html. toString ( ) ) ; }
}