问题:
今天在测试项目接口时出现一个异常:
Handler dispatch failed; nested exception is java.lang.UnsatisfiedLinkError:
/usr/local/jdk/jdk1.8.0_381/jre/lib/i386/libfontmanager.so: libgcc_s.so.1: cannot open shared object file: No such file or directory
在windows环境下没有问题,但打成jar包后部署到 linux 服务器上,在调用生成图片验证码时
报了个这样的异常
java.lang.NoClassDefFoundError: Could not initialize class sun.awt.X11FontManager
或者是
Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: Could not initialize class sun.awt.X11FontManager
查询后发现原因是 linux 服务器没有显示屏之类的io设备,报错原因根Headless mode这个模式有关。
1.什么是Headless mode?
Headless模式是系统的一种配置模式。在该模式下,系统缺少了显示设备、键盘或鼠标。
2.何时使用和headless mode?
Headless模式虽然不是我们愿意见到的,但事实上我们却常常需要在该模式下工作,尤其是服务器端程序开发者。因为服务器(如提供Web服务的主机)往往可能缺少前述设备,但又需要使用他们提供的功能,生成相应的数据,以提供给客户端(如浏览器所在的配有相关的显示设备、键盘和鼠标的主机)。
3.如何使用和Headless mode?
一般是在程序开始激活headless模式,告诉程序,现在你要工作在Headless mode下,就不要指望硬件帮忙了,你得自力更生,依靠系统的计算能力模拟出这些特性来:
System.setProperty("java.awt.headless","true")
解决方法:
1、在生成图片验证码的类上加入(springboot程序可以在主启动类main方法第一行加):
static{
System.setProperty("java.awt.headless", "true");
}
或
System.setProperty("java.awt.headless", "true");
2、服务器上运行如下命令(非管理员权限账号加上sudo):
管理员账号运行:
yum install libgcc.i686 --setopt=protected_multilib=false
yum grouplist
yum groupinstall Fonts
非管理员账号运行:
sudo yum install libgcc.i686 --setopt=protected_multilib=false
sudo yum grouplist
sudo yum groupinstall Fonts
3、重新打包部署