springmvc에서 로그인 인증 코드 기능 구현 예시
인증 코드 이미지를 클릭할 때 jquery를 통해 백그라운드에서 인증 코드 이미지를 생성하는 방법을 다시 요청하고 그림을 교체합니다.
우선 백엔드 컨트롤러에서 다음과 같은 방법이 있습니다.
경로http://localhost:8888/RiXiang_blog/login/captcha.form이 경로에 접근하면response를 통해 그림을 쓸 수 있습니다.
@RequestMapping(value = "/captcha", method = RequestMethod.GET)
@ResponseBody
public void captcha(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException
{
CaptchaUtil.outputCaptcha(request, response);
}
CaptchaUtil은 인증코드 이미지 생성과 session 저장 기능을 봉인하는 도구 클래스입니다.코드는 다음과 같습니다.
package com.util;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
/**
* @ClassName: CaptchaUtil
* @Description:
* @author
* @date 2016-5-7 8:33:08
* @version 1.0
*/
public final class CaptchaUtil
{
private CaptchaUtil(){}
/*
*
*/
private static final char[] CHARS = { '2', '3', '4', '5', '6', '7', '8',
'9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M',
'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z' };
/*
*
*/
private static Random random = new Random();
/*
* 6
*/
private static String getRandomString()
{
StringBuffer buffer = new StringBuffer();
for(int i = 0; i < 6; i++)
{
buffer.append(CHARS[random.nextInt(CHARS.length)]);
}
return buffer.toString();
}
/*
*
*/
private static Color getRandomColor()
{
return new Color(random.nextInt(255),random.nextInt(255),
random.nextInt(255));
}
/*
*
*/
private static Color getReverseColor(Color c)
{
return new Color(255 - c.getRed(), 255 - c.getGreen(),
255 - c.getBlue());
}
public static void outputCaptcha(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException
{
response.setContentType("image/jpeg");
String randomString = getRandomString();
request.getSession(true).setAttribute("randomString", randomString);
int width = 100;
int height = 30;
Color color = getRandomColor();
Color reverse = getReverseColor(color);
BufferedImage bi = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics2D g = bi.createGraphics();
g.setFont(new Font(Font.SANS_SERIF, Font.BOLD, 16));
g.setColor(color);
g.fillRect(0, 0, width, height);
g.setColor(reverse);
g.drawString(randomString, 18, 20);
for (int i = 0, n = random.nextInt(100); i < n; i++)
{
g.drawRect(random.nextInt(width), random.nextInt(height), 1, 1);
}
// JPEG
ServletOutputStream out = response.getOutputStream();
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
encoder.encode(bi);
out.flush();
}
}
프런트엔드에서 인증 코드 이미지를 가져옵니다. 이렇게 쓰십시오.
……
<tr>
<th>captcha</th>
<td>
<input type="text" id="captcha" name="captcha" class="text" maxlength="10" />
<img id="captchaImage" src="captcha.form"/>
</td>
</tr>
img의 src에 경로를 작성하면 페이지가 불러올 때 접근합니다http://localhost:8888/RiXiang_blog/login/captcha.form그림을 가져옵니다.표의 제출과 로그인 정보 검증은 구체적으로 말하지 않는다.
인증 코드를 바꾸는 js 코드를 누르면 다음과 같습니다.
//
$('#captchaImage').click(function()
{
$('#captchaImage').attr("src", "captcha.form?timestamp=" + (new Date()).valueOf());
});
뒤에 타임 스탬프를 매개 변수로 사용할 수 있습니다. timestamp = "+ (new Date ().value Of ()". 이 매개 변수를 추가하면 백그라운드에 다시 접근할 수 있습니다. 그렇지 않으면 그림을 새로 고칠 수 없습니다.이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
springmvc application/octet-stream problemmistake: Source code: Solution: Summarize: application/octet-stream is the original binary stream method. If the convers...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.