亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用servlet實現一個用戶登錄功能

發布時間:2020-11-19 16:38:13 來源:億速云 閱讀:664 作者:Leah 欄目:編程語言

這篇文章給大家介紹使用servlet實現一個用戶登錄功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

用servlet來簡單實現一個用戶登錄的小程序。
首先,servlet也是一個JAVA類,新建一個JAVA類,它直接繼承了HttpServlet類:

@WebServlet(name = "ServletTest")
public class ServletTest extends HttpServlet {

  @Override
  public void init(ServletConfig config) throws ServletException {
    super.init(config);
  }

  @Override
  public void init() throws ServletException {
    super.init();
  }

  @Override
  public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException {
    //super.service(req, res);
    String username=req.getParameter("username");
    String password=req.getParameter("password");
    System.out.println(username);
    System.out.println(password);

  }

  @Override
  public void destroy() {
    super.destroy();
  }

  @Override
  protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    super.doPost(req, resp);
  }

  @Override
  protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
    super.doGet(req, resp);
  }
}

Servlet作為一個程序,也會有它的生命周期,它的生命周期從init()開始,有兩種init(),一個是有參數的,另一個是無參數的。其中有參數的init方法會顯示地調用無參的init()方法。從init(ServletConfi,g config)的源代碼中我們也可以看出這一點。init()是在被Servlet被訪問時被調用

使用servlet實現一個用戶登錄功能

當servlet接受用戶提交的表單的時候會調用service方法。

然后編寫login.jsp:

<form action="<%= request.getContextPath() %>/loginServlet" method="post">
  用戶名:<input type="text" name="username"><br/>
  密碼:<input type="password" name="password"><br/>
  <input type="submit" value="登錄">
  <input type="reset" value="重置">
</form>

注意action中要使用request.getContextPath獲取到上下文路徑。
loginServlet需要在web.xml中進行配置

<servlet>
       <servlet-name>LoginServlet</servlet-name>
       <servlet-class>com.myServlet.ServletTest</servlet-class>
     </servlet>

     <servlet-mapping>
       <servlet-name>LoginServlet</servlet-name>
       <url-pattern>/loginServlet</url-pattern>
     </servlet-mapping>

servlet-name隨便起,servlet-class表示servlet的類名。
url-pattern是action中引用的名字,這樣它們就關聯在一起了。

最后就可以看見表單中的username和password被打印出來了。

使用servlet實現一個用戶登錄功能

關于使用servlet實現一個用戶登錄功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

曲阜市| 九寨沟县| 密山市| 会东县| 永定县| 江都市| 秦安县| 夏邑县| 郓城县| 维西| 常山县| 成都市| 神池县| 拜泉县| 陆丰市| 泊头市| 万安县| 资溪县| 瑞金市| 佛山市| 义马市| 海丰县| 阳信县| 吉水县| 天津市| 崇礼县| 贵州省| 凤台县| 大石桥市| 宕昌县| 和静县| 沅江市| 阿拉善盟| 芦山县| 东光县| 襄城县| 斗六市| 云南省| 萝北县| 灌阳县| 蒙自县|