在Tomcat中设置环境变量TESSDATA_PREFIX
我们正在使用名为 Tess4J 的 Tesseract OCR Java 库。如果作为独立应用程序运行,它可以正常工作。它需要一个名为 TESSDATA_PREFIX 的变量,其中包含 tessdata 配置和其他字符集相关文件。
它也可以与 eclipse 中的嵌入式 Tomcat 6 服务器一起正常运行。我已使用启动配置将 TESSDATA_PREFIX 设置为环境变量。
但是,当我将所有内容打包成 WAR 并将其放入 tomcat 的部署目录中时,似乎没有选择环境变量,并且服务器在遇到 doOCR api(需要 tessdata 配置)时崩溃。
我尝试在 catalina.bat 中设置此环境变量,也通过命令行设置,但没有成功。
We are using Tesseract OCR Java library called Tess4J. It works fine if run as a standalone application. It needs a variable called TESSDATA_PREFIX which contains the tessdata config and other charset related files.
It also runs fine with embedded Tomcat 6 server in eclipse. I had set TESSDATA_PREFIX as an environment variable by using the launch configuration.
But when I package everything into a WAR and drop it in deploy directory of tomcat, the environment variable does not seem to be picked and the server crashes the moment it encounters the doOCR api( which needs the tessdata config).
I tried setting this env variable inside catalina.bat and also thru command line, but no luck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Tomcat 中的环境变量应放入 bin 目录中的 setenv.bat/setenv.sh 脚本中。
Environment variables in Tomcat should be put into a setenv.bat/setenv.sh script in the bin directory.