SpringBoot结合Ajax实现登录页面实例

一、 Ajax

1.1 Ajax介绍

AJAX 是一种在无需重新加载整个网页的情况下,能够更新部分网页的技术。

AJAX = 异步 JavaScript 和 XML

AJAX 是一种用于创建快速动态网页的技术。通过在后台与服务器进行少量数据交换,可以使网页实现异步更新。这意味着可以在不重新加载整个网页的情况下,对网页的某部分进行更新。传统的网页(不使用 AJAX)如果需要更新内容,必需重载整个网页面。

AJAX即Asynchronous JavaScript and XML(异步JavaScript和XML),是实现客户端和服务器异步通信的方法;同步:请求和页面的跳转同时发生;异步:请求和页面的跳转不同时发生;异步的请求可以实现页面的局部刷新;

 1.2 异步的作用

节省流量;无需刷新整个页面,服务器压力也降低;用户体验好;

 二、SpringBoot应用Ajax

2.1 开发配置

IDEA项目目录

SpringBoot结合Ajax实现登录页面实例_第1张图片

pom.xml配置 


        
            org.springframework.boot
            spring-boot-starter-thymeleaf
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            2.1.4
        
 
        
            mysql
            mysql-connector-java
            runtime
        
        
            com.alibaba
            druid
            1.2.8
        
 
        
            org.springframework.boot
            spring-boot-starter-test
            test
            
                
                    org.junit.vintage
                    junit-vintage-engine
                
            
        
        
            org.projectlombok
            lombok
        
    

application.yml

# 应用名称
spring:
  application:
    name: springboot-ajax
  # thymeleaf模板
  thymeleaf:
    cache: true
    check-template: true
    check-template-location: true
    enabled: true
    encoding: UTF-8
    mode: HTML5
    prefix: classpath:/templates/
    suffix: .html
 
# 数据源
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/ajax?serverTimezone=UTC
    username: root
    password: 1234
    type: com.alibaba.druid.pool.DruidDataSource
 
# 应用服务 WEB 访问端口
server:
  port: 8080
 
mybatis:
  configuration:
    map-underscore-to-camel-case: true
 
 

 2.2 创建user表 

SpringBoot结合Ajax实现登录页面实例_第2张图片

SQL实现

drop table if exists user;create table user(id int(8) NOT NULL AUTO_INCREMENT,loginName varchar(30) NULL DEFAULT NULL,loginPwd varchar(20) NULL DEFAULT NULL,realName varchar(30) NULL DEFAULT NULL,PRIMARY KEY(id) USING BTREE)ENGINE=INNODB AUTO_INCREMENT=3 ROW_FORMAT=Dynamic;insert into user values(1,'XiaoChen,'123456','小陈');insert into user values(2,'XiaoWang','123456','小王');insert into user values(3,'XiaoHua','123456','小花');

2.3 MVC三层架构

1)Entity实体类

user对象

@Data@AllArgsConstructor@NoArgsConstructor@ToStringpublic class User {    private int id;    private String loginName;    private String loginPwd;    private String realName;}

mapper接口

@Mapper@Repositorypublic interface UserMapper {    @Select("select * from user")    public List queryUsers();}

2) Service业务层

service层

public interface UserService {    public List queryAllUsers();}

serviceImpl层

@Servicepublic class UserServiceImpl implements UserService {    @Resource    private UserMapper userMapper;    @Override    public List queryAllUsers() {        return userMapper.queryUsers();    }}

3)Controller层

@RestController@CrossOrigin //解决跨域问题public class UserController {    @Resource    private UserServiceImpl userServiceImpl;    @RequestMapping("/xiaoChen")    public String index(String name,String pwd){        String msg="";        List users=userServiceImpl.queryAllUsers();        User myUser=null;        for(User user:users){            if(user.getLoginName().equals(name)){                myUser=user;                msg="OK";                break;            }else{                msg="账号错误";            }        }        if(pwd!=null){            if(myUser!=null&&myUser.getLoginPwd().equals(pwd)){                msg="OK";            }else{                msg="密码错误";            }        }        return msg;    }}

2.4 前端测试页面

index.html

        Ajax登录页面        

账号:

密码:

2.5 测试结果

SpringBoot结合Ajax实现登录页面实例_第3张图片

总结

到此这篇关于SpringBoot结合Ajax实现登录页面实例的文章就介绍到这了,更多相关SpringBoot登录页面内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(SpringBoot结合Ajax实现登录页面实例)