跳至主要內容

用户中心1

项目实战用户中心项目实战用户中心大约 5 分钟约 1453 字全民制作人ikun

用户中心

目的

完整了解做项目的思路,接触一些企业级的开发技术

企业做项目流程

需求分析=> 设计(概要设计,详细设计)=> 技术选型 =>初始化 /引入需要的技术 => 写小Demo =>写 代码(实验 业务逻辑) => 测试(单元测试) => 代码提交 /代码评审 => 部署发布

需求分析

  1. 登录/注册
  2. 用户管理(仅管理员可见)对用户对查询或者修改
  3. 用户校验

技术选型

前端:三件套+React+组件库Ant Design +Umi +Ant Design Pro(现成的管理系统)

后端:Java+Spring+SpringMVC+Mybati+MybatisPlus+SpringBoot+MySQL

部署:服务器/容器(平台)

前端页面初始化

Ant Design Pro 官网 在这里面 open in new window

初始化项目

  1. 运行安装命令
npm i @ant-design/pro-cli -g
pro create myapp
  1. 选择umi版本为 umi@3
  2. 安装依赖并运行:
cd myapp &&yarn
  1. 安装可视化界面
 yarn add @umijs/preset-ui -D  
  1. 运行项目
yarn start

成功运行:

image-20231015142834688
image-20231015142834688

项目瘦身

移除一些不需要的东西:

首先移除i18多国语言

yarn i18n-remove

删除src/e2e文件夹,因为此文件夹是用来测试的

image-20231015143339669
image-20231015143339669

删除src/services/swagger,这是接口文档工具

image-20231015143505405
image-20231015143505405

删除config/oneapi.json,也是前端mock数据类似的

image-20231015143540600
image-20231015143540600

也需要删除配置里的关于oneapi的配置

image-20231015144022532
image-20231015144022532

删除test文件夹,用不到测试

image-20231015143748227
image-20231015143748227

删除 jest.config.js文件,测试用的

image-20231015143855460
image-20231015143855460

删除playwright.conf前端用于测试的

image-20231015143921293
image-20231015143921293

后端初始化

三种初始化 Java项目的方式

  1. GitHub搜现成的代码
  2. SpringBoot官方模版生成器
  3. IDEA生成
image-20231015144544188
image-20231015144544188

用到的依赖

maven依赖官网:https://mvnrepository.com/open in new window

Lombok

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>

devtools

主要用于热更新

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>

processor

主要用于读取配置文件

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>

MySQL

        <dependency>
            <groupId>com.mysql</groupId>
            <artifactId>mysql-connector-j</artifactId>
            <scope>runtime</scope>
        </dependency>

Spring Web

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

Mybatis

        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>3.0.2</version>
        </dependency>

Mybatis-Plus

官网:https://baomidou.com/open in new window

    <dependency>
        <groupId>com.baomidou</groupId>
        <artifactId>mybatis-plus-boot-starter</artifactId>
        <version>3.5.3.2</version>
    </dependency>

配置文件

application.yml

spring:
  application:
    name: user-center
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/qiuzhao
    username: root
    password: 12345678
server:
  port: 8080
mybatis-plus:
	configuration:
  	map-underscore-to-camel-case: false

启动类上面加注解扫描mapper包:

@MapperScan("com.yunfei.usercenterback.mapper")

数据库设计

用户表:

字段类型备注
idvarchar主键
usernamevarchar昵称
userAccountvarchar账号
avatarUrlvarchar头像
gendertinyint性别
passwordvarchar密码
phonevarchar电话
emailvarchar邮箱
userStatustinyint0-正常
createTimedatetime创建时间
updateTimedatetime更新时间
isDeletetinyint是否删除
userRoletinyint0-普通用户 1-管理员

使用可视化界面 创建数据库:

image-20231015152859776
image-20231015152859776

对应的SQL语句为:

-- auto-generated definition
create table user
(
    id           bigint auto_increment comment '用户id'
        primary key,
    username     varchar(256)                       null comment '用户昵称',
    userAccount  varchar(256)                       null comment '用户账户',
    avatarUrl    varchar(1024)                      null comment '用户头像',
    gender       tinyint                            null comment '性别',
    userPassword varchar(512)                       not null comment '用户密码',
    phone        varchar(128)                       null comment '点话',
    email        varchar(512)                       null comment '邮箱',
    userStatus   int      default 0                 not null comment '0-正常',
    createTime   datetime default CURRENT_TIMESTAMP null comment '创建时间',
    updateTime   datetime default CURRENT_TIMESTAMP null on update CURRENT_TIMESTAMP comment '更新时间',
    isDelete     tinyint  default 0                 not null comment '是否删除'
)
    comment '用户';

后端业务编写

代码生成器

MybatisX插件,可以自动生成domain实体对象等

image-20231015153511845
image-20231015153511845

选择要生成的数据库的表,

image-20231015153600713
image-20231015153600713

如下操作:

image-20231015171927876
image-20231015171927876

下一步,按图中的选,mybatis-plus3

image-20231016085127172
image-20231016085127172

生成的代码如下:

image-20231016085446663
image-20231016085446663

测试生成的代码是否可行:

image-20231016085553143
image-20231016085553143

来个头像链接:

暴龙战士
暴龙战士

再来一个小的单元测试:

    @Test
    void testAddUser() {
        User user = new User();
        user.setUsername("testuser");
        user.setUserAccount("123");
        user.setAvatarUrl("https://s2.loli.net/2023/10/16/QRiUYmDLB2vZuE6.webp");
        user.setGender(0);
        user.setUserPassword("123");
        user.setPhone("123");
        user.setEmail("123");
        boolean result = userService.save(user);
        System.out.println(user.getId());
        Assertions.assertEquals(true,result);
    }

注册逻辑

  1. 用户在前端输入账户,密码,校验码(todo )
  2. 校验用户的账户,密码,二次密码是否符合要求
    1. 账户不少于四位
    2. 密码不少于四位
    3. 账户不能重复
    4. 账户不包含特殊字符
    5. 其他的校验
  3. 对密码进行加密(密码不能明文存储)
  4. 向数据库插入用户数据

为了进行非空校验,可以使用commons lang库进行非空校验

maven依赖如下:

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>

前端注册传的数据DTO:

@Data
public class UserRegisterDto {
    private String userAccount;
    private String userPassword;
    private String checkPassword;
}

Serivce接口:

    /**
     * 用户注册
     * @param userRegisterDto 用户注册信息
     * @return 用户id
     */
    long userRegister(UserRegisterDto userRegisterDto);

实现注册方法:

重点逻辑,账户不能包含特殊字符

String validPattern = "^[a-zA-Z0-9_]+$";
Matcher matcher = Pattern.compile(validPattern).matcher(userAccount);
if (!matcher.find()) {
    return -1;
}

密码进行 md5加密:

final String SALT = "yunfei";
String encryptPassword = DigestUtils.md5DigestAsHex((SALT + userPassword).getBytes());

完整代码:

public long userRegister(UserRegisterDto userRegisterDto) {
    String userAccount = userRegisterDto.getUserAccount();
    String userPassword = userRegisterDto.getUserPassword();
    String checkPassword = userRegisterDto.getCheckPassword();
    if (StringUtils.isAnyBlank(userAccount, userPassword, checkPassword)) {
        return -1;
    }
    if (userAccount.length() < 4) {
        return -1;
    }
    if (userPassword.length() < 4 || checkPassword.length() < 4) {
        return -1;
    }

    //账户不能包含字符
    //账户不能包含特殊字符
    String validPattern = "^[a-zA-Z0-9_]+$";
    Matcher matcher = Pattern.compile(validPattern).matcher(userAccount);
    if (!matcher.find()) {
        return -1;
    }
    //密码和确认密码必须一致
    if (!userPassword.equals(checkPassword)) {
        return -1;
    }
    //账户不能重复
    QueryWrapper<User> userQueryWrapper = new QueryWrapper<>();
    userQueryWrapper.eq("userAccount", userAccount);
    long count = userMapper.selectCount(userQueryWrapper);
    if (count > 0) {
        return -1;
    }
    //加密
    final String SALT = "yunfei";
    String encryptPassword = DigestUtils.md5DigestAsHex((SALT + userPassword).getBytes());

    //插入数据
    User user = new User();
    user.setUserAccount(userAccount);
    user.setUserPassword(encryptPassword);
    int result = userMapper.insert(user);
    if (result < 1) {
        return -1;
    }
    return user.getId();
}

上次编辑于:
贡献者: yunfeidog