账号密码登录
微信安全登录
微信扫描二维码登录

登录后绑定QQ、微信即可实现信息互通

手机验证码登录
找回密码返回
邮箱找回 手机找回
注册账号返回
其他登录方式
分享
  • 收藏
    X
    使用servlet登陆时会出现错误,但是注册是没有问题的
    • 2020-01-01 00:00
    • 11
    58
    0

    问题描述

    org.apache.catalina.core.StandardWrapperValve invoke
    严重: Servlet.service() for servlet [UserServlet] in context with path [/TheWakingOfInsects] threw exception
    java.lang.RuntimeException~~~~

    相关代码

    public class BaseServlet extends HttpServlet {

    private static final long serialVersionUID = 1L;
    
    protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        try {
            //获取方法名称
            String mName = request.getParameter("method");
            //判断 参数是否为空  若为空,执行默认的方法
            if(mName == null || mName.trim().length()==0){
                mName = "index";
            }
            //获取方法对象
            Method method = this.getClass().getMethod(mName, HttpServletRequest.class,HttpServletResponse.class);
            //让方法执行,接受返回值
            String path=(String) method.invoke(this, request,response);
            //判断返回值是否为空 若不为空统一处理请求转发
            if(path != null){
                request.getRequestDispatcher(path).forward(request, response);
            }
        } catch (Exception e) {
            e.printStackTrace();
            throw new RuntimeException();
        }
    }~~~~
    
    

    实际看到的错误信息又是什么?

    1
    打赏
    收藏
    点击回答
    您的回答被采纳后将获得:提问者悬赏的 11 元积分
        全部回答
    • 0
    • 简sheet 普通会员 1楼
      502 Bad Gateway

      502 Bad Gateway


      nginx
    更多回答
    扫一扫访问手机版
    • 回到顶部
    • 回到顶部