我在一个表中有列:date,local_date,timezone。记录如:
from("spring-ws:rootqname:{http://camel.apache.org/example/increment}incrementRequest?endpointMapping=#endpointMapping")
.unmarshal(jaxb)
.process(new IncrementProcessor())
.marshal(jaxb);
我试图使用date local_date timezone
2017-04-14 2017-04-14 EST
2017-06-04 2017-06-03 CST
2017-06-04 2017-06-03 AST
,但由于每条记录的时区不同,因此该功能不起作用。