自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

SilverLong专栏

程序员的命运

  • 博客(276)
  • 资源 (20)
  • 收藏
  • 关注

原创 网关的技术选型

基于不同的业务场景,选择不同的API网关组件,应对不同的系统流量和并发数。不同的业务场景,在技术选型上也是及其重要的一环。

2023-05-18 09:19:13 245 1

转载 掌握了这个 Java诊断 神器,我成了公司 疑难杂症 “砖家“!

Arthas 是Alibaba开源的Java诊断工具,动态跟踪Java代码;实时监控JVM状态,可以在不中断程序执行的情况下轻松完成JVM相关问题排查工作。支持JDK 6+,支持Linux/Mac/Windows。这个工具真的很好用,而且入门超简单,十分推荐。

2022-12-19 10:02:13 261

转载 瞧瞧别人家的API接口,那叫一个优雅

在实际工作中,我们需要经常跟第三方平台打交道,可能会对接第三方平台API接口,或者提供API接口给第三方平台调用。那么问题来了,如果设计一个优雅的API接口,能够满足:安全性、可重复调用、稳定性、好定位问题等多方面需求?今天跟大家一起聊聊设计API接口时,需要注意的一些地方,希望对你会有所帮助。为了防止API接口中的数据被篡改,很多时候我们需要对API接口做。接口请求方将 + + 拼接成一个字符串,然后通过等hash算法,生成一个前面sign。然后在请求参数或者请求头中,增加sign参数,传递给API接口

2022-12-19 10:01:09 216

转载 继电器BS-RL0404A

适用于各类电气设备使用的多功能控制器,集节能、控制、Wifi传输功能于一体,可以灵活实现远程控制管理功能,并通过Wifi方式将数据传输至服务器或管理员手机。本设备有4路数字IO采集输入通道,足以满足大部分机房、教室等场景的开关需求;设备有4路继电器输出,可控制电气设备的电源输入,也可联动其他设备。操作简便,运行稳定、可靠,符合室内环境的规范要求。同一型号产品可能有多个版本,不同版本的产品会存在差异(包括功能参数、LOGO设计、外观细节、产品资料等),请以实物为准。

2022-11-18 09:58:03 123

转载 水电综合预警管理系统

水电综合预警管理平台能通过物联网技术对电气引发火灾的主要因素(导线温度、电流、电压和漏电流)进行不间断的数据跟踪与统计分析,实时发现电气线路和用电设备存在的安全隐患(如:短路、过载、过压、欠压及漏电等),有效防止电气火灾的发生。同时系统能通过水位传感器实时监控集水坑水量,避免造成集水过剩导致的资源浪费现象以及延伸危害现象出现。

2022-11-18 09:49:21 195

转载 11.17复盘,虽然净值继续新高,但感觉状态不太行

然后讲一下现在医药的情况,核心中的核心是以岭药业,可以说以岭药业倒了,医药线的炒作就宣告结束,这点和众生药业那轮不一样,众生即使倒了,医药也不会倒,具体的逻辑写在隔壁星球了。写了很久的药房和维生素C今天终于是碰板了,第一医药,首板之前挖掘,浙江震元,也是前几天挖掘的,至于还能挖啥,好像真没思路了……b.半导体维持观点不变,继续看,医药如果弱了,半导体很有可能接棒,除了巴菲特和机构喊的周期,传闻还有政策补贴,重点看模拟芯片,然后光刻胶这块今天大涨是受传闻影响,看明天的持续性,首选应该还是模拟这块。

2022-11-18 08:54:38 226

转载 Spring Boot 如何快速过滤出一次请求的所有日志?

本文讲述了如何使用MDC工具来快速过滤一次请求的所有日志,并通过装饰器模式使得MDC工具在异步线程里也能生效。有了MDC,再通过AOP技术对所有的切面植入requestId,就可以将整个系统的任意流程的日志过滤出来。使用MDC工具,在开发自测阶段,可以极大地节省定位问题的时间,提升开发效率;在运维维护阶段,可以快速地收集相关日志信息,加快分析速度。

2022-11-18 08:46:39 121

转载 【干货】如何防止接口重复提交?(下)

在上一篇文章中,我们详细的介绍了随着下单流量逐渐上升,为了降低数据库的访问压力,通过请求唯一ID+redis分布式锁来防止接口重复提交,流程图如下!每次提交的时候,需要先调用后端服务获取请求唯一ID,然后才能提交。对于这样的流程,不少的同学可能会感觉到非常鸡肋,尤其是单元测试,需要每次先获取值,然后才能提交!能不能不用这么麻烦,直接服务端通过一些规则组合,生成本次请求唯一ID呢?答案是可以的!今天我们就一起来看看,如何通过服务端来完成请求唯一 ID 的生成?

2022-11-17 08:36:53 1156

转载 【干货】如何防止接口重复提交?(中)

在上一篇文章中,我们详细的介绍了对于下单流量不算高的系统,可以通过请求唯一ID+数据表增加唯一索引约束这种方案来实现防止接口重复提交!随着业务的快速增长,每一秒的下单请求次数,可能从几十上升到几百甚至几千。面对这种下单流量越来越高的场景,此时数据库的访问压力会急剧上升,上面这套方案全靠数据库来解决,会特别吃力!对于这样的场景,我们可以选择引入缓存中间件来解决,可选的组件有 redis、memcache 等。下面,我们以引入redis缓存数据库服务器,向大家介绍具体的解决方案!

2022-11-17 08:35:55 1125

转载 【干货】如何防止接口重复提交?(上)

对于投入运营的软件系统,最近小编在巡检项目数据库的时候,发现某些表存在不少的重复数据,对于这样的脏数据,初步分析大致的来源有以下可能:1.由于用户误操作,多次点击表单提交按钮2.由于网速等原因造成页面卡顿,用户重复刷新提交页面3.黑客或恶意用户使用 postman 等网络工具,重复恶意提交表单这些情况都可能会导致表单重复提交,造成数据重复,比如订单表,重复提交订单数据所造成的问题,可能不仅仅是数据上的混乱,也会造成业务混乱。那么问题来了,我们该如何防止用户重复提交数据呢?方案实践如下!

2022-11-17 08:34:23 1546

转载 THE CURE FOR THE COMMON THEME

"If you're looking for high quality design, experience, and professionalism, then you've found your solution with Themedy. The Hodder bros. have a unique knack for delivering the looks you want with

2014-04-07 20:48:57 1069

转载 Google Redirect Virus Removal Tool

If You Know How To Copy A File, My Guaranteed Solution Will Help You Remove All Traces Of The Redirect Virus.Over the years, I’ve helped thousands of people (

2014-04-01 21:08:41 1170

转载 Video Traffic Academy

Start taking advantage of YouTube to drive traffic, build your brand, generate leads & boost your revenue!Get more traffic now!Your business will grow if you start

2014-02-08 11:59:51 1294

转载 Auto Mass Traffic Generation Software

Secure Your Copy NOW For AOne Off 88% Discounted Price of $37

2014-02-07 12:03:49 1937

转载 The CB Passive Income

"Your Opportunity To CLONE My Entire Affiliate Marketing System Today!"The Best Part Is, This System Works In China And Anywhere Around The World!In H

2014-02-07 11:50:46 1308

转载 Z-Code System

After Years Of Live Beta-testing On Facebook In Front Of Over 12,315Fans, Z-Code Finally Goes Private!February 05, 2014: From The Desks of: Ron, Mike and SteveDear Facebook Follower

2014-02-06 10:59:56 1394

转载 Never Worry About Money Again!

Dear Friend!STOP!Read. Very. Slowly.If you've ever wanted to leverage FREE MONEY, just like rich people do...With ZERO risk of loss...My exclusive Bonus Bagging Loo

2014-02-01 11:00:49 1635

转载 Cpanel Website Backup Software - Must Have

Here’s How To Protect Your Online Revenue From Hackers, Mistakes, And Server Meltdowns…“Easy To Use SoftwareLets You Backup Your Valuable WebsitesEven While You Sleep!”Your investment is 1

2014-01-30 10:45:11 1088

转载 Niche Website Templates

I am not much of a copywriter. I am designer and a programmer. So here's what this page is all about...What I have is a new mini-site template that is different from what you normally see. It's

2014-01-29 12:09:29 1278

转载 Themedy Thesis & Genesis Skin Club

Instant WordPress ThemeThat Matches Your Website!Introducing Theme MatcherInstant Online and Automatic HTML to WordPress Converter!                       St

2014-01-29 10:55:34 3711

转载 Lunarpages Internet Solutions

Simple Web Hosting For Everyday SolutionsIncludes Unlimited: Storage • Bandwidth • Databases • Domains • FTP AccountsManageable Control PanelPlus Free: Domain Name • SSL • Shopping Cart

2014-01-29 09:54:58 1183

转载 Instant Book Writing Kit.

Looking To Beat The Recession? This Could Be Your Way..."If you're looking to fast-track your book or ebook publishing efforts, Fawcett's book is a MUST. It's a complete "brain dump" of exactly how

2014-01-28 17:04:09 3384

转载 Photography Masterclass

Do you own a DSLR but still take average, boring photos?“Now You Can Master Any DSLR Camera AndTake Gorgeous, Attention-Grabbing Photos By Following Step-By-Step Video Tutorials!”“

2014-01-28 16:45:32 1845

转载 The Serenity Path

Free PresentationThe One Secret a Spiritual Master Whispered into My Ear That Changed My Life ForeverObey this one secret to get anything you want.Ex Wall St. Junky Reveals His Pat

2014-01-28 15:47:44 1849

转载 For The Love Of Ebooks More Ebooks And Even More Ebooks

For the love of plr ebooks, more plr ebooks, and even more plr ebooks!"Your Own Brand Of TOP NOTCH, Niche PLR Ebooks...You Won't Have To Spend Hundreds Of Dollars...You Won't Need To Write A W

2014-01-27 20:47:55 1971

转载 How To Write Your Own Ebook(r) In 7 Days!

How To Write and Publish Your Own Ebook“How to write, publish, &sell yourown OUTRAGEOUSLY Profitable eBookin as little as 7 days – even ifyou can’t write, can’t type andfailed

2014-01-27 20:08:09 2409

转载 Realms Of Joy - Time Of Light.

"How You Can Master Holographic Time to Gain Extreme Wealth and Peace - Truths and Exercises to Help You Live in Joy and Light!"I want to say a very big thank you for allowing me to share

2014-01-27 19:51:20 1152

转载 Paid For Pictures - Turn Your Camera Into Cash!

ATTENTION: If You Are Not Making Money Online, You NEED to SEE This...!I'm about to share with you the exact system I use to pull in up to $1700 in under 4 hours... Now you can be pulling

2014-01-27 17:20:42 3147

转载 Create Hot Selling Video Info Products In 20 Minutes!

Quick Profits Could be Yours Within a Few Hours From Now…Discover the Amazing Push-Button Software That Creates Hot Selling Video Info-Products in as Little as Twenty Minutes that People WAN

2014-01-27 17:03:33 4566

转载 Barry Boswell's Fusion Trading System

Intelligent Investing! Creating a fusion between stocks & options that has produced a 94% win rate!Limited Time Offer: Happy Holidays!Special 30% Discount!Join Now For Only $67!A

2014-01-27 16:39:22 1999

转载 The Busy Parents Guide To A Digital World

Ready to Parent Like You Didn’t Think You Could?The Only Program on the Market That Teaches You How To BecomeA New Kind of ParentA Parent in the Digital WorldHi there – My name is Da

2014-01-27 16:19:02 2655

转载 Social Marketing Tribe

“How ANYONE Can Leverage Social Mediain Today's Marketplace”(...even if you are just starting, are flat broke and can barely turn on a computer.)Click Here to Get Started Now"I Was

2014-01-27 11:31:33 5547

转载 New* Government Grants & Free U.s Money.

*NEW 2014 Special Pricing! Save $10!*Welcome, thank you for taking the time to learn about us. Below is an overview of our company.Over the past 4 years, Grants for All has helped hundre

2014-01-27 10:54:00 1125

转载 Fast Easy Blogging

All the experts tell you that your blog is the best way to market your business online (and it IS)…but you struggle to write posts regularly. I’ll show you how I easily keep my blog up-to-date, get mo

2014-01-27 10:27:53 1370

转载 Learn to create & run a profitable online store

This Whole Course Should Cost $1,000s Of Dollars But Not If You Order Today!& What Are WebStore Blueprint Members SayingAbout The Course?"Definitely A Must Have For Anyone

2014-01-27 10:20:57 1020

转载 Flower Design Training Membership

ATTN:  BEGINNERS & DO-IT-YOURSELF STUDENTS!!Now YOU Can Create Beautiful Flower ArrangementsFor ANY Occasion In Just 30 Minutes or Less…GUARANTEED!BECOME the Floral Designer

2014-01-27 09:42:30 1011

转载 Option Income System

"Discover How To Generate Income From The Stock Market Whether It Goes Up,Down, or Sideways. You Have Never Seen Anything Like This Training Before."You Are About To Learn Option Trading '

2014-01-26 21:51:50 1449

转载 Forex X Code

What makes this indicator unique is that it is not generating falsesignals - almost every trade is profitableThis FX indicator can now avoid ALMOST 100% OF FALSE SIGNALS and TELL YOU EXACTLY W

2014-01-26 21:19:19 2332

转载 The Lotto Black Book

Oklahoma Professor Gets SHOT In The Leg After Winning The BIG Lotto Prize Three Times In a RowWant To Be the Next Millionaire for Just $97?Click the "Add To Cart" Button Below...

2014-01-26 20:21:13 1068

转载 Binary Options Trading Signals Live!

Are You Looking To Potentially EARN More Profits Every Week Simply By Watching And Copying A Live Professional Trader? With Binary Options Trading Signals, Trading Just Got Easy!If you have alread

2014-01-26 16:37:04 1244

IIS-配置-二级域名.doc

IIS-配置-二级域名 假设您一级域名为first.cn,域名指定的主机允许ping命令。 那么先ping 您的一级域名first.cn 如果ping成功,则测试其是否支持域名支持泛解析. 在您的一级域名前面加入任何字符如 xx.first.cn, 如果ping 不通,则代表不支持,请跳至2;如果ping通代表泛解析功能已开通,请跳至

2020-03-24

webfrom 下简单的RDLC.docx

webfrom 下简单的RDLC 1、网上下载 下面的DLL 版本为11 Microsoft.ReportViewer.Common.dll , Microsoft.ReportViewer.ProcessingObjectModel.dll , Microsoft.ReportViewer.WebForms.dll,

2020-03-24

web服务器配置(图文详解).docx

Web服务器配置,是在服务器上部署站点,并设置好相关的参数,至于站点上需要放置的网站程序,应该由开发人员制作并上传到服务器中,这个工作不属于Web服务器配置的工作。

2020-03-24

f_splitstr(分割字符串).sql

f_splitstr(分割字符串),根据业务可自行设定需要分割的字符串。

2019-10-29

ft_bigID(生成19位的Long Integer类型的数据).sql

ft_bigID(生成19位的Long Integer类型的数据),生成唯一的随机码。

2019-10-29

SQL自动生成JSON数据.docx

SQL自动生成JSON数据,后台直接生成JSON并可以存储到数据表或前端程序调用

2019-10-29

un lock(数据库解锁).sql

数据库解锁通脚本,通过查询锁的级别,来观察和解锁数据表。

2019-10-29

TreeView树形

TreeView树形

2008-04-28

小区物业管理系统 FOR C#

小区物业管理系统 FOR C#

2008-03-24

McAfee8.5i&AntiSpy&Patch 1集成优化版.part5.rar

McAfee8.5i&AntiSpy&Patch 1集成优化版.part5.rar

2008-03-21

McAfee8.5i&AntiSpy&Patch 1集成优化版.part4.rar

McAfee8.5i&AntiSpy&Patch 1集成优化版.part4.rar

2008-03-21

McAfee8.5i&AntiSpy&Patch 1集成优化版.part3.rar

McAfee8.5i&AntiSpy&Patch 1集成优化版.part3.rar

2008-03-21

McAfee8.5i&AntiSpy&Patch 1集成优化版.part2

McAfee8.5i&AntiSpy&Patch 1集成优化版.part2

2008-03-21

McAfee8.5i&AntiSpy&Patch 1集成优化版

McAfee8.5i&AntiSpy&Patch 1集成优化版.part1<br>McAfee8.5i&AntiSpy&Patch 1集成优化版.part2<br>McAfee8.5i&AntiSpy&Patch 1集成优化版.part3<br>McAfee8.5i&AntiSpy&Patch 1集成优化版.part4<br>McAfee8.5i&AntiSpy&Patch 1集成优化版.part5

2008-03-21

华为新员工培训资料(具全)

华为新员工培训资料(具全)

2008-03-10

我集合了网上的一些有用的Delphi函数和方法

Delphi6函数和方法,压缩文件中包含了,一些第三方的控件。

2008-03-10

我集合了网上的一些有用的PB函数和方法

我集合了网上的一些有用的PB函数和方法

2008-03-10

超强备份sql2000数据库的PB程序

超强备份sql2000数据库的PB程序

2008-03-10

PowerBuilder8.0参考手册

PowerBuilder8.0参考手册

2008-03-10

C#完全手册中文版电子书

C#完全手册中文版电子书

2008-03-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除