ratpack

    1熱度

    2回答

    我試圖關注this blogpost,它演示了ratpack中的阻塞處理程序,但是我無法使其工作。我正在爲背景丟失方法異常。 我的build.gradle文件是從this GitHub directory buildscript { repositories { maven { url "http://oss.jfrog.org/artifactory/repo" }

    0熱度

    1回答

    我通過網頁發送數據到服務器發送數據。 $("#1, #2, #3, #4").on("click", function(){ console.log($(this).attr("id")); var xhr = new XMLHttpRequest(); xhr.open("POST", "SimpleServlet.html", true);

    0熱度

    1回答

    在ratpack的post方法處理程序中,在一定長度的xml之後不會執行以下操作。試圖改變內容的長度,但它沒有奏效。任何幫助將不勝感激。謝謝。 ctx.request.getBody().then{ body-> println body.text }

    0熱度

    1回答

    因此,我知道如何在我的處理程序單元測試中正確檢查何時拋出異常。 但是,當我想確保不拋出異常時,正確的方法是什麼? 這是我想出來的迄今最好的: def "No exception is thrown"() { given: def noExceptionThrown = false when: def result = RequestFixture.hand

    0熱度

    1回答

    我試圖按照示例Ratpacked: Using PostgreSQL Database,但我得到IntelliJ IDEA中的錯誤'of' in 'ratpack.config.ConfigData' can not be applied to '(groovy.lang.Closure<ratpack.config.ConfigDataBuilder>)'。 ratpack { bin

    0熱度

    2回答

    Iam使用JOOQ/Hikari在Postgres上執行數據庫操作。我一直試圖查看在生成的DAO上使用JOOQ的事務操作的一些示例。我的大多數同事都使用Spring交易,但我使用Guice作爲DI,所以不想把春天帶入畫面。任何鏈接或想法都不勝感激?如果這很重要,我的應用程序建立在Ratpack上。

    0熱度

    1回答

    我試圖合併使用ratpack.groovy中的ServerConfig塊的服務器和數據庫配置,但嘗試創建數據源時postgresConfig爲空。 PostgresConfig.groovy @Compile Static class PostgresConfig { String user String password String serverName

    0熱度

    2回答

    我想爲我的應用程序添加一種hello/name(用於健康檢查),但我不想做我的chainAction的那部分。 .handlers(chain -> chain .prefix("api", TaskChainAction.class)) ); 需要添加第二個問候語而不使用「api」前綴? 我試圖 .handlers(chain-> chain .

    0熱度

    1回答

    如何在ratpack中使用blocking.get方法後返回一個對象或列表。 Blocking.get(()-> xRepository.findAvailable()).then(x->x.stream().findFirst().get()); 上面的代碼返回void - 我希望能夠做到像下面這樣的東西,以便它返回then子句中的對象。我試着添加一個return語句,但不起作

    0熱度

    1回答

    我想寫一個JUnit測試,注入服務依賴關係。 protected MainClassApplicationUnderTest aut = new MainClassApplicationUnderTest(App.class) { @Override protected void addImpositions(final ImpositionsSpec impositions)