### 1. 简介 > dobbinfw-launcher提供部分模板方法,可以在适当的时候扩展 ### 2. before http #### 2.1. BeforeFileUpload 当文件上传前 ```java public interface BeforeFileUpload { public void before(HttpServletRequest request) throws ServiceException; } ``` #### 2.2. BeforeUEditorFileUpload UEditor文件上传前 ```java public interface BeforeUEditorFileUpload { public void before(HttpServletRequest request) throws ServiceException; } ``` #### 2.3. BeforeProcess 当普通API调用前 ```java public interface BeforeProcess { public void before(HttpServletRequest request) throws ServiceException; } ```