我在Windows机器上创建的文件仍然在我的临时文件夹中,尽管有一个关闭方法。在UNIX计算机上不会发生此错误。所以我认为它与Mysql-connector-mxj-5.0.12 getWindowsKillCommand有关:
final String getWindowsKillCommand(Properties props) {
String key = WINDOWS_KILL_COMMAND;
String defaultVal = "kill.exe";
String fileVal = props.getProperty(key, defaultVal);
String val = System.getProperty(key, fileVal).trim();
return val.length() > 0 ? val : defaultVal;
}
我的日志提供以下错误:
WARN o.s.b.f.s.DisposableBeanAdapter incident: - Invocation of destroy method 'shutdown' failed on bean with name 'itDataSource': java.util.MissingResourceException: Resource 'kill.exe' not found
如果需要,我会尝试提供更多信息