Springboot初始化项目并完成登入注册的全过程
作者:万伏小太阳 时间:2023-07-31 15:09:09
idea spring Initializr创建项目
勾选项目所需要的依赖
pom.xml
文件会加载勾选的依赖,也可以不勾选后面通过自己常用的pom.xml
统一导入。
Lombok 可以通过注解省去一些get,set方法。
简单项目常用pom.xml:
mybatis-plus、mybatis、
整体项目结构
创建User实体类放入Enity下
@TableName("user")
是实体对应的表的名字
@TableId(type = IdType.AUTO)
表的主键
@TableField(exist = false)
不存在,就不会返回空。
package com.example.community.enity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName("user")
public class User {
@TableId(type = IdType.AUTO)
private Integer userId;
private String email;
private String username;
private String password;
private String avatar;
private String phone;
@TableField(exist = false)
private String code;
public User(String email, String password) {
this.email = email;
this.password = password;
}
}
创建通用返回的结果类
可以使用泛型传入对应的实体类,这里我就不传了。
package com.example.community.common;
import lombok.Data;
@Data
public class R {
private Integer code;
private String msg;
private Object data;
public R(Integer code, String msg, Object ob) {
this.code = code;
this.msg = msg;
this.data = ob;
}
public R(Integer code, String msg) {
this.code = code;
this.msg = msg;
}
public static R success(String msg){
R r= new R(1,msg);
return r;
}
public static R success(String msg,Object ob){
R r= new R(1,msg,ob);
return r;
}
public static R error(String msg){
R r= new R(0,msg,null);
return r;
}
}
创建controller
在controller里可以对前端的请求进行一个分发,处理。根据地址链接找到对应的controller。
登入模块,可以创建一个UserController
处理用户的相关信息。
package com.example.community.controller;
import com.example.community.common.R;
import com.example.community.enity.User;
import com.example.community.service.UserService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpSession;
import java.util.Map;
@Slf4j
@RestController()
@RequestMapping("/user")
@CrossOrigin(origins = {"http://localhost:8090", "null"})
public class UserController {
@Autowired
UserService service;
@PostMapping("/login")
public R login(@RequestBody User user) {
log.info("user"+user.toString());
return service.login(user.getEmail(), user.getPassword());
}
@PostMapping("/register")
@ResponseBody
public R register(@RequestBody Map
创建service层
service
层给controller
层提供服务,调用dao
层mapper
查询数据库的数据,提供相对应的服务。
在这里我是用了mybtis-plus
来进行数据库简单的查询。
用户模块的service层代码:
UserService
接口
继承mybatis-plus
的IService
package com.example.community.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.example.community.common.R;
import com.example.community.enity.User;
public interface UserService extends IService
UserService
实现类
在这个类中,调用了mapper提供的方法。
继承ServiceImpl
package com.example.community.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.example.community.Mapper.UserMapper;
import com.example.community.common.R;
import com.example.community.enity.User;
import com.example.community.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class UserServiceImpl extends ServiceImpl
创建Mapper / Dao层
使用了mybatis-plus
,所以只需要继承BaseMapper
既可。
package com.example.community.Mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.example.community.enity.User;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface UserMapper extends BaseMapper
邮箱验证码、生成Token
使用邮箱进行登入验证码验证
使用
jwt
生成token
返回给前端,服务端可以用来判断用户是否登入。并且支持跨域
实现这两个功能需要使用到一些工具类和配置,如下:
package com.example.community.utils;
import io.jsonwebtoken.Jwt;
import io.jsonwebtoken.JwtBuilder;
import io.jsonwebtoken.Jwts;
import io.jsonwebtoken.SignatureAlgorithm;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
public class JWTUtils {
private static final String jwtToken = "123456Mszlu!@#$$";
public static String createToken(Long userId) {
Map
* 的配置
package com.example.community.handler;
import com.alibaba.druid.util.StringUtils;
import com.example.community.common.R;
import com.example.community.utils.JsonUtil;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import org.springframework.web.method.HandlerMethod;
import org.springframework.web.servlet.HandlerInterceptor;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@Component
@Slf4j
public class LoginInterceptor implements HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response,Object handler) throws Exception{
log.info("请求被拦截{}",request);
if(!(handler instanceof HandlerMethod)){
return true;
}
String token = request.getHeader("Authorization");
log.info("token:{}",token);
if(StringUtils.isEmpty(token)){
R r= R.error("未登录");
response.setContentType("application/json;charset=utf-8");
log.info("{}",r);
response.getWriter().print(JsonUtil.objectToJson(r));
return false;
}
return true;
}
}
package com.example.community.config;
import com.example.community.handler.LoginInterceptor;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
@Override
public void addInterceptors(InterceptorRegistry registry) {
// 用户 *
registry.addInterceptor(new LoginInterceptor())
// 需要拦截的请求
.addPathPatterns("/user/**","/article/**")
// 需要放行的请求
.excludePathPatterns("/user/login","/user/register","/mail/**")
// 添加swagger-ui的放行路径
.excludePathPatterns("/swagger-resources/**", "/webjars/**", "/v2/**", "/swagger-ui.html/**", "/doc.html/**")
;
}
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOriginPatterns("*")
.allowedMethods("POST", "GET", "PUT", "OPTIONS", "DELETE")
.maxAge(3600)
.allowCredentials(true);
}
}
实现邮箱认证登入,之前写过一个,传送门
来源:https://blog.csdn.net/weixin_51009975/article/details/127510534
标签:springboot,初始化项目,注册
0
投稿
猜你喜欢
android实现okHttp的get和post请求的简单封装与使用
2023-10-06 04:20:25
Android自定义View仿大众点评星星评分控件
2023-07-22 22:37:28
微信小程序支付C#后端源码
2023-11-21 15:06:29
C#实现xml文件反序列化读入数据到object的方法
2023-08-20 00:43:08
详解Android中AsyncTask的使用方法
2023-10-08 04:24:51
java实现文件上传下载和图片压缩代码示例
2023-01-02 17:49:30
Java实现多线程断点下载
2022-04-27 00:29:16
Android.bp语法和使用方法讲解
2022-09-29 19:31:19
Java如何在沙箱环境中测试支付宝支付接口
2023-11-02 14:55:15
Spring boot+mybatis+thymeleaf 实现登录注册增删改查功能的示例代码
2023-10-05 04:20:53
详解JDK自带javap命令反编译class文件和Jad反编译class文件(推荐使用jad)
2021-12-24 00:29:29
c# Struct的一些问题分析
2023-08-31 08:27:36
浅析Java中线程的创建和启动
2022-12-29 17:37:41
Java JDK 动态 代理的使用方法示例
2023-08-23 08:12:52
Java SpringCache+Redis缓存数据详解
2023-11-29 01:01:05
Java 实现订单未支付超时自动取消功能(京东商城为例)
2023-04-20 17:08:06
简单谈谈JVM、JRE和JDK的区别与联系
2023-04-20 17:14:51
java中ConcurrentHashMap的读操作为什么不需要加锁
2021-10-07 18:30:44
C#抓取当前屏幕并保存为图片的方法
2023-09-27 08:39:43
Android PowerManagerService省电模式策略控制
2023-11-25 02:46:53