Squid installation example
Github-blog CSDN-blog
windows version
Proxy Download
http://squid.diladele.com/
Installation configuration
1. Install without stopping next;
2. Remove the default from all the files at the end of default under squid/etc / and change them to conf files
3. Configure the squid.conf file according to the lo ...
Added by Cantaloupe on Thu, 26 Mar 2020 19:16:57 +0200
Hexo Best Practice Recommendations
This practice is actually a directory operation specification that, ultimately for ease of use, requires personalized and frequently changing directories or files to be isolated, initialized with a simple Shell script, and upgraded with the NexT theme.
Note: Summary from personal use may not be suitable for everyone, for reference only.
<! ...
Added by jacksonpt on Wed, 25 Mar 2020 06:01:39 +0200
Serialization Protocol In Action
This article introduces simple practices for several common serialization protocols
ProtoBuf
ProtoBuf is open source with Google and can be compiled across languages.It can be called an IDL, Interface description language.
Download the compiler, protoc protoc-3.11.4-osx-x86_64.zip; download versions of different operating systems.
https://gi ...
Added by neal.pressley on Wed, 25 Mar 2020 05:03:03 +0200
Builder Mode of Creative Mode
1 Overview
As we said earlier Factory Mode and Abstract Factory Mode , let's talk about the builder model.
The builder mode is also a very common creation mode. The two factory modes mentioned earlier hide the properties and construction details of a class, while the builder mode exposes the properties of a class appropriately through the Build ...
Added by g-force2k2 on Sun, 22 Mar 2020 09:04:09 +0200
Abstract Factory Mode for Creative Mode
1 Overview
Last article Speaking of the factory method pattern, it provides a solution for creating class instances without specifying a specific implementation.So why do we need the abstract factory model?
2 Abstract Factory Mode
The abstract factory model is essentially also a factory defined as an entry for class creation, which has the adva ...
Added by bhogg on Sat, 21 Mar 2020 07:53:49 +0200
FPS for iOS Performance Monitoring
FPS.gif
Example Github: WSL_FPS
FPS: Short for Frames Per Second, it means the number of frames transmitted per second, which can be understood as what we often call "refresh rate" (in Hz); FPS measures the amount of information used to store and display dynamic videos.The more frames per second, the smoother the p ...
Added by riffy on Wed, 18 Mar 2020 18:21:10 +0200
Simply encapsulate an elegant Spring Boot global exception handling with enumeration!
Use @ ControllerAdvice and @ ExceptionHandler to handle global exceptions
@ExceptionHandler handles Controller level exceptions
ResponseStatusException
Through this article, you can understand how to handle exceptions in Spring Boot. However, just being able to use it is not enough. We have to think ab ...
Added by ahasanat on Tue, 17 Mar 2020 05:12:50 +0200
guava learning: observer mode
The observer pattern is a common behavioral design pattern.In the native implementation of Java, the Observer interface is implemented by the observer, and the Observable is inherited by the observer.
Write a simple implementation using the Java api below.
Observer code:
public class MyObserver im ...
Added by manitoon on Tue, 17 Mar 2020 04:11:21 +0200
Chapter One Nine Analyses Take You Easily to Explode etcd - Installation Chapter
Catalog
1 Preface
Introduction to 2 etcd
3 etcd architecture
4 etcd installation
5 etcd startup and setup startup
6 Set up etcd cluster
7 Verify etcd cluster
8 etcd operation
1 Preface
If you have any questions about your blog, please let me know.
Introduction to 2 etcd
Etcd is a distributed key-value pair storage system developed by coreos ...
Added by ghjr on Mon, 16 Mar 2020 19:12:44 +0200
Jump between controller s in spring boot tutorial
As shown below, create two controllers to test the jump effect. All of the following jump modes take these two controllers as examples.
♛ 1 sendRedirect mode
response.sendRedirect("redirect: mapping path? Parameter name =" + parameter value);
♛ 2 forward mode
package com.demo.controller.Jump;
import lombok.extern.slf4j. ...
Added by aniket_dj on Sat, 14 Mar 2020 14:44:22 +0200