一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - SpringMVC 實現(xiàn)用戶登錄實例代碼

SpringMVC 實現(xiàn)用戶登錄實例代碼

2020-08-13 12:10JAVA代碼網(wǎng) Java教程

這篇文章主要介紹了SpringMVC 實現(xiàn)用戶登錄實例代碼的相關資料,需要的朋友可以參考下

SpringMVC的一個登陸小案例

準備工作

  1. 創(chuàng)建一個Dynamic Web Project(本人是Eclipse)
  2. 添加相關的jar包,構建路徑
  3. 創(chuàng)建springMVC-servlet.xml,及完善web.xml
  4. 創(chuàng)建代碼邏輯

目錄結構如下

對于新手而言,有一個項目的完整的目錄結構是多么幸福的一件事啊。

目錄結構

SpringMVC 實現(xiàn)用戶登錄實例代碼

個人建議:注意其中的springMVC-servlet.xml的位置。以及源代碼包的名稱。

代碼實戰(zhàn)

首先是大管家,web.xml:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
  id="WebApp_ID" version="3.1">
  <display-name>SpringTest</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
  </welcome-file-list>
 
  <servlet>
    <servlet-name>springMVC</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  </servlet>
 
  <servlet-mapping>
    <servlet-name>springMVC</servlet-name>
    <url-pattern>*.spring</url-pattern>
  </servlet-mapping>
 
 
</web-app>

然后是小管家springMVC-servlet.xml:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
  xmlns:context="http://www.springframework.org/schema/context"
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
      http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
      http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">
 
  <!-- 最簡單的配置,讓Spring自己去探索-->
  <context:component-scan base-package="controller"></context:component-scan>
 
 
</beans>

再就是一個登陸界面了,login.jsp:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<%@ page language="java" contentType="text/html; charset=UTF-8"
  pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>登陸界面</title>
</head>
<body>
 
  <form action="login.spring" method="post">
    username:<input type="text" name="username"><br /> Password:<input
      type="password" name="password"><br /> <input type="submit"
      value="登陸">
  </form>
</body>
</html>

login.jsp對應的那個action就是要進行處理的后臺頁面,也就是我們的Login.Java:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package controller;
 
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
 
@Controller // @Controller 代表本Java類是controller控制層
public class Login {
 
  /**
   * @RequestParam注解的作用是:根據(jù)參數(shù)名從URL中取得參數(shù)值
   * @param username
   *      用戶名,一定要對應著表單的name才行
   * @param password
   *      用戶密碼,也應該對應表單的數(shù)據(jù)項
   * @param model
   *      一個域?qū)ο螅捎糜诖鎯?shù)據(jù)值
   * @return
   */
  @RequestMapping("/login") // @RequestMapping 注解可以用指定的URL路徑訪問本控制層
  public String login(@RequestParam("username") String username, @RequestParam("password") String password,
      Model model) {
 
    if (username.equals("admin") && password.equals("admin")) {
      model.addAttribute("username", username);
      return "ok.jsp";
    } else {
      model.addAttribute("username", username);
      return "no.jsp";
    }
  }
 
}

最后就是ok.jsp和no.jsp了:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<%@ page language="java" contentType="text/html; charset=UTF-8"
  pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<font color="green">${username } </font>歡迎你!
 
</body>
</html>
 
 
 
<%@ page language="java" contentType="text/html; charset=UTF-8"
  pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
 
  <font color="red">Sorry</font>,沒有${username }這個用戶!
  <br />
  <a href="login.jsp" rel="external nofollow" >重試一下!</a>
 
</body>
</html>

測試

在你的瀏覽器上輸入http://localhost:8080/SpringTest/login.jsp

然后就可以對代碼進行測試了。本人親測好用,這里就不再貼圖了。

總結

  1. 在web.xml中配置DispatcherServlet核心控制器
  2. 在WEB-INF文件夾中創(chuàng)建springMVC-servlet.xml配置文件
  3. @Controller、@RequestMapping、@RequestParam以及Model域?qū)ο蟮鹊氖褂?/li>
  4. 表單以post方式,或者使用get方式都是可以的

下面是注解的小技巧:

@Controller就是對應于springMVC-servlet.xml中的

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

原文鏈接:http://blog.csdn.net/marksinoberg/article/details/51482079

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 性夜影院午夜看片 | 四虎影视4hutv最新地址在线 | 国内精品露脸在线视频播放 | 免费人成在线观看69式小视频 | 超级毛片 | 成人高辣h视频一区二区在线观看 | 男人的天堂在线观看视频不卡 | 草草草草视频 | 亚洲天堂岛国片 | 亚洲成av人影院 | 二次元美女扒开内裤露尿口 | 亚洲国产在线观看免费视频 | 禁漫H天堂免费A漫 | 久久毛片免费看一区二区三区 | 成人免费观看网欧美片 | 波多野结衣xxxxx在线播放 | 国产精品久久久久毛片真精品 | 手机在线观看精品国产片 | 荡娃艳妇有声小说 | 精品久久日日躁夜夜躁AV | 日日操美女 | 亚洲欧美日韩精品 | 国产麻豆精品原创 | 欧美日本一道高清免费3区 欧美人做人爱a全程免费 | 青草网在线观看 | 99精品国产综合久久久久 | 纲手被强喷水羞羞漫画 | 黑人好大好硬好深好爽想要h | 午夜AV内射一区二区三区红桃视 | 特黄级 | 亚洲一区二区精品视频 | 王晶三级作品 | 亚洲成在人网站天堂一区二区 | 成人黄色a级片 | 动漫人物差差插曲漫画 | 国产99在线a视频 | 四虎综合九九色九九综合色 | 国产成人咱精品视频免费网站 | 午夜十八岁禁 | 特黄特a级特别特级特毛片 特黄a级三级三级野战 | h版在线观看 |