Clojure Uberjar not loading resource file

丶灬走出姿态 提交于 2019-12-10 14:42:13

问题


I use lein uberjar to create a standalone jar of an application.

When executing

java -jar dataloader-0.1.0-SNAPSHOT-standalone.jar,

it crashes with:

Caused by: java.lang.IllegalArgumentException: Not a file:
jar:file:dataloader-0.1.0-SNAPSHOT-standalone.jar!/configuration.json

I load the file via:

(ns dataloader.configuration
  (:gen-class)
  (:require [cheshire.core :refer :all]
            [clojure.java.io :as io]))

(def data-file
  (io/file
    (io/resource "configuration.json")))

project.clj

(defproject dataloader "0.1.0-SNAPSHOT"
  :description "Used for loading stage data into local vagrantbox"
  :url "http://example.com/FIXME"
  :license {:name "Eclipse Public License"
            :url "http://www.eclipse.org/legal/epl-v10.html"}
  :resource-paths ["resources"]
  :dependencies [[org.clojure/clojure "1.6.0"]
                 [clojurewerkz/elastisch "2.1.0"]
                 [org.clojure/java.jdbc "0.3.7"]
                 [mysql/mysql-connector-java "5.1.32"]
                 [clj-http "2.0.0"]
                 [org.clojure/data.json "0.2.6"]
                 [org.clojure/data.codec "0.1.0"]
                 [cheshire "5.5.0"]]

  :main ^:skip-aot dataloader.core
  :target-path "target/%s"
  :profiles {:uberjar {:aot :all}})

resources/configuration.json is put into the root folder of the jar


回答1:


clojure.java.io/resource returns a URL, not a file. That's why you can call slurp on it. The error message is telling you that it's not a file, unfortunately it's not telling you that it's a URL.

Of course you could open the url with the java.net.URL api although that would be overkill in this case.




回答2:


If you want to read the content of the configuration.json file, do not call io/file. Instead, use slurp function, like that:

(def config (slurp (io/resource "configuration.json")))


来源:https://stackoverflow.com/questions/32232662/clojure-uberjar-not-loading-resource-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!