首页 > 代码库 > jsp中验证用户是否以post方式提交

jsp中验证用户是否以post方式提交

在项目中有时需要验证用户是否以post方式提交。下面是验证源码:

    public boolean checkMethod(String method) {
        if (request.getMethod().equalsIgnoreCase(method)) {
            return true;
        }
        else {
            return false;
        }
    }

调用方式 checkMethod("post").如果以post方式提交为true,否则为FALSE。

jsp中验证用户是否以post方式提交