登录
首页 >  数据库 >  MySQL

springboot项目中的异常汇总

来源:SegmentFault

时间:2023-01-19 13:39:48 317浏览 收藏

积累知识,胜过积蓄金银!毕竟在##column_title##开发的过程中,会遇到各种各样的问题,往往都是一些细节知识点还没有掌握好而导致的,因此基础知识点的积累是很重要的。下面本文《springboot项目中的异常汇总》,就带大家讲解一下MySQL、Java知识点,若是你对本文感兴趣,或者是想搞懂其中某个知识点,就请你继续往下看吧~

java.sql.SQLException: Zero date value prohibited

使用mybatis查询数据出现这个异常,解决方法是给jdbc加上一串参数:zeroDateTimeBehavior=convertToNull

官方手册给出的解释如下:http://dev.mysql.com/doc/connector-j/5.1/en/connector-j-installing-upgrading-3-0-to-3-1.html

Datetimes with all-zero components (0000-00-00 ...): These values cannot be represented reliably in Java. Connector/J 3.0.x always converted them to NULL when being read from a ResultSet.

Connector/J 3.1 throws an exception by default when these values are encountered, as this is the most correct behavior according to the JDBC and SQL standards. This behavior can be modified using the zeroDateTimeBehavior configuration property. The permissible values are:

  • exception (the default), which throws an SQLException with an SQLState of S1009.
  • convertToNull, which returns NULL instead of the date.
  • round, which rounds the date to the nearest closest value which is 0001-01-01.

大意是如果插入的记录的日期是0000-00-00 ...的情况,mysql无法解析这个日期,因此无法将这个记录返回到网页上。

Uncaught SyntaxError: Unexpected token o in JSON at position 1 at JSON.parse ()

JSON.parse()用于从一个字符串中解析出json对象

var person = '{"name":"张伟","age":"18"}'
JSON.parse(person);
//结果:
{name: "张伟", age: "18"}

JSON.stringify()用于从一个对象解析出字符串

var person={name:"张伟",id:55};
JSON.stringify(person);
//结果:
"{"name":"张伟","id":55}"

报错的原因:
因为你要转换的数据本来就是object,JSON.parse()这个方法是把一个字符串解析出json对象,你再转换就会报错;

为什么会有这样的错误:
因为把Object作为参数传到JSON.parse()里时,首先会默利用toString()方法转为string,结果为"[object Object]"。

here was an unexpected error (type=Internal Server Error, status=500).Error resolving template [starter], template might not exist or might not be accessible by any of the configured Template Resolvers

发生这个错误首先检查application.properyties配置文件中前后缀位置
thymeleaf.prefix: classpath:/templates/pages/
suffix: .html
page后面必须要有逗号!!!

第二步检查controller类是否写错了,检查@RequestMapping(),再检查return的html的名字是否写错。

终于介绍完啦!小伙伴们,这篇关于《springboot项目中的异常汇总》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布数据库相关知识,快来关注吧!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表