我正在使用playframework 2.2.0與Java。我如何從控制器操作中返回Not Modified?Playframework 2.2 Java未修改
Controller superClass中有幾種方法:ok(),noContent()等,但不是notModified()。在play.api.mvc.Results
val NotModified = SimpleResult(header = ResponseHeader(NOT_MODIFIED), body = Enumerator.empty,
connection = HttpConnection.KeepAlive)
:
看着玩耍的源代碼,我可以看到。但是,如何將SimpleResult包裝在Java控制器可以返回的東西中?
方法要返回一個結果:
public interface Result {
scala.concurrent.Future<play.api.mvc.SimpleResult> getWrappedResult();
}
,但我不知道如何從Java生成的未來。 (我試圖與scala.concurrent.Future $ .MODULE $ ...但它是不可見的,我的Java代碼)