会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
谋定而动
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
下一页
2021年7月29日
Nginx 实现请求接口转发;
摘要: 需求:服务器对外开放端口5002; 实际服务端口9010 ; 利用Nginx实现请求5002 时候自动跳转请求9010的服务; Nginx配置如下 user www www;worker_processes auto;error_log /www/wwwlogs/nginx_error.log cr
阅读全文
posted @ 2021-07-29 09:59 三弄梅花
阅读(2161)
评论(0)
推荐(0)
2021年7月23日
Springboot 配置文件和lib 独立打包;jar文件
摘要: springboot jar 打包时候文件非常大;不利于更新和升级; 1、Pom文件 <build><!-- <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-pl
阅读全文
posted @ 2021-07-23 23:04 三弄梅花
阅读(687)
评论(0)
推荐(0)
2021年7月21日
Linux Redis安装后启用远程连接需要修改的配置
摘要: 1、修改redis服务器的配置文件vi redis.conf 注释以下绑定的主机地址# bind 127.0.0.1 2、修改redis服务器的参数配置 修改redis的守护进程为no ,不启用127.0.0.1:6379> config set daemonize "no"OK 修改redis的保
阅读全文
posted @ 2021-07-21 20:51 三弄梅花
阅读(149)
评论(0)
推荐(0)
2021年5月18日
Springboot+MybatisPlust+ControllerAdvice ;Mybatis_Plus多数据源,controller统一异常返回
摘要: Springboot+MybatisPlus多数据源+controller全局异常返回 1、多数据源 1.1 添加依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0"
阅读全文
posted @ 2021-05-18 21:31 三弄梅花
阅读(119)
评论(0)
推荐(0)
2021年4月30日
Sqlserver 高版本分页
摘要: select * from zd_ksfl order by AID offset 60 rows fetch next 10 rows only --order by ArtistId offset 页数*每页多少条(6也每页10条) rows fetch next (每页条数) rows onl
阅读全文
posted @ 2021-04-30 16:57 三弄梅花
阅读(59)
评论(0)
推荐(0)
2021年4月27日
configClient 访问Configserver提示:No spring.config.import set
摘要: 在Pom.xml添加 以下引用即可<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-bootstrap</artifactId></dependency>
阅读全文
posted @ 2021-04-27 21:20 三弄梅花
阅读(2541)
评论(0)
推荐(0)
2021年3月31日
Delphi 将appid time nonce_str 利用Hmacsha1算法加密之后 再base64编码
摘要: 1、利用D10 以上自带的IdHMACSHA1 var app_secret,sha1Value,base64Value:string;signSrcString:string;bs : TIdBytes;begin appid := 'jzrhvabb71qp5yo08y9d'; time :=
阅读全文
posted @ 2021-03-31 14:45 三弄梅花
阅读(384)
评论(0)
推荐(0)
2021年2月22日
Sqlserver视图添加索引
摘要: 1.创建视图的时候使用 WITH SCHEMABINDING 如下: ALTER View [dbo].[视图名]WITH SCHEMABINDINGAs SELECT xxxxxxx GO 2.运行下面的脚本查明聚集索引有多少行以及视图占用多少空间 EXECUTE sp_spaceused 'I视
阅读全文
posted @ 2021-02-22 17:04 三弄梅花
阅读(1078)
评论(0)
推荐(0)
2021年1月30日
VisualCode Vue模板中Html标签失效解决办法
摘要: 1、先安装插件 Vetur 2、找到setting.json文件 "emmet.includeLanguages": { "wxml": "html", "vue": "html", "vue-html": "html" } 按照上面修改即可
阅读全文
posted @ 2021-01-30 20:47 三弄梅花
阅读(307)
评论(0)
推荐(0)
2021年1月21日
Failed fetching remote preset dcloudio/uni-preset-vue:
摘要: 在利用cli创建uniapp项目的时候经常提示Failed fetching remote preset dcloudio/uni-preset-vue:;解决方法如下: 利用github下载:https://github.com/dcloudio/uni-preset-vue 改过之后红色部分替换
阅读全文
posted @ 2021-01-21 10:31 三弄梅花
阅读(7213)
评论(0)
推荐(0)
上一页
1
2
3
下一页
公告