Bad value for type timestamp on production server

夙愿已清 提交于 2019-12-10 18:34:49

问题


I'm working with: seam 2.2.2 + hibernate + richfaces + jboss 5.1 + postgreSQL

I have an module which needs to load some data from the database. Easy. The problem is, on development it works fine, 100%, but when I deploy on my production server and try to get the data, an error rise:

could not read column value from result set: fechahor9_504_; Bad value for type timestamp : [C@122e5cf
SQL Error: 0, SQLState: 22007
Bad value for type timestamp : [C@122e5cf
javax.persistence.PersistenceException: org.hibernate.exception.DataException: could not execute query

[more errors]

Caused by: org.postgresql.util.PSQLException: Bad value for type timestamp : [C@122e5cf
at org.postgresql.jdbc2.TimestampUtils.loadCalendar(TimestampUtils.java:232)

[more errors]

Caused by: java.lang.NumberFormatException: Trailing junk on timestamp: ''
at org.postgresql.jdbc2.TimestampUtils.loadCalendar(TimestampUtils.java:226)

I can't understand why it works on my machine (development) and why not on production. Any clues? Anyone gone through the same problem? Is exactly the same compilation


回答1:


Stefano Travelli was right. I was checking the jBoss on production and there was an old jdbc driver on [jboss_dir]/common/lib from an old jwebstart application (not developed by me). Deleted that jdbc and it works fine. I should check if the old application is still needed and if so, check if it still works without the jdbc being there or with an upgraded version.




回答2:


Not sure what the driver story is .. but the problem for me show up when JDBC tries to parse bigint from the DB to

myOjbect.setDate(Date date){...}

the other "JDBC friendly" is ignorred for some reason .

myOjbect.setDate(long date){...}

So .. removing the Date setter and leaving a long one resolves the problem. This is a Big workaround .. but may help someone out there :)



来源:https://stackoverflow.com/questions/10857539/bad-value-for-type-timestamp-on-production-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!