質問

I'm having an issue with Scala and Java interoperability which Google and SO seem to be unhelpful (I've seen similar questions, but none offered a working solution for my case).

I have created a jar file in Java (hosted here, if you need it to answer this question) which contains a class with a static method. However, I can't seem to access this static method from Scala. Here's the code:

val graph1 = ...
val graph2 = ...
val union = DirectedGraph.merge(graph1, graph2)

The method exists, and I can access it with normal Java code. In fact, the following works:

DirectedGraph<OWLClass> graph1 = ...;
DirectedGraph<OWLClass> graph2 = ...;
DirectedGraph<OWLClass> union = DirectedGraph.merge(graph1, graph2);

I've checked that the jar files being used by java and scala are the same. And I also checked to see if the method was indeed there with javap.

Is there an idea out there to understand and possibly solve this problem?

役に立ちましたか?

解決

The most likely reason (in my experience) is that the Java compiler treats annotations as optional, so that if one of your dependencies uses an annotation and there is no dependency which contains this annotation, it compiles without problems. However, the Scala compiler considers this an error. You may want look at DirectedGraph source along with its supertypes.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top