编辑 | blame | 历史 | 原始文档

1. 简介

dobbinfw-launcher提供部分模板方法,可以在适当的时候扩展

2. before http

2.1. BeforeFileUpload

当文件上传前

public interface BeforeFileUpload {

    public void before(HttpServletRequest request) throws ServiceException;

}

2.2. BeforeUEditorFileUpload

UEditor文件上传前

public interface BeforeUEditorFileUpload {

    public void before(HttpServletRequest request) throws ServiceException;

}

2.3. BeforeProcess

当普通API调用前

public interface BeforeProcess {

    public void before(HttpServletRequest request) throws ServiceException;

}