我有一个包含以下Scala类的JAR:
class JsonAvroConverter(val sch : org.apache.avro.Schema) extends scala.AnyRef {
def toJson(avroData : org.json4s.JValue) : org.json4s.JValue = { /* compiled code */ }
}
现在我需要能够从Java
项目中调用类中的方法。我在Json4s
中添加了POM
并且我有Json4s accessbile但是我不确定从Java上下文中使用该库的方法。我也尝试过这样的事情:
String myString = "{\"name\":\"bob\"}"
JsonMethods json = new Jsonmethods();
json.parse(myString);
但我首先无法实例化JsonMethods
。