簡體   English   中英

如何使用 Java 在 Play 框架中讀取 JSON 文件

[英]How read JSON file in Play framework using Java

我正在嘗試在我的播放應用程序中從test/resources package 中讀取JSON文件。 我收到com.couchbase.client.java.error.DocumentDoesNotExistException 我相信我的路徑不正確,有人可以建議如何走絕對路徑嗎?

public class AppControllerTest extends WithApplication {

    @Inject
    AppDaoServiceImpl appDaoServiceImpl;

    private CouchbaseEnvironment env;
    private static Cluster cluster = null;
    private static Bucket bucket = null;
    private String testResources = System.getProperty("java.class.path") + "/test/resources/";

    private static final ALogger logger = Logger.of(AppControllerTest.class);

    @Rule
    public ExpectedException thrown = ExpectedException.none();

    @Override
    protected Application provideApplication() {
        return new GuiceApplicationBuilder().build();
    }

    @Before
    public void init() {
        env = DefaultCouchbaseEnvironment.create();
        cluster = CouchbaseCluster.create(env, "127.0.0.1:8091");
        bucket = cluster.openBucket("CLUSTER", "admin123");

        try {
            String docId = "ABEBV_common";
            File testResource = new File(testResources + "ABEBV_common.json");
            FileInputStream is = new FileInputStream(testResource);
            JsonNode testData = Json.parse(is);
            RawJsonDocument rawJsonDocument = RawJsonDocument.create(docId, testData.asText());
            bucket.upsert(rawJsonDocument);

        } catch (Exception e) {
        }

    }

    @Test
    public void testGenericData() {
        Http.RequestBuilder request = new Http.RequestBuilder().method(GET).uri("/app/ms/genericdata/ABEBV")
                .header("client_id", "chase");

        Result result = route(app, request);
        assertEquals(OK, result.status());
        assertEquals("application/json", result.contentType().get());
        assertTrue(contentAsString(result).contains("141-GYCVZY"));
    }

    @After
    public void deleteDocuments() {
        bucket.remove("ABEBV_common");
        bucket.close();
        cluster.disconnect();
    }

}

Yes your path is not correct, System.getProperty("java.class.path") will return all the java class path the jvm is referring to You have to, instead use "user.dir".

private String testResources = System.getProperty("user.dir") + "/test/resources/";

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM