- 博客(27)
- 资源 (3)
- 收藏
- 关注
原创 stderr=Could not format because the source could not be parsed:line 84, column 11 of lib/src/rust
╷╵╷╵在 文件中添加以下内容:analyzer:
2024-10-29 10:14:08 157
原创 Mac 关闭虚拟内存(交换内存 swap memory)
到了这里你就关闭了虚拟内存,但注意,你之前关闭了系统完整性保护,我建议你重新开启,以免不必要的问题,重新进入recovery OS恢复模式,要进入recovery OS。可以查看虚拟内存使用情况。
2023-11-05 10:29:45 1747
原创 DDD(领域驱动设计)
DDD关注于对业务领域的深入理解,以及如何将该领域的知识和业务逻辑有效地映射到软件设计中。建议您阅读相关的领域驱动设计的书籍和资源,以深入了解DDD的原理和实践。学习和应用领域驱动设计中的模式和原则,例如聚合根、限界上下文、领域事件、领域服务等。这些模式和原则可以帮助您更好地组织和管理复杂的业务逻辑,并提高代码的可维护性和可扩展性。使用合适的编程语言和技术,将模型中的对象、规则和关系映射到代码实现中。确定领域边界是理解业务的关键一步。通过与业务专家和团队成员的沟通和反馈,不断优化和完善领域模型和软件设计。
2023-07-05 10:37:51 123
原创 svn迁移到git 后 maven打包失败 git迁移后maven打包失败
svn迁移到git 后 maven打包失败 git迁移后maven打包失败
2022-11-07 15:02:31 154
原创 easypoi 4.4.0 excel 导出 ExcelCollection 两层以上width无效 EasyPoi 宽度无效
easypoi 4.4.0 excel 导出 ExcelCollection 两层以上widh无效
2022-10-12 16:29:31 1035 1
原创 low level 错误elasticsearch UnsatisfiedDependencyException NullPointerException
少了 @Document(indexName = "es_demo",type = "_doc")
2022-08-03 13:40:23 428
转载 MutexOrChannel
MutexOrChannelEditNew PageRick Beton edited this pageon 19 Mar 2015·5 revisionsUse a sync.Mutex or a channel?One of Go's mottos is"Share memory by communicating, don't communicate by sharing memory."That said, Go does provide traditional lock...
2021-09-22 22:11:21 106
原创 GOOS=linux GOARCH=386 go build main.go报错
GOOS=linux GOARCH=386 go build main.go报错package command-line-arguments imports nidemall/router: build constraints exclude all Go files in/Users/ljp/go/src/nidemall/router
2021-09-21 11:04:50 948
原创 package xx is not in GOROOT xx github下载的 放进去的。可能把 xx 下的 go.mod 删除 重新运行就可解决
package xx is not in GOROOT xx github下载的 放进去的。可能把 xx 下的 go.mod 删除 重新运行就可解决
2021-09-21 09:33:47 174
原创 redisearch muti-tenant 模拟使用 redisearch 多租户全文检索搜索
package mainimport ( //"demo_proj/gorm_test/redissearch-go/util" "fmt" "github.com/RediSearch/redisearch-go/redisearch" "github.com/gomodule/redigo/redis" "log" "time")func main2() { //host := "devel.linjiangping.com:36379" //.
2021-08-15 11:14:58 223
原创 was cached in the local repository, resolution will not be reattempted until the update interval of
was cached in the local repository, resolution will not be reattempted until[ERROR] Failed to execute goal on project platform-biz: Could not resolve dependencies for project comxx:jar:2.0.0: Failure to find com.xx:xx:jar:1.0.0 in https://maven.aliyun.co
2021-05-10 15:37:15 343
原创 springboot 错误: 找不到或无法加载主类 com.xxx. Application
springboot 错误: 找不到或无法加载主类 com.xxx.Application 可能是程序有重复类冲突、
2021-03-31 14:27:09 302
原创 go time.Time beego 时间显示 到模板引擎 redis 缓存后显示
go time.Time beego 时间显示 到模板引擎 redis 缓存后显示beego.AddFuncMap("stringtotime", FormatTime)func Stringtotime(str interface{}) string{ switch str.(type) { case string: t ,err := time.Pars...
2019-11-06 20:20:37 659
原创 go fyne 跨平台开发框架 gui 编程 抖音下载 去水印编程 学习交流
package filetoolimport ( "os" "path/filepath" "strings")/*获取程序运行路径*/func GetCurrentDirectory() string {dir, err := filepath.Abs(filepath.Dir(os.Args[0]))if err != nil {}retur...
2019-10-07 17:53:01 2874
原创 python + selenium +pyquery 爬虫 爬取 1688详情图片 阿里巴巴详情图片 与标题 下载图片并进行压缩
python + selenium +pyquery 爬虫 爬取 1688详情图片 阿里巴巴详情图片 与标题 下载图片并进行压缩用到的库和源码下载地址 需要用到chromedriver 包含windows mac linux 64位的库https://download.csdn.net/download/fj_ut/11575156# -*- coding: utf-...
2019-08-17 23:16:54 1460
原创 开源 go语言 go版本 bbs 下载 打包 发布pybbs-go
github下载go项目运行如果再goland下是红色分别再terminal下运行go getgithub.com/astaxie/beego开源 go语言 go版本 bbs 下载 打包 发布pybbs-go下载https://github.com/tomoya92/pybbs-gogoland 打开 把github.com前缀去掉 进行 impor...
2019-08-14 21:55:27 273
原创 解析二维码推荐gozxing 支持斜的图片 github.com/tuotoo/qrcode 斜的解析不出来
csdn 搜索解析和生成二维码 解析二维码 用方法二 斜的图片也可以识别 方法一的库不行(代码来源github与 csdn)解析二维码推荐gozxing 支持斜的图片 github.com/tuotoo/qrcode 斜的解析不出来b.png图片有点模糊就解析不出来比如这张图1源码"github.com/tuotoo/qrcode" ...
2019-08-10 18:52:00 1314 2
原创 java 公众号乱码 问题图片上的文字乱码 或者说 中文 显示方块 中文显示方块
1、图片上的文字乱码 或者说 中文 显示方块 中文显示方块使用的是 JAVA 合成图片Graphics2D g = background.createGraphics();时候图片上的中文乱码解决方案微软雅黑 window下一个文件 复制出来后是两个文件https://blog.csdn.net/qin_weilong/article/de...
2019-08-09 22:47:01 290
转载 vue点击图片查看大图 图片查看大图 查看大图插件 vue-photo-preview
转载(blog.csdn.net/qq_27721169/article/details/82735013)vue点击图片查看大图使用插件 vue-photo-preview转载(blog.csdn.net/qq_27721169/article/details/82735013)版权声明: https://blog.csdn.net/qq_27721169/article/detail...
2019-07-24 13:11:25 2884
原创 学习go beego 使用Beego构建完整web项目 beego是Go生态中最受欢迎的框架之一,社区活跃、入门迅速。
使用Beego构建完整web项目 beego是Go生态中最受欢迎的框架之一,社区活跃、入门迅速。https://www.imooc.com/search/?words=beego1.安装Go环境2.安装或者升级Beego和Bee的开发工具$ go get -u github.com/astaxie/beego$ go get -u github.com/beego/bee...
2019-06-19 22:12:50 510
原创 Error:(1, 0) Plugin with id 'com.android.application' not found
android 编译错误 Error:(1, 0) Plugin with id 'com.android.application' not found. 解决如果出现如上错误,只需要在build.gradle中添加下面代码即可:buildscript { repositories { jcenter() // or mavenCentral()
2017-12-15 13:57:33 142
原创 mac 10.11.6 安装 nginx
mac 10.11.6 安装 nginxxxMacBook-Pro:redis-bin xx$ brew install nginxUpdating Homebrew...==> Auto-updated Homebrew!Updated 2 taps (homebrew/core, josegonzalez/php).==> New Formulaeddgr
2017-12-13 15:24:43 1408
翻译 Caused by: java.lang.NoSuchMethodException: callDrawGLFunction [long]
https://stackoverflow.com/questions/42687553/android-nosuchmethodexception-calldrawglfunctionhttp://blog.csdn.net/g984160547/article/details/78459486webview 在coolpad a8 930
2017-12-12 16:55:56 2071
python + selenium +pyquery 爬虫 爬取 1688详情图片 阿里巴巴详情图片 与标题 下载图片并进行压缩 仅供学习交流使用 .zip
2019-08-17
imooc_beego.zip
2019-06-19
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人