log4j 在具有 log4j.properties 文件的 Tomcat8 服务器上不起作用



我正在尝试使用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帖子所建议的那样(。通过此修复,我的定位 tomcat8 服务器上的应用程序运行平稳。

同时,当我尝试将其部署在远程 tomcat8 服务器上时,该应用程序不起作用。问题是它不会产生任何类型的异常,它只是中断它的工作。无论有没有 log4j.properties 文件,在远程 tomcat8 服务器上都没有区别:它只是停止在相同的"代码行"上运行,之前在我的本地服务器上记录我之前写的警告。

任何帮助都值得赞赏。

PS:转换代码非常简单。我发布它以完成我的问题:

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());
}
}

最后我自己找到了解决方案。

该问题与log4j没有任何关系,但是由于服务器上缺少Ghostscript,因此无法正常工作。

在服务器上安装 Ghostscript 后,一切正常。

相关内容

  • 没有找到相关文章

最新更新