Do you think what you think is what you think? Record a joint debugging process of peer-to-peer server notification

Two systems of the company. Our A system should send A business contract application to B system. After receiving the data, system B will process it asynchronously and send A notice to our system A after signing. The interface document indicates that the asynchronous notification is sent through the post request of http protocol, and the me ...

Posted by powlow on Fri, 13 Dec 2019 02:44:22 -0800

Introduction to Spring AOP and its underlying implementation mechanism -- dynamic proxy

AOP introduction AOP (aspect oriented programming) is called: aspect oriented programming, which is a kind of programming idea. AOP is the continuation of OOP (Object Oriented Programming) AOP adopts horizontal extraction mechanism to replace the traditional vertical inheritance system of repetitive code writing (such as performance monitori ...

Posted by frANZi on Thu, 12 Dec 2019 23:43:41 -0800

Four registration postures of Listener in spring boot series

Filter and servlet, the three elements of java web, are introduced respectively. Next, let's take a look at the related knowledge points of Listener. The main content of this blog is how to customize the Listener and register it to the spring container in the spring boot environment <!-- more --> I. environment configuration 1. Project co ...

Posted by madcat on Thu, 12 Dec 2019 22:01:42 -0800

Spring boot integrated email sending

This section describes how to quickly configure and send mail for spring boot project, including simple mail configuration, sending simple mail, sending HTML mail, sending mail with attachments, etc. The sample source code is: https://github.com/laolunsi/spring-boot-examples I. mailbox configuration To ensure that the client login service is e ...

Posted by YourNameHere on Thu, 12 Dec 2019 13:41:06 -0800

day 7 - 1 collection, copy and basic data type summary

Set: {}, variable data type. The elements in it must be immutable data type, unordered and not repeated. (unimportant)The writing of set set1 = set({1,2,3}) #set2 = {1,2,3,[2,3],{'name':'alex'}} #Wrong print(set1) #print(set2) set = {'alex','wusir','ritian','egon','barry'} add update set.add("goddess") print(set) set.add("abc") print(set) ...

Posted by npsari on Thu, 12 Dec 2019 12:15:59 -0800

Mybatis integrated spring detailed course (suitable for beginners)

Catalog 1. Integration ideas 2. Integrate the required jar package 3. Steps of integration 4. Two implementation methods of Dao development 6. Summary of Dao's development @ Mybatis integration of spring is actually the integration of SM in SSM framework. 1. Integration ideas The id ...

Posted by shakuni on Thu, 12 Dec 2019 04:40:54 -0800

Spring Boot crater record (@ SpringBootApplication conflicts with @ ComponentScan)

I. Introduction Let's take a look at the phenomenon. You can go first Here Download the code. A brief introduction to the inner class package com.iceberg.springboot.web; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication //@ComponentScan("com.iceberg.s ...

Posted by tllewellyn on Thu, 12 Dec 2019 00:57:45 -0800

Secondary development of POI TL

poi-tl It is a very easy to use word template generation library, with fast update response and complete document demo. Can be called the word template world's small Sabre! Written in front If you are familiar with or interested in word template technology, or even have been exposed to it at work, then the next content should give you somethi ...

Posted by hd_webdev on Wed, 11 Dec 2019 22:47:14 -0800

Spring cloud learning - Hystrix first understands Hystrix, and calls Feign remotely

[TOC] 1. Get to know Hystrix Hystrix is a delay and fault-tolerant library, which aims to isolate remote systems, services and third-party libraries, organize cascading failures, and realize recovery capability in distributed systems with load. In the case of multiple systems and microservices, a mechanism is needed to deal with delays and fail ...

Posted by Highland3r on Wed, 11 Dec 2019 20:50:56 -0800

[original] 004 | get on the special spring boot transaction weird event analysis vehicle

Preface If this is the second time you see the teacher, you are coveting my beauty! Like + pay attention again, form habit It doesn't mean anything else. It just needs your camera screen^_^ This series of articles At present, it's the fourth part of the series. This topic is to explain the spring boot source code in depth. After all, it's sourc ...

Posted by bubblewrapped on Wed, 11 Dec 2019 19:43:06 -0800