
开发踩坑
springboot及其衍生
dd_cs_ccc
这个作者很懒,什么都没留下…
展开
-
Tensorflow gpu版本报错 has no attribute ‘compat‘???
AttributeError: module 'tensorflow' has no attribute 'compat' when importing tensorflow首先通过 conda list 查看 tensorflow 的版本,重新安装tensorflow-estimator,比如我的conda install tensorflow-estimator==2.1.0这里给大家提供一个完整的tensorflow-gpu环境,已配置成功1050ti + anaconda4.9.0原创 2020-11-03 23:27:16 · 630 阅读 · 0 评论 -
cookie中不能有空格
做cookie的demo时,加入时间戳new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");这里报了个错,如下java.lang.IllegalArgumentException: An invalid character [32] was present in the Cookie value报错中说一个无效字符[32]在cookie中,32在ASCII中时空格,这里是说cookie中不能有空格.记录一下...原创 2020-09-18 14:47:44 · 566 阅读 · 0 评论 -
springboot踩坑日志001
程序包org.junit.jupiter.api不存在原因是springboot2.0.4的junit版本较低,可以升级为5.1.1!原创 2020-02-04 20:35:09 · 366 阅读 · 0 评论 -
mysql8.0.17忘记密码(密码过期)
mysql8.0.17修改密码(本人亲测。。。我的不是忘记密码了而是,过期了密码,所以密码过期这个方法也是有效的,看了好多方法拼起来的。。以管理员身份打开命令行,输入命令:(停止mysql服务)net stop mysql输入命令: (8.0+.17通过这种方式跳过密码登录) mysqld --console --skip-grant-tables --sh...原创 2020-02-07 20:32:33 · 2154 阅读 · 0 评论