// request processing
RenderResultCache.setIgnoreCacheInCurrentAndNextReq(false);
}
public static void beforeActionInvocation(Context ctx, Method actionMethod) {
Request request = ctx.request();
play.mvc.Http.Flash flash = ctx.flash();
Map<String, String[]> headers = request.headers();
String property = dumpRequest;
if (property != null && property.length() > 0) {
if (!"false".equals(property) && !"no".equals(property)) {
if ("yes".equals(property) || "true".equals(property)) {
JapidFlags.log("action ->: " + actionMethod.toString());
} else {
if (request.uri().matches(property)) {
JapidFlags.log("action ->: " + actionMethod.toString());
}
}
}
}