com.ruijie.framework.exception.handler.RJGlobalDefaultExceptionHandler.printLog(RJGlobalDefaultExceptionHandler.java:77) error cause:{} org.springframework.dao.InvalidDataAccessApiUsageException: Error attempting to get column 'cloud_update_time' from result set. Cause: java.sql.SQLFeatureNotSupportedException ; null; nested exception is java.sql.SQLFeatureNotSupportedException
时间: 2023-12-25 07:03:05 浏览: 163
VS2022安装.NET Framework4.0类库
根据你提供的信息,我可以看出这是一个关于数据库访问的异常。具体来说,这个异常是由于尝试从结果集中获取名为'cloud_update_time'的列时出现了错误,原因是该列不被支持(SQLFeatureNotSupportedException)。
这种异常通常是由于使用了不兼容的数据库驱动程序版本或存在语法错误等问题导致的。可以尝试更新数据库驱动程序版本或检查SQL语句是否正确,以解决这个问题。
阅读全文