All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.khthink.easyapi.action.RequestData Maven / Gradle / Ivy

The newest version!
package cn.khthink.easyapi.action;

import com.alibaba.fastjson.JSONObject;

import javax.servlet.http.HttpServletRequest;
import java.io.IOException;

/**
 * 请求数据
 *
 * @author kh
 */
public interface RequestData {
    /**
     * 获取请求数据
     *
     * @param request servlet请求
     * @return JSONObject
     * @throws IOException IO异常
     */
    JSONObject getDatas(HttpServletRequest request) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy