UnsupportedClassVersionError on running play application with JDK 1.7

后端 未结 6 1943
青春惊慌失措
青春惊慌失措 2020-12-24 05:40

Just now started learning Play framework for my project requirement and my project only build on JDK 1.7 so I have downloaded Play 2.3.9 ve

6条回答
  •  感动是毒
    2020-12-24 06:26

    ConfigException occurs because from version 1.3.0, com.typesafe.config library is only compatible with JDK8; see README. You need to downgrade the library version. Use

    "com.typesafe" % "config" % "1.2.1"
    

提交回复
热议问题