java.lang.ClassNotFoundException: org.joda.time.ReadablePartial

烈酒焚心 提交于 2019-12-01 17:56:33

Sounds like you're missing the Joda-Time dependency. GitHub project for Joda-Time available here.

As per documentation, to get the latest Joda-Time jar you can do:

Maven:

<dependency>
  <groupId>joda-time</groupId>
  <artifactId>joda-time</artifactId>
  <version>2.9.4</version>
</dependency>

Gradle:

compile 'joda-time:joda-time:2.9.4'

Or you can manually download the latest jar from here and add it to your classpath.

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