Linux Commands Java Developers Must Master - Learn to Use

"Font color='blue'> Confucius said:" If you want to do a good job, you must first use the weapon. "</font> Be a positive personCode, fix bug s, improve yourself I have a paradise for programming, spring blossoms! Learning should be happy. In this paradise, I try to make myself use of simple and easy to understand (funny ...

Added by fipp on Sat, 27 Jul 2019 07:04:48 +0300

Current Limitation for Internet High Concurrency

RPC remote invocation can be cross-platform. HTTP protocol is generally adopted. Socket technology is used in the bottom layer, so long as the language supports socket technology, it can communicate. Open platforms generally use http protocol because they support more languages. Reprint address: htt ...

Added by SiriusB on Thu, 25 Jul 2019 10:37:09 +0300

Java Second Kill System Practical Series ~Integrating Shiro to Realize User Logon Authentication

Summary: This blog is the fifth in the series of "Java Second Kill System Actual Warfare Articles". In this blog, we will integrate the authority authentication-authorization framework Shiro to realize the user's login authentication function. It is mainly used to require users to restrict the user's login when they rush to buy goods ...

Added by marinedalek on Sun, 21 Jul 2019 10:13:20 +0300

Spring Cloud Learning: Feign Declarative Service Call

1. Introduction to Feign Ribbon was used before, but it would be troublesome to splice parameters for each interface. Feign can be understood as adding a layer of encapsulation to Ribbon so that we don't have to deal with those troublesome parameters when invoking the service. 2. Code Implementation Create a new Feign service pom.x ...

Added by jrd on Fri, 19 Jul 2019 06:46:04 +0300

Spring AOP+Log4j Logs Project Logs

For reprinting, please indicate the source: http://www.cnblogs.com/Joanna-Yan/p/6567672.html  Project log is an indispensable part of project development and operation. With it, the system can be controlled as a whole and any problems can be traced. If log processing is carried out with pure OOP idea, it will be found that every logical part wi ...

Added by usamaalam on Sat, 13 Jul 2019 03:16:51 +0300

HttpClient+Jsoup Grab Web Page Information (NetEase Precious Metals for example)

Tell me more about what you are going to do today. Use HttpClient and Jsoup technology to capture web page information.HttpClient is a client programming toolkit that supports the HTTP protocol, and it supports the HTTP protocol. jsoup is a web page HTML parser based on Java platform, which can directly parse a URL address, HTML text content, a ...

Added by rkumar on Tue, 09 Jul 2019 20:40:18 +0300

ActiveMQ (08): Transport Protocol and Configuration Supported by ActiveMQ

I. Brief IntroductionConnector: ActiveMQ provides the function of connecting and communicating. Including: client-to-broker, broker-to-broker. ActiveMQ allows clients to connect using multiple protocols.Configure Transport Connector, in conf/activemq.xml, roughly as follows:<transportConnectors>     <!-- DOS&nb ...

Added by pspeakman on Tue, 09 Jul 2019 01:52:59 +0300

How to Use Presenter and ViewHolder--Android TV Application Development Tutorial 3

Copyright Statement: This article is an original translation of the blogger's articles. Please indicate the source of the reproduced articles. Recommend:Welcome to my Android TV profile, and I will regularly share some Android Tv related content with you.http://www.jianshu.com/c/37efc6e9799b I. Learning Objectives of this Chapter In the pre ...

Added by kubis on Mon, 08 Jul 2019 21:38:04 +0300

Apache configures HTTPS functionality

apache configures https1. yum installs OpenSSL and openssl-devel, httpd-devel2. Generate certificates (which can also be obtained from the company's certification authority):#Create server key OpenSSL genrsa-des3 1024 >/usr/local/apache/conf/server.key    # Remove passwords from keys (to avoid being asked for passwords af ...

Added by kaos057 on Sat, 06 Jul 2019 01:54:38 +0300

Executor Startup and Task Submission for spark Source Code Analysis

Task submission process Summary The start-up process of Spark's Master and Worker are expounded. The next step is the Executor process on Worker. This article continues to analyze the whole process of Executor startup and task submission. Spark-submit It is Spark-submit that submits a task to the cluster Start its main class by starting the s ...

Added by DanArosa on Fri, 05 Jul 2019 00:48:03 +0300