SpringBoot 로그 인 인증 코드 구현 과정 상세 설명

오늘 인증 코드 의 실현 을 기록 해 드 리 겠 습 니 다.여러분 께 도움 이 되 셨 으 면 좋 겠 습 니 다!
우선 실현 효 과 를 살 펴 보 자.

이 인증 코드 의 실현 은 플러그 인 을 많이 사용 하지 않 았 습 니 다.더 이상 말 하지 않 고 코드 를 직접 올 리 면 사용 할 수 있 습 니 다.
중간 에 org.apache.comons.lang 3.RandomUtils 도구 류 를 사 용 했 습 니 다.pom 설정 이 필요 합 니 다:

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
      <version>3.10</version>
    </dependency>
1.인증번호 클래스

package com.youyou.login.util.validatecode;

import lombok.Data;

/**
*     
*/
public class VerifyCode {
  private String code;
  private byte[] imgBytes;
  private long expireTime;
  public String getCode() {
    return code;
  }
  public void setCode(String code) {
    this.code = code;
  }
  public byte[] getImgBytes() {
    return imgBytes;
  }
  public void setImgBytes(byte[] imgBytes) {
    this.imgBytes = imgBytes;
  }
  public long getExpireTime() {
    return expireTime;
  }
  public void setExpireTime(long expireTime) {
    this.expireTime = expireTime;
  }

}
2.인증번호 생 성 인터페이스

package com.youyou.login.util.validatecode;

import java.io.IOException;
import java.io.OutputStream;

/**
*        
*/
public interface IVerifyCodeGen {

/**
*         code,     os 
*
* @param width
* @param height
* @param os
* @return
* @throws IOException
*/
String generate(int width, int height, OutputStream os) throws IOException;

/**
*        
*
* @param width
* @param height
* @return
* @throws IOException
*/
VerifyCode generate(int width, int height) throws IOException;
}
3.인증 코드 생 성 실현 클래스

package com.youyou.login.util.validatecode;
import com.youyou.util.RandomUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Random;
/**
*       
*/
public class SimpleCharVerifyCodeGenImpl implements IVerifyCodeGen {
	private static final Logger logger = LoggerFactory.getLogger(SimpleCharVerifyCodeGenImpl.class);
	private static final String[] FONT_TYPES = { "u5b8bu4f53", "u65b0u5b8bu4f53", "u9ed1u4f53", "u6977u4f53", "u96b6u4e66" };
	private static final int VALICATE_CODE_LENGTH = 4;
	/**
*          ,   
*
* @param graphics
* @param width
* @param height
*/
	private static void fillBackground(Graphics graphics, int width, int height) {
		//     
		graphics.setColor(Color.WHITE);
		//      x y  0
		graphics.fillRect(0, 0, width, height);
		//       
		for (int i = 0; i < 8; i++) {
			//          
			graphics.setColor(RandomUtils.randomColor(40, 150));
			Random random = new Random();
			int x = random.nextint(width);
			int y = random.nextint(height);
			int x1 = random.nextint(width);
			int y1 = random.nextint(height);
			graphics.drawLine(x, y, x1, y1);
		}
	}
	/**
*       
*
* @param width
* @param height
* @param os
* @return
* @throws IOException
*/
	@Override
	public String generate(int width, int height, OutputStream os) throws IOException {
		BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
		Graphics graphics = image.getGraphics();
		fillBackground(graphics, width, height);
		String randomStr = RandomUtils.randomString(VALICATE_CODE_LENGTH);
		createCharacter(graphics, randomStr);
		graphics.dispose();
		//  JPEG  
		ImageIO.write(image, "JPEG", os);
		return randomStr;
	}
	/**
*      
*
* @param width
* @param height
* @return
*/
	@Override
	public VerifyCode generate(int width, int height) {
		VerifyCode verifyCode = null;
		try (
		//                   
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
		) {
			String code = generate(width, height, baos);
			verifyCode = new VerifyCode();
			verifyCode.setCode(code);
			verifyCode.setImgBytes(baos.toByteArray());
		}
		catch (IOException e) {
			logger.error(e.getMessage(), e);
			verifyCode = null;
		}
		return verifyCode;
	}
	/**
*         
*
* @param g
* @param randomStr
*/
	private void createCharacter(Graphics g, String randomStr) {
		char[] charArray = randomStr.toCharArray();
		for (int i = 0; i < charArray.length; i++) {
			//  RGB      
			g.setColor(new Color(50 + RandomUtils.nextint(100),
			+ RandomUtils.nextint(100), 50 + RandomUtils.nextint(100)));
			//      ,  
			g.setFont(new Font(FONT_TYPES[RandomUtils.nextint(FONT_TYPES.length)], Font.BOLD, 26));
			//  x y   
			g.drawString(String.valueOf(charArray[i]), 15 * i + 5, 19 + RandomUtils.nextint(8));
		}
	}
}
4.도구 류

package com.youyou.util;
import java.awt.*;
import java.util.Random;
public class RandomUtils extends org.apache.commons.lang3.RandomUtils {
	private static final char[] CODE_SEQ = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J',
	'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
	'X', 'Y', 'Z', '2', '3', '4', '5', '6', '7', '8', '9' };
	private static final char[] NUMBER_ARRAY = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };
	private static Random random = new Random();
	public static String randomString(int length) {
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < length; i++) {
			sb.append(String.valueOf(CODE_SEQ[random.nextint(CODE_SEQ.length)]));
		}
		return sb.toString();
	}
	public static String randomNumberString(int length) {
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < length; i++) {
			sb.append(String.valueOf(NUMBER_ARRAY[random.nextint(NUMBER_ARRAY.length)]));
		}
		return sb.toString();
	}
	public static Color randomColor(int fc, int bc) {
		int f = fc;
		int b = bc;
		Random random = new Random();
		if (f > 255) {
			f = 255;
		}
		if (b > 255) {
			b = 255;
		}
		return new Color(f + random.nextint(b - f), f + random.nextint(b - f), f + random.nextint(b - f));
	}
	public static int nextint(int bound) {
		return random.nextint(bound);
	}
}
상기 코드 를 통 해 우리 의 인증 코드 생 성 기능 은 기본적으로 이미 실현 되 었 으 며,지금 은 controller 가 그것 을 호출 해 야 한다.

@ApiOperation(value = "   ")
@GetMapping("/verifyCode")
public void verifyCode(HttpServletRequest request, HttpServletResponse response) {
	IVerifyCodeGen iVerifyCodeGen = new SimpleCharVerifyCodeGenImpl();
	try {
		//    
		VerifyCode verifyCode = iVerifyCodeGen.generate(80, 28);
		String code = verifyCode.getCode();
		LOGGER.info(code);
		// VerifyCode  session
		request.getSession().setAttribute("VerifyCode", code);
		//     
		response.setHeader("Pragma", "no-cache");
		//     
		response.setHeader("Cache-Control", "no-cache");
		//           
		response.setDateHeader("Expires", 0);
		//        
		response.setContentType("image/jpeg");
		response.getOutputStream().write(verifyCode.getImgBytes());
		response.getOutputStream().flush();
	}
	catch (IOException e) {
		LOGGER.info("", e);
	}
}
해결!백 스테이지 작성 은 여기까지 입 니 다.그러면 또 어떤 블 로 거들 이"약속 한 실현 효 과 는?"라 고 말 할 것 이다.
좋 습 니 다.그럼 전단 의 코드 를 계속 작성 하 겠 습 니 다.
전단 코드:

<html>
<body>

<div>
<input id="code" placeholder="   " type="text" class=""
style="width:170px">
<!--        -->
<img οnclick="javascript:getvCode()" id="verifyimg" style="margin-left: 20px;"/>
</div>

<script type="text/javascript">
getvCode();

/**
*      
*       login.html   id = verifyimg    
*/
function getvCode() {
document.getElementById("verifyimg").src = timestamp("http://127.0.0.1:81/verifyCode");
}
// url     
function timestamp(url) {
var getTimestamp = new Date().getTime();
if (url.indexOf("?") > -1) {
url = url + "&timestamp=" + getTimestamp
} else {
url = url + "?timestamp=" + getTimestamp
}
return url;
};
</script>
</body>

</html>
그림 을 클릭 하여 인증 코드 를 바 꿀 수 있 습 니 다.
구현 효과:

물론 글 의 첫머리 캡 처 는 제 시스템 의 캡 처 입 니 다.여러분 스스로 자신의 상황 에 따라 전단 을 개발 해 야 합 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기