我有一个使用TreeTagger的Java应用程序(Ninja框架)。 TreeTagger的根目录是通过环境变量TREETAGGER_HOME设置的。当我通过忍者运行应用程序时,一切正常,但是,当我将war文件部署到tomcat时,它无法找到Tree Tagger二进制文件:

java.lang.RuntimeException: java.io.IOException: Unable to locate tree-tagger binary in the following locations [/home/jarino/treetagger/bin/tree-tagger]. Make sure the environment variable 'TREETAGGER_HOME' or 'TAGDIR' or the system property 'treetagger.home' point to the TreeTagger installation directory.


异常中指定的位置(/ home / jarino / treetagger / bin / tree-tagger)有效-二进制文件存在。为什么Tomcat应用程序看不到现有文件?

最佳答案

我猜您不是以jarino用户身份运行Tomcat应用程序服务器,所以,


再次检查运行tomcat进程的tomcat用户是否设置了环境变量
如果实际设置了环境变量,请再次检查tomcat用户是否具有访问主文件夹中treetagger目录的正确特权。


提示:我可以看到存在Treetagger的Maven软件包。使用依赖管理器,将使您的生活更加轻松:-)

09-30 18:46