1

我对我的项目的 2 个依赖项有相同的类。库 unit-api-1.0(它是 org.geotools 的依赖项)和 jscience-4.3.1 都有类javax.measure.quantity.Length

 [INFO] +- org.geotools:gt-shapefile:jar:22.3:compile
 [INFO] |  +- org.geotools:gt-main:jar:22.3:compile
 [INFO] |  |  +- org.geotools:gt-referencing:jar:22.3:compile
 [INFO] |  |  |  +- org.ejml:ejml-ddense:jar:0.34:compile
 [INFO] |  |  |  |  \- org.ejml:ejml-core:jar:0.34:compile
 [INFO] |  |  |  +- commons-pool:commons-pool:jar:1.5.4:compile
 [INFO] |  |  |  +- org.geotools:gt-metadata:jar:22.3:compile
 [INFO] |  |  |  |  \- org.geotools:gt-opengis:jar:22.3:compile
 [INFO] |  |  |  |     \- systems.uom:systems-common-java8:jar:0.7.2:compile
 [INFO] |  |  |  |        +- tec.uom:uom-se:jar:1.0.8:compile
 [INFO] |  |  |  |        |  +- javax.measure:unit-api:jar:1.0:compile


 [INFO] \- org.jscience:jscience:jar:4.3.1:compile
 [INFO]    \- org.javolution:javolution:jar:5.2.3:compile

当我尝试使用 Length 参数化Measure时,出现错误:

[ERROR]   error: type argument Length is not within bounds of type-variable Q
[ERROR]   where Q is a type-variable:
[ERROR]     Q extends Quantity declared in class Measure

基本上,两个接口 Length 都扩展了接口 Quantity,如下所示:

https://www.javadoc.io/static/javax.measure/unit-api/1.0/javax/measure/quantity/Length.html http://jscience.org/api/javax/measure/quantity/Length.html

但是其中一个扩展了 Quantity,而另一个扩展了 Quantity。不知何故,它们彼此不兼容,编译器使用了错误的编译器并给了我这个错误。

有办法以某种方式管理这种情况吗?

4

1 回答 1

2

GeoTools升级常见问题解答涵盖了在 20.0 版之后使用 Units 所需的更改。

您需要以下依赖项:

<dependency>
   <groupId>systems.uom</groupId>
   <artifactId>systems-common-java8</artifactId>
   <version>0.7.2</version>
</dependency>

并进行这些更改:

软件包名称已更改,导致升级时出现一些常见的搜索和替换:

  • 搜索 javax.measure.unit.Unit 替换 javax.measure.Unit

  • 搜索 ConversionException 替换 IncommensurableException

这是一个已检查的异常,在 GeoTools 库中发现它的区域中,我们现在返回一个 IllegalArgument 异常。

  • 搜索转换器 == UnitConverter.IDENTITY 替换 converter.isIdentity()

  • 搜索 javax.measure.unit.NonSI 替换 import si.uom.NonSI

  • 搜索 javax.measure.unit.SI 替换 import si.uom.SI

  • 搜索 SI.METER 替换 SI.METRE

  • 搜索 javax.measure.converter.UnitConverter 替换 javax.measure.UnitConverter

  • 搜索 javax.measure.unit.UnitFormat 替换 import javax.measure.format.UnitFormat

  • 搜索 Unit.ONE 替换 AbstractUnit.ONE

  • 搜索 Dimensionless.UNIT 替换 AbstractUnit.ONE

  • 搜索 Unit.valueOf(unitString) 替换 Units.parseUnit(unitString)

于 2020-02-18T08:24:40.793 回答