Spring Boot -- Integrated Shiro framework

Spring Boot -- Integrated Shiro framework 1. Introduction to Shiro 1.1. What is Shiro Apache Shiro is a powerful and easy-to-use Java security framework that performs authentication, authorization, password and session management, Web integration, caching, etc. At present, more and more people use Apache Shiro because it is quite simple. ...

Posted by ywickham on Mon, 31 Jan 2022 05:32:52 +0100

SpringBoot learning notes [part08] static resource allocation principle

SpringBoot learning notes Part08 1. WebMvcAutoConfiguration SpringBoot starts and loads the xxxAutoConfiguration class (autoconfiguration class) by default. Webmvcoautoconfiguration is the autoconfiguration class of spring MVC function. According to our previous study, open the spring automatic configuration class package in libs, Find webm ...

Posted by xisle on Sun, 30 Jan 2022 22:33:32 +0100

[SpringBoot] SpringBoot -- construction and deployment of the project

7. Project construction and deployment SpringBoot can be embedded with Servlet container, so it is very convenient to deploy. It can be directly packaged into executable Jar package and deployed on the server of Java allowed environment, or packaged into War package and deployed on external Tomcat server. 7.1 Jar deployment Spring boot ...

Posted by disaster77 on Sun, 30 Jan 2022 22:31:23 +0100

springBoot Feature Compilation (Basic)

1. Customize SpringApplication Customize bannnr public static void main(String[] args){ SpringApplication app = new SpringApplication(MySpringConfiguration.class); app.setShowBanner(false); app.run(args); } Smooth API building new SpringApplicationBuilder() .showBanner(false) .sources(Parent.class) .child(Application.class) .run(args); T ...

Posted by sfmnetsys on Sun, 30 Jan 2022 21:38:31 +0100

Microservices series: Spring Boot integrated MinIO for distributed file storage

Microservices series: a guide to building MinIO for distributed file storage In the last article, we have learned how to build a MinIO object storage service. In this article, we will learn how to integrate MinIO in practical Java projects. Don't say much, start today's study. Project integration 1. Introduce dependency <dependency> ...

Posted by porta325 on Sun, 30 Jan 2022 15:49:01 +0100

From 0 to 1, complete the development and release of love talk wechat applet (open source, you can understand ~, 20000 words of true fragrance warning)

1. ForewordIn your eyes, do you think the goddess is like an iceberg beauty? In the chat, it is very cold to you, or cold and hot, indifferent. Many boys are helpless in the face of this problem, or when the goddess ignores you, they are in a hurry to send a short message, and the goddess ignores you at all. Then what shall I do?In fact, the go ...

Posted by Alidad on Sun, 30 Jan 2022 11:25:47 +0100

This article is enough for the back-end personnel of the front and back-end asynchronous request Library of Axios to master the knowledge from 0-0.5~

๐Ÿ“‘ Content of this article: This article is enough for the back-end personnel of the front and back-end asynchronous request Library of Axios~ ๐Ÿ“˜ Article column: Front end knowledge (knowledge points to be mastered at the back end) ๐ŸŽฌ Last updated: January 29, 2022 This article is enough for the back-end personnel of the front and back-end asy ...

Posted by bp90210 on Sun, 30 Jan 2022 06:41:02 +0100

An article will take you to know about wechat scanning code login

preface Hi, Hello, I'm Xiliu. Many PC websites have the function of using wechat scanning code to log in. You don't need to enter the user name and password. Open the mobile wechat scanning to automatically log in. It's really convenient. So, how does it achieve fast login? This article will take you through the login scenario of the rea ...

Posted by Roja on Sun, 30 Jan 2022 05:22:08 +0100

The SpringBoot series parses complex parameters

SpringBoot series (III) parsing complex parameters preface When we write the interface, we will pass in complex parameters, such as Map and Model. Such similar parameters will be parsed by the corresponding parameter parser, and finally the parsed value will be put into the request field. Let's explore the principle together. Tip: th ...

Posted by Prank on Sun, 30 Jan 2022 04:28:37 +0100

How does SpringBoot gracefully implement remote calls

crap I really don't know what to do. I'd better touch the fish and write a blog. Next, it's pure dry goods. I don't like theoretical knowledge very much. I just start it directly. No, look at the code at the end of this article. Download it yourself story Q: you have two systems a and B. at this time, system a needs the data of system B o ...

Posted by UKlee on Sun, 30 Jan 2022 03:03:06 +0100