Geotools cannot find HSQL EPSG DB, throws error: NoSuchAuthorityCodeException

前端 未结 5 1293
轻奢々
轻奢々 2020-12-09 11:32

I am running Geotools inside of Apache Storm, and having a heck of a time with geotools dependency management. Every thing works when I run the storm cluster locally (window

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-09 11:47

    For other problems with hsql db, you can enable debug logging for geotools.

    Geotools uses default java logging. Add following entries to logging.properties config file.

    org.geotools.level = FINEST
    org.geotools.handlers = java.util.logging.ConsoleHandler
    

    This file is usually located in %JAVA_HOME% or explicitly set by

    -Djava.util.logging.config.file=logging.properties

    runtime argument

提交回复
热议问题