Browse Source

设置pdfbox兼容低版本jdk

encoding
chenkailing 4 years ago committed by kl
parent
commit
01218e4a5c
  1. 7
      jodconverter-web/src/main/java/cn/keking/FilePreviewApplication.java

7
jodconverter-web/src/main/java/cn/keking/FilePreviewApplication.java

@ -9,7 +9,14 @@ import org.springframework.scheduling.annotation.EnableScheduling;
@EnableScheduling
@ComponentScan(value = "cn.keking.*")
public class FilePreviewApplication {
public static void main(String[] args) {
FilePreviewApplication.staticInitSystemProperty();
SpringApplication.run(FilePreviewApplication.class, args);
}
private static void staticInitSystemProperty(){
//pdfbox兼容低版本jdk
System.setProperty("sun.java2d.cmm", "sun.java2d.cmm.kcms.KcmsServiceProvider");
}
}

Loading…
Cancel
Save