当前位置:   article > 正文

Spring Boot整合zxing实现二维码登录

Spring Boot整合zxing实现二维码登录

zxing是google的一个二维码生成库,使用时需配置依赖:

  1. implementation("com.google.zxing:core:3.4.1")
  2. implementation("com.google.zxing:javase:3.4.1")

zxing的基本使用

我们可以通过MultiFormatWriter().encode()方法获取一个matrix对象:

val matrix = MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, width, height, hint)

这个方法接受5个参数,按照顺序解释如下:

  1. 二维码的字符串内容
  2. 格式,如要生成二维码,则需传入BarcodeFormat.QR_CODE
  3. 二维码宽度(像素)
  4. 二维码高度(像素)
  5. 二维码的属性

其中,第5个参数需要传入一个HashMap对象:

  1. private val hint = mapOf(
  2. // 误差校正等级
  3. EncodeHintType.ERROR_CORRECTION to ErrorCorrectionLevel.M,
  4. // 字符集
  5. EncodeHintType.CHARACTER_SET to "UTF-8",
  6. // 外边框像素
  7. EncodeHintType.MARGIN to 5
  8. )

需要指定三个键,第一个键的值是误差校正等级,在ErrorCorrectionLevel枚举中,有如下选择:

  • L:可以校正7%
  • M:可以校正15%
  • Q:可以校正25%
  • H:可以校正30%

误差校正等级的存在,可以使二维码被遮挡时,仍然能够被正常扫描。一般来说,误差校正等级越大,二维码就越大

第二个键是字符集,一般用UTF-8即可

第三个键是外边框的像素大小

整合Spring Boot

首先我们需要有一个二维码生成的工具类,可以生成将二维码并将二维码输出至一个输出流:

  1. package com.example.qrcode.util
  2. import com.google.zxing.BarcodeFormat
  3. import com.google.zxing.EncodeHintType
  4. import com.google.zxing.MultiFormatWriter
  5. import com.google.zxing.client.j2se.MatrixToImageWriter
  6. import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel
  7. import java.io.OutputStream
  8. object QRUtil {
  9. private val width = 400
  10. private val height = 400
  11. private val hint = mapOf(
  12. // 误差校正等级
  13. EncodeHintType.ERROR_CORRECTION to ErrorCorrectionLevel.M,
  14. // 字符集
  15. EncodeHintType.CHARACTER_SET to "UTF-8",
  16. // 外边框像素
  17. EncodeHintType.MARGIN to 5
  18. )
  19. /**
  20. * 创建二维码并写入到输出流
  21. * @param content 二维码内容
  22. * @param outputStream 输出流
  23. * */
  24. fun writeCodeIntoStream(content: String, outputStream: OutputStream){
  25. val matrix = MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, width, height, hint)
  26. MatrixToImageWriter.writeToStream(matrix, "png", outputStream)
  27. }
  28. }

接下来我们需要一个控制器类,提供电脑生成二维码的登录接口,手机扫描二维码使设备登录的接口,和手机扫描二维码后,电脑登陆成功,跳转的接口:

  1. package com.example.qrcode.controller
  2. import com.example.qrcode.util.QRUtil
  3. import jakarta.servlet.http.HttpServletRequest
  4. import jakarta.servlet.http.HttpServletResponse
  5. import jakarta.servlet.http.HttpSession
  6. import org.springframework.web.bind.annotation.PathVariable
  7. import org.springframework.web.bind.annotation.RequestMapping
  8. import org.springframework.web.bind.annotation.RestController
  9. import java.net.URL
  10. @RestController
  11. class QRLoginController {
  12. val idLogin = HashMap<String, Boolean>()
  13. @RequestMapping("/QR/login")
  14. fun login(request: HttpServletRequest, response: HttpServletResponse, session: HttpSession){
  15. if (idLogin.containsKey(session.id) && idLogin[session.id] == true){
  16. response.sendRedirect("/QR/login/down")
  17. return
  18. }
  19. response.setIntHeader("Refresh", 1)
  20. val strUrl = request.requestURL.toString()
  21. val url = URL(strUrl)
  22. val host = url.host
  23. val pro = url.protocol
  24. QRUtil.writeCodeIntoStream("$pro://$host/QR/login/${session.id}", response.outputStream)
  25. }
  26. @RequestMapping("/QR/login/{id}")
  27. fun loginByID(@PathVariable("id") id: String): String{
  28. idLogin[id] = true
  29. return "登录中"
  30. }
  31. @RequestMapping("/QR/login/down")
  32. fun loginDown(): String{
  33. return "登录成功"
  34. }
  35. }

在/QR/login接口中,我们首先判断当前会话是否已经被人扫了二维码,如果是,则重定向到/QR/login/down接口中;而如果不是,则会通过设置响应头"Refresh"参数,使电脑浏览器端每个一秒刷新一下,并向电脑输出一个二维码,手机扫描这个二维码后,将会前往/QR/login/{id}接口,并通过可变的URL路径,将id传入。

在/QR/login/{id}接口中,将会将传入的id的登录状态设置为真。这样的话,电脑端访问的/QR/login接口就会跳转至/QR/login/down接口

要注意,这里面的实现方式不是正常的实现方式。正常的实现方式应通过前端的脚本语言实现登录状态的刷新。但是因为我们没有前端,所以采用了这种方法

由于手机扫描二维码时,不会指定访问端口,因此需要在application.properties中,配置服务器的端口:

server.port=80

测试一下

使用浏览器访问http://[你的IP地址]/QR/login,注意,这里不能通过127.0.0.1或localhost访问,因为需要手机和电脑两个设备访问

这时,浏览器会显示一个二维码(CSDN可能不让上传二维码,因此进行了手动打码):

接下来使用手机扫描这个二维码,会发现浏览器成功的跳转到了登录成功的页面:

 因此,我们的二维码登录就成功实现了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/224731?site
推荐阅读
相关标签
  

闽ICP备14008679号