欧美一区二区三区老妇人-欧美做爰猛烈大尺度电-99久久夜色精品国产亚洲a-亚洲福利视频一区二区

如何在springmvc中使用spring與mybatis實(shí)現(xiàn)一個(gè)用戶登錄功能

如何在springmvc中使用spring與mybatis實(shí)現(xiàn)一個(gè)用戶登錄功能?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

成都創(chuàng)新互聯(lián)公司是專業(yè)的定日網(wǎng)站建設(shè)公司,定日接單;提供網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行定日網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!

web.xml

<!-- Spring MVC 核心控制器 DispatcherServlet 配置 -->
 <servlet>
  <servlet-name>dispatcher</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <init-param>
   <!--用于標(biāo)明spring-mvc.xml配置的位置,我是存放在config文件夾下-->
   <param-name>contextConfigLocation</param-name>
   <param-value>classpath*:config/spring-mvc.xml</param-value>
  </init-param>
  <load-on-startup>1</load-on-startup>
 </servlet>
 <servlet-mapping>
  <servlet-name>dispatcher</servlet-name>
  <!-- 攔截所有*.do 的請(qǐng)求,交給DispatcherServlet處理,性能最好 -->
  <url-pattern>*.do</url-pattern>
 </servlet-mapping>
  <!--用于設(shè)定默認(rèn)首頁(yè)-->
 <welcome-file-list>
  <welcome-file>login.jsp</welcome-file>
 </welcome-file-list>

配置完后,我們需要在對(duì)springmvc框架進(jìn)行配置,配置文件名為spring-mvc.xml,也是存放在config文件夾下:

<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:context="http://www.springframework.org/schema/context"
  xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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">

 <!--掃描控制器,當(dāng)配置了它后,Spring會(huì)自動(dòng)的到com.mjl.controller
 下掃描帶有@controller @service @component等注解等類,將他們自動(dòng)實(shí)例化-->
 <context:component-scan base-package="com.mjl.controller" />

 <!--<mvc:annotation-driven /> 會(huì)自動(dòng)注冊(cè)DefaultAnnotationHandlerMapping與
 AnnotationMethodHandlerAdapter 兩個(gè)bean,它解決了一些@controllerz注解使用時(shí)的提前配置-->
 <mvc:annotation-driven />

 <!--配置 頁(yè)面控制器-->
 <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  <property name="prefix" value="/"/>
  <property name="suffix" value=".jsp" />

 </bean>

</beans>

當(dāng)springmvc配置完成后,就需要編寫業(yè)務(wù)啦,也就是service包下的東西,首先編寫一個(gè)接口類userservice,里面存放了我們抽象出來(lái)的登錄方法login

package com.mjl.service;

import org.springframework.ui.Model;

/**
 * Created by alvin on 15/9/7.
 */
public interface UserService {
 public boolean login(String username,String password);
}

然后在創(chuàng)建一個(gè)userservice的實(shí)現(xiàn)類userserviceimpl用于實(shí)現(xiàn)我們所抽象出來(lái)的登錄方法

package com.mjl.service;

import com.mjl.dao.IUserDao;
import com.mjl.model.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;
import org.springframework.ui.Model;

/**
 * Created by alvin on 15/9/7.
 */
//@Service("UserService") 注解用于標(biāo)示此類為業(yè)務(wù)層組件,在使用時(shí)會(huì)被注解的類會(huì)自動(dòng)由
 //spring進(jìn)行注入,無(wú)需我們創(chuàng)建實(shí)例
@Service("UserService")
public class UserServiceImpl implements UserService {
 //自動(dòng)注入iuserdao 用于訪問(wèn)數(shù)據(jù)庫(kù)
 @Autowired
 IUserDao Mapper;

 //登錄方法的實(shí)現(xiàn),從jsp頁(yè)面獲取username與password
 public boolean login(String username, String password) {
//  System.out.println("輸入的賬號(hào):" + username + "輸入的密碼:" + password);
  //對(duì)輸入賬號(hào)進(jìn)行查詢,取出數(shù)據(jù)庫(kù)中保存對(duì)信息
  User user = Mapper.selectByName(username);
  if (user != null) {
//   System.out.println("查詢出來(lái)的賬號(hào):" + user.getUsername() + "密碼:" + user.getPassword());
//   System.out.println("---------");
   if (user.getUsername().equals(username) && user.getPassword().equals(password))
    return true;

  }
  return false;

 }
}

編寫完業(yè)務(wù)層代碼后,我們就可以寫控制層代碼啦,控制層的代碼用于處理頁(yè)面提交的業(yè)務(wù)

package com.mjl.controller;

import com.mjl.model.User;
import com.mjl.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

import javax.servlet.http.HttpServletRequest;


/**
 * Created by alvin on 15/9/7.
 */

//@Controller注解用于標(biāo)示本類為web層控制組件
@Controller
//@RequestMapping("/user")用于標(biāo)定訪問(wèn)時(shí)對(duì)url位置
@RequestMapping("/user")
//在默認(rèn)情況下springmvc的實(shí)例都是單例模式,所以使用scope域?qū)⑵渥⒔鉃槊看味紕?chuàng)建一個(gè)新的實(shí)例
@Scope("prototype")
public class UserController {
 //自動(dòng)注入業(yè)務(wù)層的userService類
 @Autowired
  UserService userService;

 //login業(yè)務(wù)的訪問(wèn)位置為/user/login
 @RequestMapping("/login")
  public String login(User user,HttpServletRequest request){
  //調(diào)用login方法來(lái)驗(yàn)證是否是注冊(cè)用戶
  boolean loginType = userService.login(user.getUsername(),user.getPassword());
  if(loginType){
   //如果驗(yàn)證通過(guò),則將用戶信息傳到前臺(tái)
   request.setAttribute("user",user);
   //并跳轉(zhuǎn)到success.jsp頁(yè)面
   return "success";
  }else{
   //若不對(duì),則將錯(cuò)誤信息顯示到錯(cuò)誤頁(yè)面
   request.setAttribute("message","用戶名密碼錯(cuò)誤");
   return "error";
  }
 }

}

控制層代碼寫完后,就可以進(jìn)行前端頁(yè)面代碼編寫了,登錄代碼

<%--
 Created by IntelliJ IDEA.
 User: alvin
 Date: 15/9/7
 Time: 下午10:05
 To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
 String path = request.getContextPath();
 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<html>
<head>
 <title></title>
</head>
<body>
<br>
<br>
<br>
<br>
<br>
<form name="form1" action="/user/login.do" method="post" >
 <table width="300" border="1" align="center">
 <tr>
 <td colspan="2">登入窗口</td>
 </tr>
 <tr>
  <td>用戶名:</td>
  <td><input type="text" name="username">
  </td>
 </tr>
 <tr>
  <td>密碼:</td>
  <td><input type="password" name="password"/>
  </td>
 </tr>
 <tr>
 <td colspan="2">
  <input type="submit" name="submit" value="登錄"/>
 </td>


 </tr>
 </table>
</form>
</body>
</html>

登入成功代碼

<%--
 Created by IntelliJ IDEA.
 User: alvin
 Date: 15/9/8
 Time: 下午6:21
 To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
 String path = request.getContextPath();
 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<html>
<head>
 <title></title>
</head>
<body>

登入成功!
<br>
您好!${user.username}
<br>
<a href="/login.jsp" rel="external nofollow" >返回</a>
</body>
</html>

登入失敗代碼

 <%--
 Created by IntelliJ IDEA.
 User: alvin
 Date: 15/9/8
 Time: 下午6:22
 To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
 String path = request.getContextPath();
 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<html>
<head>
 <title></title>
</head>
<body>
登入失敗!
${message}
<br>
<a href="<%=path%>/login.jsp" rel="external nofollow" >返回</a>
</body>
</html>

看完上述內(nèi)容,你們掌握如何在springmvc中使用spring與mybatis實(shí)現(xiàn)一個(gè)用戶登錄功能的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!

分享名稱:如何在springmvc中使用spring與mybatis實(shí)現(xiàn)一個(gè)用戶登錄功能
文章鏈接:http://chinadenli.net/article12/ppepgc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供自適應(yīng)網(wǎng)站網(wǎng)站導(dǎo)航云服務(wù)器定制開(kāi)發(fā)網(wǎng)站營(yíng)銷電子商務(wù)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司