Wednesday, 18 March 2009

Difference of Path convention in Unix and Win/Dos

The only difference between them is that where DOS/Windows uses "\" (the famous "backslash") to represent the "root" directory, and as a separator between directory levels, UNIX uses / (Shall we call it "forwardslash"?). This character is found on the same key as the questionmark ("?") on most keyboards.

Can Jackson Deserialize Java Time ZonedDateTime

Yes, but must include JSR310. Thus ZonedDateTime can be deserialized directly from JSON response to POJO field. <dependency> <g...