我在簡單雲存儲方面遇到了一些問題(simplecloud)。當我與Maven運行控制檯輸出以下錯誤:未找到文件Maven
java.io.FileNotFoundException: \var\key (The system cannot find the path specified)
源代碼是在這裏:src git
然而,它存在於目錄如下所示:
任何想法?
在此先感謝
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>com.pliablematter</groupId>
<artifactId>simple-cloud-storage</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Simple Cloud Storage</name>
<description>A simple wrapper around the Google Cloud Storage API</description>
<dependencies>
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-jackson2</artifactId>
<version>1.15.0-rc</version>
</dependency>
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-storage</artifactId>
<version>v1beta2-rev6-1.15.0-rc</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>LATEST</version>
<scope>test</scope>
</dependency>
</dependencies>
從junit你應該使用一個特定的版本和**不** ** LATEST'的原因,如果一個新的版本出來你的構建可能會失敗。換句話說,你的構建是不可重現的。 – khmarbaise
@David,DId你解決了這個問題?我遇到了同樣的問題。請給我解決這個問題的解決方案? –
嘿,當我把鑰匙放在文件夾中:/ simple-cloud-storage/src/main/resources/var /並做了一個乾淨的maven構建項目正在運行,我有一個工作的JAR文件。有時候測試沒有通過,因爲你被限制每秒執行x次請求,但是我認爲它有1分之一的效果。 – David