I have the following two dates:
I am using Jackson to convert the date from an rest api to joda Datetime.
There would also be a different way by fixing the string for parsing:
String date = "13 May. 2009"; DateTime result = DateTime.parse(date.replace(".",""), DateTimeFormat.forPattern("dd MMM yyyy"));