目标: 利用RabbitMQ实现消息重试和失败处理,实现可靠的消费消费。在消息消费异常时,自动延时将消息重试,当重试超过一定次数后,则列为异常消息,等待后续特殊处理。 准备: TTL:Time-To-Live,通过给消息、队列设置过期时间(单位:毫秒),来控制消息、队列的生命周期。在达到时间后,消息 ...
分类:
其他好文 时间:
2019-01-17 20:03:24
阅读次数:
291
原文:WPF跨程序集共享样式(跨程序集隔离样式和代码)前记:WPF中的样式使用一般分为两种Statci和Dynamic.两者的区别可以理解为,前者在运行的时候已经确定了样式的风格,而后者可以根据资源在运行时的修改而修改也可以使用那些在运行时才存在的资源。 背景:有时候我们会将样式的资源和XAML页面... ...
public class Solution { public List letterCombinations(String digits) { LinkedList ans = new LinkedList(); if(digits.length() == 0) return ans; String ...
分类:
其他好文 时间:
2019-01-14 10:48:53
阅读次数:
157
原文地址:https://segmentfault.com/a/1190000014842868 简化版地址:https://scrimba.com/c/cgaZLh6 感想:笨蛋,想不出自己的东西。。。 HTML代码: CSS代码: ...
分类:
Web程序 时间:
2019-01-14 01:01:07
阅读次数:
258
Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target. ...
分类:
其他好文 时间:
2019-01-13 21:41:39
阅读次数:
145
是不是遇到MAYA/CAD/3DSMAX/INVENTOR安装失败?AUTODESK系列软件着实令人头疼,MAYA/CAD/3DSMAX/INVENTOR安装失败之后不能完全卸载!!!(比如maya,cad,3dsmax,inventor,revit等)。有时手动删除注册表重装之后还是会出现各种问题 ...
分类:
其他好文 时间:
2019-01-13 21:10:20
阅读次数:
3660
The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He was a member of the Oulipo group. A quote fr ...
分类:
其他好文 时间:
2019-01-13 19:10:58
阅读次数:
189
Problem: There is a box protected by a password. The password is n digits, where each letter can be one of the first k digits 0, 1, ..., k-1. You can ...
分类:
其他好文 时间:
2019-01-13 12:25:35
阅读次数:
311
css3为了区分伪类和伪元素,伪元素采用双冒号写法。 常见伪类——:hover,:link,:active,:target,:not(),:focus。 常见伪元素——::first-letter,::first-line,::before,::after,::selection。 ::before ...
分类:
其他好文 时间:
2019-01-12 10:37:58
阅读次数:
197
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: [ ...
分类:
其他好文 时间:
2019-01-12 10:36:19
阅读次数:
114