记一次阿里云生产环境发布,中文验证码乱码的问题排查
程序员文章站
2022-03-09 22:16:27
...
前言
因近期多次发现生产环境短信服务多次被恶意攻击,为防止此事件再次发生,故进行本次验证码升级,降低被自动识别的成功率
问题场景
本次采用中文算数验证码,在本地开发环境和测试环境验证码都显示正常(测试环境也是阿里云服务器),当部署到生产环境后,进行更新内容验证时,发现验证码乱码。
问题排查(一)
查看线上服务器环境是否和本地一致,经过检查,都一致,排除环境不一致所导致的
问题排查(二)
查看服务器字符编码是否为UTF-8,结果即UTF-8
问题排查(三)
进行代码排查,查看验证码生成的工具类,发现Graphics2D在渲染图片的时候,设置了字体(Font),
如下面代码所示
public void drawRandomString(Graphics2D g,String randomvcch,int i){
//Set the string font style
g.setFont(font);
//Set the color string
int rc = random.nextInt(255);
int gc = random.nextInt(255);
int bc = random.nextInt(255);
g.setColor(new Color(rc, gc, bc));
//random string
//Set picture in the picture of the text on the x, y coordinates, random offset value
int x = random.nextInt(3);
int y = random.nextInt(2);
g.translate(x, y);
//Set the font rotation angle
int degree = new Random().nextInt() % 15;
//Positive point of view
g.rotate(degree * Math.PI / 180, 5+i*25, 20);
//Character spacing is set to 15 px
//Using the graphics context of the current font and color rendering by the specified string for a given text.
//The most on the left side of the baseline of the characters in the coordinate system of the graphics context (x, y) location
//str- to draw string.x - x coordinate.y - y coordinate.
g.drawString(randomvcch, 5+i*25, 20);
//Reverse Angle
g.rotate(-degree * Math.PI / 180, 5+i*25, 20);
}
怀疑缺少中文字体,接下来查看服务器上是否有中文字体,发现果然缺少中文字体,然后进行中文字体安装,进行验证,验证码显示正常了,问题解决!!