我正在尝试使用Ghost4j将一些PDF文件转换为PNG。这个库需要log4j才能工作,所以我在我的库中添加了log4j。
由于我的应用程序是动态Web项目,因此我将库添加到WEB-INF / lib文件夹中。
当我尝试在我的本地tomcat8服务器上运行该应用程序时,它记录了一些警告,例如:
log4j:WARN No appenders could be found for logger (org.ghost4j.Ghostscript).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
所以,在网上冲浪时,我发现我的应用程序中缺少log4j.properties文件。因此,我创建并将文件log4j.properties添加到WEB-INF / classes中(如stackoverflow的其他一些帖子所示)。通过此修复,我的locat tomcat8服务器上的应用程序运行顺利。
然而,当我尝试在远程tomcat8服务器上部署它时,应用程序不起作用。问题是它不会产生任何类型的异常,只会中断其工作。无论是否有log4j.properties文件,在远程tomcat8服务器上都没有区别:它只是停止在相同的"代码行"以前在我的本地服务器上记录了我之前写过的警告。
任何帮助都是相关的。
P.S。:转换代码非常简单。我发布它来完成我的问题:
private void createImages(String machine, String fileName){
LOGGER.warning("started creating images");
try{
PDFDocument document = new PDFDocument();
document.load(new File(DOCS_DIR + machine + "/" + fileName + ".pdf"));
String commonPath = IMGS_DIR + machine + "/" + fileName + "/";
Path path = Paths.get(new File(commonPath).getPath());
if(Files.notExists(path, LinkOption.NOFOLLOW_LINKS)){
new File(commonPath).mkdirs();
}
SimpleRenderer renderer = new SimpleRenderer();
renderer.setResolution(300);
renderer.setAntialiasing(SimpleRenderer.OPTION_ANTIALIASING_HIGH);
LOGGER.warning("IT STOPS HERE!!");
List<Image> images = renderer.render(document); // this is the line in which the execution of the program stops..
LOGGER.warning("pdf pages are: " + images.size());
for (int i = 0; i < images.size(); i++) {
Image img = images.get(i);
Image scaledImg = img.getScaledInstance(1200, -1, Image.SCALE_SMOOTH);
BufferedImage newImage = new BufferedImage(scaledImg.getWidth(null), scaledImg.getHeight(null), BufferedImage.TYPE_INT_ARGB);
Graphics2D g = newImage.createGraphics();
g.drawImage(scaledImg, 0, 0, null);
g.dispose();
String extension = ".png";
String imgName = commonPath + (i + 1) + extension;
LOGGER.warning("creating img n: " + (i+1) + " - creating img in folder: " + imgName);
ImageIO.write((RenderedImage) newImage, "png", new File(imgName));
}
LOGGER.warning("finished creating images!");
} catch(FileNotFoundException e){
LOGGER.warning("ERROR DOCUMENT SERVICE -- FileNotFoundException");
LOGGER.warning(e.printStackTrace());
} catch (IOException e) {
LOGGER.warning("ERROR DOCUMENT SERVICE -- IOException");
LOGGER.warning(e.printStackTrace());
} catch (RendererException e) {
LOGGER.warning("ERROR DOCUMENT SERVICE -- RendererException");
LOGGER.warning(e.printStackTrace());
} catch (DocumentException e) {
LOGGER.warning("ERROR DOCUMENT SERVICE -- DocumentException");
LOGGER.warning(e.printStackTrace());
} catch (Exception e){
LOGGER.warning("ERROR DOCUMENT SERVICE -- Exception");
LOGGER.warning(e.printStackTrace());
}
}
答案 0 :(得分:0)
最后我自己找到了解决方案。
问题与log4j没有任何关系,但它无法正常工作,因为它在服务器上缺少Ghostscript。
在服务器上安装Ghostscript后,一切正常。