Geotools / Maven依赖顺序

时间:2015-07-20 20:03:55

标签: maven geotools

我一直试图追查以下异常的原因

org.geotools.feature.SchemaException:解码srs时出错:4326

我不断看到有人说我需要以下依赖

    <dependency>
        <groupId>org.geotools</groupId>
        <artifactId>gt-epsg-hsql</artifactId>
        <version>${geotools.version}</version>
    </dependency>

我使用m2e eclipse插件来构建我的jar并且我总是能够通过eclipse成功运行我的应用程序但是当我尝试从命令行运行我的jar时,我会得到异常所以我知道它有与我的罐子的建造方式有关。我使用以下代码创建了一个简单的应用程序来复制问题。

import org.geotools.data.DataUtilities;
import org.geotools.feature.SchemaException;
import org.opengis.feature.simple.SimpleFeatureType;


public class Main {

/**
 * @param args
 * @throws SchemaException 
 */
public static void main(String[] args) throws SchemaException {

    SimpleFeatureType lineFeatureType = DataUtilities.createType("LINE", "geom:LineString:srid=4326,name:String");

    System.out.println("Success!");
}

}

我的pom文件看起来像这样

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>groupid</groupId>
<artifactId>artifactid</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>example</name>
<packaging>jar</packaging>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <geotools.version>12-RC1</geotools.version>
</properties>

<dependencies>
<!--        <dependency> -->
<!--            <groupId>org.geotools</groupId> -->
<!--            <artifactId>gt-shapefile</artifactId> -->
<!--            <version>${geotools.version}</version> -->
<!--        </dependency> -->
    <dependency>
        <groupId>org.geotools</groupId>
        <artifactId>gt-epsg-hsql</artifactId>
        <version>${geotools.version}</version>
    </dependency>
    <dependency>
        <groupId>org.geotools</groupId>
        <artifactId>gt-geometry</artifactId>
        <version>${geotools.version}</version>
    </dependency>
    <dependency>
        <groupId>org.geotools</groupId>
        <artifactId>gt-shapefile</artifactId>
        <version>${geotools.version}</version>
    </dependency>
</dependencies>

<repositories>
    <repository>
        <id>OSGEO GeoTools repo</id>
        <url>http://download.osgeo.org/webdav/geotools</url>
    </repository>
</repositories>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                        <mainClass>Main</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>
            <executions>
                <execution>
                    <id>make-my-jar-with-dependencies</id> <!-- this is used for inheritance merges -->
                    <phase>package</phase> <!-- bind to the packaging phase -->
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.2</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>
    </plugins>
</build>

我开始看到的是,如果我的依赖关系是按此顺序

<dependencies>
<!--        <dependency> -->
<!--            <groupId>org.geotools</groupId> -->
<!--            <artifactId>gt-shapefile</artifactId> -->
<!--            <version>${geotools.version}</version> -->
<!--        </dependency> -->
    <dependency>
        <groupId>org.geotools</groupId>
        <artifactId>gt-epsg-hsql</artifactId>
        <version>${geotools.version}</version>
    </dependency>
    <dependency>
        <groupId>org.geotools</groupId>
        <artifactId>gt-geometry</artifactId>
        <version>${geotools.version}</version>
    </dependency>
    <dependency>
        <groupId>org.geotools</groupId>
        <artifactId>gt-shapefile</artifactId>
        <version>${geotools.version}</version>
    </dependency>
</dependencies>

然后当我从命令行执行我的jar时,我会看到&#34;成功!&#34;并且不会发生异常。但是,如果我的依赖关系是按此顺序

<dependencies>
    <dependency>
        <groupId>org.geotools</groupId>
        <artifactId>gt-shapefile</artifactId>
        <version>${geotools.version}</version>
    </dependency>
    <dependency>
        <groupId>org.geotools</groupId>
        <artifactId>gt-epsg-hsql</artifactId>
        <version>${geotools.version}</version>
    </dependency>
    <dependency>
        <groupId>org.geotools</groupId>
        <artifactId>gt-geometry</artifactId>
        <version>${geotools.version}</version>
    </dependency>
<!--        <dependency> -->
<!--            <groupId>org.geotools</groupId> -->
<!--            <artifactId>gt-shapefile</artifactId> -->
<!--            <version>${geotools.version}</version> -->
<!--        </dependency> -->
</dependencies>

然后会发生异常。

我认为依赖的顺序在maven项目中无关紧要。有人可以解释发生了什么吗?我感谢任何反馈!

1 个答案:

答案 0 :(得分:0)

你是正确的,一般来说,mvn并不关心依赖关系的顺序,但它确实按照它们在pom文件中的显示顺序通过它们。

当您打包罐子时这很重要,因为默认的maven包装器不能很好地处理GeoTools用于加载工厂的SPI文件,在这种情况下是EPSG引用工厂。

如果您使用Maven Shade packager,它将正确构建文件。 GeoTools FAQ中有一个较长的讨论和示例。