定时框架quartz集成PostgreSQL抛错:org.postgresql.util.PSQLException: 不良的类型值 long : \x

解决:

在配置文件中把org.quartz.jobStore.driverDelegateClass的org.quartz.impl.jdbcjobstore.StdJDBCDelegate修改为postgresql专用的 org.quartz.impl.jdbcjobstore.PostgreSQLDelegate驱动类文件(如下 )。

配置文件中添加以下配置

// quartz参数
Properties prop = new Properties();
//PostgreSQL数据库,需要添加此配置
prop.put("org.quartz.jobStore.driverDelegateClass", "org.quartz.impl.jdbcjobstore.PostgreSQLDelegate");

你可能感兴趣的:(quartz,postgres,postgresql,quartz)