dobbinfw-launcher提供部分模板方法,可以在适当的时候扩展
当文件上传前
public interface BeforeFileUpload {
public void before(HttpServletRequest request) throws ServiceException;
}
UEditor文件上传前
public interface BeforeUEditorFileUpload {
public void before(HttpServletRequest request) throws ServiceException;
}
当普通API调用前
public interface BeforeProcess {
public void before(HttpServletRequest request) throws ServiceException;
}