我可以不吃啊 发表于 2024-12-25 16:23:16

tomcat temp临时文件不清空,占用硬盘,jdk字体内存走漏

JSP老旧项目迁徙过来的代码,天生海报,会读取图片,读取字体文件,绘制图片,会天生大量临时文件,内存走漏。
方案一,服务器定时删除temp临时文件夹
方案二,图片、字体改用静态类读取文件,并且开释相关资源文件。
https://i-blog.csdnimg.cn/direct/fc4608a1b10a4915a2e69256b1f82771.png#pic_center
导致缘故原由
https://i-blog.csdnimg.cn/direct/f1cc472d3aef4dcd928331f2f795f2fa.png
package com.huida.train.utils;

import org.springframework.core.io.ClassPathResource;
import org.springframework.stereotype.Component;

import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.IOException;

@Component
public class ResourceUtil {
    // 使用volatile保证多线程环境下的可见性,防止指令重排
    private static volatile BufferedImage activityShareBannerImage;
    private static volatile Font sourceHanSansFont;
    private static volatile BufferedImage backgroundImage;
    private static volatile Font rdFont;

    /**
   * 方正小标宋字体
   */
    private static volatile Font fzxbsjwFont;

    /**
   * 方正黑体
   */
    private static volatile Font htFont;

    /**
   * 仿宋
   */
    private static volatile Font fsFont;

    private static volatile BufferedImage bottomTextImg;


    private ResourceUtil() {
      // 私有构造函数,防止外部实例化
    }
    public static BufferedImage getBottomTextImg() {
      if (bottomTextImg == null) {
            synchronized (ResourceUtil.class) {
                if (bottomTextImg == null) {
                  try {
                        ClassPathResource resource = new ClassPathResource("static/qr/bottomText.png");
                        bottomTextImg = ImageIO.read(resource.getInputStream());
                  } catch (IOException e) {
                        throw new RuntimeException(e);
                  }
                }
            }
      }
      return bottomTextImg;
    }

    public static Font getFsFont() {
      if (fsFont == null) {
            synchronized (ResourceUtil.class) {
                if (fsFont == null) {
                  try {
                        ClassPathResource fsFontResource = new ClassPathResource("static/font/fs_gbk.TTF");
                        fsFont = Font.createFont(Font.TRUETYPE_FONT, fsFontResource.getInputStream());
                  } catch (IOException | FontFormatException e) {
                        throw new RuntimeException(e);
                  }
                }
            }
      }
      return fsFont;
    }
    public static Font getHtFont() {
      if (htFont == null) {
            synchronized (ResourceUtil.class) {
                if (htFont == null) {
                  try {
                        ClassPathResource fsFontResource = new ClassPathResource("static/font/ht.TTF");
                        htFont = Font.createFont(Font.TRUETYPE_FONT, fsFontResource.getInputStream());
                  } catch (IOException | FontFormatException e) {
                        throw new RuntimeException(e);
                  }
                }
            }
      }
      return htFont;
    }

    public static Font getFzxbsjwFont() {
      if (fzxbsjwFont == null) {
            synchronized (ResourceUtil.class) {
                if (fzxbsjwFont == null) {
                  try {
                        ClassPathResource fsFontResource = new ClassPathResource("static/font/FZXBSJW.TTF");
                        fzxbsjwFont = Font.createFont(Font.TRUETYPE_FONT, fsFontResource.getInputStream());
                  } catch (IOException | FontFormatException e) {
                        throw new RuntimeException(e);
                  }
                }
            }
      }
      return fzxbsjwFont;
    }
    public static Font getSimsunFont() {
      if (rdFont == null) {
            synchronized (ResourceUtil.class) {
                if (rdFont == null) {
                  try {
                        ClassPathResource fsFontResource = new ClassPathResource("static/font/simsun.ttf");
                        rdFont = Font.createFont(Font.TRUETYPE_FONT, fsFontResource.getInputStream());
                  } catch (IOException | FontFormatException e) {
                        throw new RuntimeException(e);
                  }
                }
            }
      }
      return rdFont;
    }

    public static BufferedImage getBackgroundImage() {
      if (backgroundImage == null) {
            synchronized (ResourceUtil.class) {
                if (backgroundImage == null) {
                  try {
                        ClassPathResource resource = new ClassPathResource("static/qr/backgroundImage.png");
                        backgroundImage = ImageIO.read(resource.getInputStream());
                  } catch (IOException e) {
                        throw new RuntimeException(e);
                  }
                }
            }
      }
      return backgroundImage;
    }

    public static BufferedImage getActivityShareBannerImage() {
      if (activityShareBannerImage == null) {
            synchronized (ResourceUtil.class) {
                if (activityShareBannerImage == null) {
                  try {
                        ClassPathResource resource = new ClassPathResource("static/qr/activity_share_banner.png");
                        activityShareBannerImage = ImageIO.read(resource.getInputStream());
                  } catch (IOException e) {
                        throw new RuntimeException(e);
                  }
                }
            }
      }
      return activityShareBannerImage;
    }

    public static Font getSourceHanSansFont() {
      if (sourceHanSansFont == null) {
            synchronized (ResourceUtil.class) {
                if (sourceHanSansFont == null) {
                  try {
                        ClassPathResource fsFontResource = new ClassPathResource("static/font/SourceHanSans-Regular.otf");
                        sourceHanSansFont = Font.createFont(Font.TRUETYPE_FONT, fsFontResource.getInputStream());
                  } catch (IOException | FontFormatException e) {
                        throw new RuntimeException(e);
                  }
                }
            }
      }
      return sourceHanSansFont;
    }
}

@Override
    public String getStrainingShareCode2(Map<String, String> map) throws IOException, FontFormatException {
      String trainingCourseId = map.get("trainingCourseId");
      TrainingCourse trainingCoursePo = trainingCourseMapper.select(trainingCourseId);
      if (trainingCoursePo == null) {
            throw new TipUserException("活动-培训已被删除或不可见");
      }
      BufferedImage activityShareBannerImage = ResourceUtil.getActivityShareBannerImage();
      // 开启画图
      Graphics2D graphics = activityShareBannerImage.createGraphics();
      //字体样式
      Font font = ResourceUtil.getSourceHanSansFont().deriveFont(Font.BOLD, 27);
      //字体颜色
      float[] color = Color.RGBtoHSB(58, 58, 58, null);
      graphics.setColor(Color.getHSBColor(color, color, color));
      graphics.setFont(font);
      String address = "";
      //地点
      if (trainingCoursePo.getAddress().length() >= 16) {
            address = trainingCoursePo.getAddress().subSequence(0, 14) + "...";
      } else {
            address = trainingCoursePo.getAddress();
      }
      drawWrapString(graphics, address, 50, 220, activityShareBannerImage.getWidth() - 100, null, null);
      //时间
      drawWrapString(graphics, DateUtils.dateTime(trainingCoursePo.getStartTime()) + " ~ " + DateUtils.dateTime(trainingCoursePo.getEndTime()), 50, 275, activityShareBannerImage.getWidth() - 100, null, null);
      //报名人数
      Long enrollNum = trainingCoursePo.getEnrollNum();
      if (ObjectUtils.isNull(enrollNum)) {
            enrollNum = 0L;
      }
      drawWrapString(graphics, enrollNum.toString() + "人报名", 50, 330, activityShareBannerImage.getWidth() - 100, null, null);
//      String base64 = ImgUtil.toBase64DataUri(activityShareBannerImage, "png");
//      return base64;
      // 指定文件路径
      String filePath = HuiDaConfig.getTrainUploadPath() + "/shareCode/" + trainingCoursePo.getRecordId() + "/" + trainingCoursePo.getRecordId() + "_" + enrollNum + ".png";
      File outputfile = new File(filePath);
      if (!outputfile.exists()) {
            String deleteFilePath = HuiDaConfig.getTrainUploadPath() + "/shareCode/" + trainingCoursePo.getRecordId();
            File deleteFileFile = new File(deleteFilePath);
            FileUtils.deleteDirectory(deleteFileFile);
            File parentDir = outputfile.getParentFile();
            if (!parentDir.exists()) {
                parentDir.mkdirs();
            }
            ImageIO.write(activityShareBannerImage, "png", outputfile);
      }
      activityShareBannerImage.flush();
      graphics.dispose();
      return filePath;
    }

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: tomcat temp临时文件不清空,占用硬盘,jdk字体内存走漏