dobbinfw-launcher提供部分模板方法,可以在适当的时候扩展
当文件上传后
public interface AfterFileUpload {
public void afterPublic(String filename, String url, long contentType);
public void afterPrivate(String filename, String url, String key, long contentType);
}
当普通API调用前
public interface AfterHttpMethod {
public void after(HttpServletResponse response, String result);
}