【问题标题】:hibernate-spatial 4.3 not found in Maven在 Maven 中找不到休眠空间 4.3
【发布时间】:2016-03-12 05:44:15
【问题描述】:

我想将hibernate-spatialpostgis 添加到我的Maven 项目中。

这是我的pom.xml

  <properties>
    <hibernate.version>4.3.6.Final</hibernate.version>
    <hibernate.spatial.version>4.3</hibernate.spatial.version>
    <hibernate.core.version>4.3.6.Final</hibernate.core.version>
    <postgis-jdbc.version>2.2.0</postgis-jdbc.version>
  </properties>

  ...

  <dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-core</artifactId>
    <version>${hibernate.core.version}</version>
  </dependency>
  <dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-entitymanager</artifactId>
    <version>${hibernate-entitymanager.version}</version>
  </dependency>
  <dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-spatial</artifactId>
    <version>${hibernate.spatial.version}</version>
  </dependency>
  <dependency>
    <groupId>org.postgis</groupId>
    <artifactId>postgis-jdbc</artifactId>
    <version>${postgis-jdbc.version}</version>
  </dependency>

entity-managerhibernate-core 的引用有效。但是找不到hibernate-spatialpostgis-jdbc

org.hibernate:hibernate-spatial:4.3 not found 检查 Maven 模型 解决问题。

postgis-jdbc 的错误相同)

如何在我的项目中包含这些库?

【问题讨论】:

    标签: java hibernate maven pom.xml spatial


    【解决方案1】:

    hibernate-spatial5.0 之前在公共 maven 存储库中不可用。您可以随时通过浏览http://mvnrepository.com/(在本例中为http://mvnrepository.com/artifact/org.hibernate/hibernate-spatial)查看可用的内容。

    但是您可以将 hibernate 空间存储库添加到您的 POM,其中包含早期版本的 hibernate-spatial:

    <project ...>
      ...
      <repositories>
        <repository>
          <id>Hibernate Spatial repo</id>
          <url>http://www.hibernatespatial.org/repository</url>
        </repository>
      </repositories>
    
    </project>
    

    这也包含版本 1.5.2 中匹配的 postgis-jdbc 库。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-02-23
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-11-28
      相关资源
      最近更新 更多