硬核:Filecoin代码编译部署常见问题

  • Post author:
  • Post category:其他

官方指导文档已经说的比较清楚https://lotu.sh/en+install-lotus-macoshttps://docs.filecoin.io/mine/setting-a-static-port/#announce-addresses 我把遇到的常见问题分享出来,遇到类似的问题,可以帮助节省时间。错误:could not get API inforoot@freddy:~# lotus…

继续阅读 硬核:Filecoin代码编译部署常见问题

搭建filecoin lotus私有网络及vscode下调试源码

  • Post author:
  • Post category:其他

软硬件配置 6核/16G内存/Radeon Pro 555X 4 GB macOS catalina 10.15.3 vscode 1.42.0 golang 1.14 Homebrew 2.2.10-42-gf5ba503 环境准备 每个矿工都需要 1.依赖安装 brew install go bzr jq pkg-config rustup 2. 调试工具更新 xcode-select --i…

继续阅读 搭建filecoin lotus私有网络及vscode下调试源码

mybatis中@Results,@ResultMap注解使用

  • Post author:
  • Post category:其他

一、Results的用法 用法一: 当数据库字段名与实体类对应的属性名不一致时,可以使用@Results映射来将其对应起来。column为数据库字段名,porperty为实体类属性名,jdbcType为数据库字段数据类型,id为是否为主键 @Select("select id, name, class_id from student”) @Results({ //column为数据库字段名,por…

继续阅读 mybatis中@Results,@ResultMap注解使用