运用SSM框架所遇到的bug及解决方法

  1. 后台没有错误,前台控制器报错:Uncaught TypeError: window.location.href is not a function
  • 修改:把window.location.href(url)改成window.location=(url)
  1. 前台控制台报 500 (Internal Server Error)
    在这里插入图片描述
    措施:
    (1)点击上图错误路径跳转到Network,点击XHR,可以看到具体错误
    运用SSM框架所遇到的bug及解决方法_第1张图片
    (2)点击错误,之后点击Priview,可以看到具体的出错信息,然后再根据错误信息进行修改即可。
    运用SSM框架所遇到的bug及解决方法_第2张图片
  2. 控制台报错: Name for argument type [java.lang.Integer] not available, and parameter name information not found in class file either.
  • 报错信息意思是:前台参数和后台参数不一致
  • 措施:查看代码,修改参数,使其一致后,如果还频繁报错,可以采取把项目clean一下,服务器移除项目,重新运行项目。
  1. 服务器报错:publishing to tomcat v8.0 server at localhost has encontered a problem
    错误原因:Could not publish to the server. java.lang.NullPointerException
    修改:将项目clean一下,并且在服务器端移除项目,重新运行项目

你可能感兴趣的:(SSM)