配上去
springboot项目如何把数据加入缓存中(用@Cacheable注解)
cacheablespringboot项⽬如何把数据加⼊缓存中(⽤@Cacheable注解)PS:如有问题,评论留⾔。先引⼊依赖<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-cache</artifactId>&...
Golang在windows下编译Linux可执行文件,并部署到linux服务器上
Golang在windows下编译Linux可执⾏⽂件,并部署到linux服务器上Windows 下编译Linux 64位可执⾏程序修改之前SET CGO_ENABLED=1SET GOOS=windowsSET GOARCH=amd64修改后SET CGO_ENABLED=0SET GOOS=linuxSET GOARCH=amd64go //go build 我...