搜索结果
查询Tags标签: executing,共有 5条记录-
staticmethod和classmethod区别
0x00 staticmethod和classmethod区别 class A(object):def foo(self, x):print(f"executing foo({self}, {x})")@classmethoddef class_foo(cls, x):print(f"executing class_foo({cls}, {x})")@staticmethoddef static_foo(x):print(f"executin…
2022/2/19 23:15:12 人评论 次浏览 -
mysql-终端链接mysql报错
报错信息如下:ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.解决方案如下:alter user root@localhost identified by 新密码;返回信息如下代表成功:Query OK, 0 rows affected (0.00 sec)
2022/1/20 19:11:52 人评论 次浏览 -
mysql-终端链接mysql报错
报错信息如下:ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.解决方案如下:alter user root@localhost identified by 新密码;返回信息如下代表成功:Query OK, 0 rows affected (0.00 sec)
2022/1/20 19:11:52 人评论 次浏览 -
feign.RetryableException: Read timed out executing POST
描述报错:feign.RetryableException: Read timed out executing POST http://server-fish-goods/api/cart/del-cart在使用order远程调用goods模块的时候因为是debug启动,在远程调用过程中响应时间过长/响应超时解决设置ribbon响应时间ribbon:ReadTimeout: 60000 # 处理请…
2021/6/16 10:26:59 人评论 次浏览 -
EntityFramework:An error occurred while executing the command definition. See the inner exception fo
错误描述: 调用EF中的FirstOrDefault()时,报错误:An error occurred while executing the command definition. See the inner exception for details.解决方案: 一般是代码中的表或者字段无法与数据库对应导致,检查代码中的表名称或字段名称与数据库表或字段名称是否…
2021/5/19 10:56:59 人评论 次浏览