Maven tool advanced usage
Note: in maven, if A ----- > b -------- > C is introduced into the project, BC can be automatically introduced!!! How to achieve???Analysis principle of Maven tool:1). When the user relies on the jar package through the dependency tag, maven tool will look for the modified jar package file in the local warehouse ...
Posted by lostnucleus on Sat, 07 May 2022 06:01:37 +0300
Introduction to Shiro Security Framework
Overview of Shiro
Shiro is an open source security framework under apache ( http://shiro.apache.org/) It extracts the functions related to the security authentication of the software system, realizes the functions of user identity authentication, authority authorization, encryption, session management, e ...
Posted by battlesiege on Sat, 07 May 2022 05:13:50 +0300
Detailed business code introduction of jt project
1) Business introduction:
1.1) anonymous access
~~~~
Users access jt.com via Com enters the JT home page. At this time, it is an anonymous user. If the user visits the shopping cart module or order module, the interceptor will intercept this request and redirect it to the user login page.
Speci ...
Posted by deepermethod on Sat, 07 May 2022 05:08:26 +0300
As a message middleware supporting JMS specification, activeMq, as the third party between the sender and receiver, can decouple the system application, make the message asynchronous transmission and processing, and even solve the problem of traffic peak. Support point-to-point and point to many (subscription publish) modes. (other peers includ ...
Posted by stokie-rich on Fri, 06 May 2022 22:46:36 +0300
A brief overview of the principle
The various starter s of springboot are simply to load the configuration classes @Configuration in various dependency packages. These configuration classes must be org.springframework.boot.autoconfigure.EnableAutoConfiguration in the spring.factories file in the resources/META-INF directory of the module. decl ...
Posted by depojones on Fri, 06 May 2022 10:15:12 +0300
The cause of this fight is all attributed to iOS. Why do you say that http requests will not be sent? What nonsense (ps: he should not see...).
Let's talk about another bug we've found in the conflict for a long time. Because this is closely related.
Filters in SpringBoot
The filter should be very common, but your filter really plays the role o ...
Posted by Liam-PHP on Fri, 06 May 2022 01:44:08 +0300
Note: the source code in this document comes from: spring-rabbit-2.1.8 RELEASE. jar
rabbitmq message persistence storage includes the following three aspects:
1. Persistence of exchange
2. queue persistence
3. message persistence
Persistence of exchange
When declaring exchange, there is a parameter: durable. When the parameter is true, ...
Posted by discofreakboot on Thu, 05 May 2022 15:50:47 +0300
brief introduction
Spring Cloud is one of the projects under spring. The official website address is: http://projects.spring.io/spring-cloud/ Spring is best at integration, taking the best framework in the world and integrating it into its own projects. Spring Cloud is the same. It integrates some popular technologies and realizes functions su ...
Posted by conor.higgins on Thu, 05 May 2022 12:58:14 +0300
spring boot – how the boot configuration works
1, @ SpringBootApplication annotation
When we create a new project, the springboot application startup portal will appear, as shown below:
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
...
Posted by waltonia on Wed, 04 May 2022 23:05:10 +0300
1. Reverse proxy
1.1 Reverse proxy concept
The reverse proxy server is located between the user and the target server, but for the user, the reverse proxy server is equivalent to the target server, that is, the user can obtain the resources of the target server by directly accessing the reverse proxy server. At the same time, the user does not ...
Posted by mikebyrne on Wed, 04 May 2022 20:52:42 +0300