Recruitment application for thinkp5 to develop OA office system

Development and operation environment: Shenzhou notebook K650D-G6D1 i5-6400 GTX950M Windows 10 professional Nginx or Apache Web server software MySQL 5.7. X database PHP7.1.0 PHPStrom 2017 PowerDesigner 16.5 Axure RP8 Prototype design drawing (recruitment application) Database table (recruitment application): recruitment application ...

Added by marukochan on Sat, 07 Dec 2019 04:11:50 +0200

Project start spring is inexplicably null, null pointer is abnormal, troubleshooting

Before the project, it ran well. As a result, after other related modules updated the code, the project startup reported an error 2019-12-06 08:55:13 [main] ERROR o.s.boot.SpringApplication - Application startup failed java.lang.NullPointerException: null at org.springframework.beans.factory.support.DefaultListableBeanFactory$FactoryAwareOr ...

Added by andymike07 on Sat, 07 Dec 2019 00:40:16 +0200

Prototype mode, strategy mode and observer mode of design mode

I. prototype mode 1. What is prototype mode Clone The prototype pattern is a creation pattern. The word "prototype" indicates that there should be a template instance for the schema change. Users copy an object with consistent internal properties from the template object. This process is also called "cloning". The copied ins ...

Added by iyia12co on Fri, 06 Dec 2019 15:03:32 +0200

Personal rank algorithm based on random walk

The personal rank algorithm based on random walk evolved from Google's pageRank algorithm, which uses less, so to speak, less. As for the pageRank algorithm, I post a blog that I think is well written here pageRank algorithm reference 1. Introduction to personal rank algorithm: The data set is randomly divided into training set ...

Added by elementaluk on Fri, 06 Dec 2019 05:00:51 +0200

[C + +] embarrassment ability of 28 friends

The concept of friend What is friendship? Friend is a relationship in C + + Friendships occur between functions and classes or between classes The relationship of friends is single and cannot be transferred Usage of friends Declare friends in a class with the friend keyword A friend of a class can be another class or a concrete functio ...

Added by Jaspal on Fri, 06 Dec 2019 02:13:34 +0200

SSM integrates activeMQ/activeMQ configuration

I. introduce dependency <!-- xbean as<amq:connectionFactory /> -->     <dependency>         <groupId>org.apache.xbean</groupId>         <artifactId>xbean-spring</artifactId>         <version>3.16</version>     </dependency>     <dependency>         <groupId>org. ...

Added by bad76 on Fri, 06 Dec 2019 01:45:27 +0200

The difference between Runnable and Callable in multithreaded programming

Runnable @FunctionalInterface public interface Runnable { /** * When an object implementing interface <code>Runnable</code> is used * to create a thread, starting the thread causes the object's * <code>run</code> method to be called in that separately executing * thread. * <p> * T ...

Added by dayang on Fri, 06 Dec 2019 01:30:22 +0200

nginx startup process details

The starting process of nginx starts with the main() method of the nginx.c file, in which nginx performs operations such as parsing command line parameters, initializing module indexes, parsing configuration files, initializing modules, starting master, worker, and cache-related processes.This paper starts with the main () method and explains h ...

Added by 01706 on Thu, 05 Dec 2019 13:57:26 +0200

The longest substring without repetition -- LeetCode

Title Description Given a string, please find out the length of the longest substring that does not contain duplicate characters. Type: "abcabcbb" Output: 3 Explanation: because the longest substring without repeating characters is "abc", its length is 3. Enter: "bbbbb" Output: 1 Explanation: b ...

Added by starnol on Wed, 04 Dec 2019 17:38:27 +0200

Priority of and or query in MySQL

This may be a problem that is easy to be ignored. First, we need to be clear:In MySQL, AND takes precedence over OR. That is to say, without the limitation of parentheses (), the AND statement is always executed first AND then the OR statement.For example: select * from table where condition1 and condition2 or condition3 Equivalent to select ...

Added by Wright on Wed, 04 Dec 2019 03:17:23 +0200