异常处理

throws是把捕获的异常抛出给方法
throw是在方法体内抛出自定义异常类,该方法会终止此方法的所有执行语句
try...catch..语句用于捕获异常,在catch中进行处理,同时try中所有语句终止,并继续执行catch之后的语句

 

1,2019-9-23伊伊app和后台冲突处理,记录由于两个项目共用同一个redis,如果另一边的登录缓存信息同时也会和这边的登录缓存信息公用,导致的结果就是每次去更新redis的时候查找会报错。具体报错的异常为:
org.springframework.data.redis.serializer.SerializationException: Cannot deserialize; nested exception is org.springframework.core.serializer.support.SerializationFailedException: Failed to deserialize payload. Is the byte array a result of corresponding serialization for DefaultDeserializer?; nested exception is org.springframework.core.NestedIOException: Failed to deserialize object type; nested exception is java.lang.ClassNotFoundException: com.tengtu.demo.db.model.Menu

2,关于微信支付-商家付款的坑:里面的参数amount表示的是支付金额,单位为:。如果判断为元为单位,具体报错的异常为:
企业付款到个人微信零钱失败,错误编码:AMOUNT_LIMIT,错误信息:付款金额超出限制。

你可能感兴趣的:(疑难杂症解决方案)