[note] this article is translated from: https://www.tutorialspoint.com/spring_boot/spring_boot_internationalization.htm
Internationalization is a processing mechanism that allows your application to adapt to different languages and regions without changing the source code. In other words, internationalization is preparation for localization. ...
Posted by glansing on Wed, 18 May 2022 14:52:44 +0300
demand
I use my own mobile phone to verify my login, and then I want to send the verification code to the bound email when the mobile phone verification code fails to be sent. (it mainly costs money to send the mobile phone verification code, so I don't want to package the package for my study and test project. Then I want to be familiar with t ...
Posted by cdjsjoe on Wed, 18 May 2022 10:47:49 +0300
Springboot integrates Dubbo and Zookeeper
The source address of this article: https://gitee.com/liuhuanhuan963019/zookeeper_dubbo.git
1. Test environment setup
Apache Dubbo |ˈdʌbəʊ| is a high-performance, lightweight open-source Java RPC framework that provides three core capabilities: interface-oriented remote method invocation, intelligent ...
Posted by batterdmooie on Wed, 18 May 2022 01:48:12 +0300
preparation in advance
1. Create a spring web project in POM Adding dependencies to XML
<!-- Front end template--> <dependency> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- task scheduling -->
& ...
Posted by jraede on Tue, 17 May 2022 20:28:27 +0300
review
The previous article talked about the general startup process of springboot:
[1] Get listener
[2] Prepare the environment
[3] Console print Banner
[4] Create containers, and create different containers according to different types
[5] Instantiate an exception reporting period instance to record errors during startup.
[6] Prepare the cont ...
Posted by php4om on Tue, 17 May 2022 17:53:28 +0300
In addition to caching, Redis can also do many things: distributed locking, flow limiting, idempotency of request processing interface... Too much, too much ~Today, I want to talk with my friends about how to use Redis to deal with interface current limitation. This is also the knowledge point involved in the recent TienChin project. I'll bring ...
Posted by harley1387 on Tue, 17 May 2022 16:48:56 +0300
[SpringBoot DB series] h2databse integration example demo
H2dabase is a memory based database, which is more common in the use scenario of embedded database. It has small dependence and complete functions; Generally speaking, it is not used in many normal business projects, but it is useful in some special case s, such as unit testing, busines ...
Posted by Mark Nordstrom on Tue, 17 May 2022 15:18:57 +0300
SpringBoot
What is micro service
What is the difference between microservices and the past
Why is SpringBoot suitable for microservice framework
Lack of SpringBoot or microservice
springBoot startup process
How to automatically assemble and customize the configuration of springBoot
First, there are a few notes
@Configuration: declar ...
Posted by dkjariwala on Tue, 17 May 2022 13:38:37 +0300
Spring Cloud's service gateway gateway (II) integrates Swagger components
summary
Swagger is a visual API testing tool, which can effectively build powerful Restful API documents and save interface document management If the code is modified, the API document will be updated in real time And it can partially replace Postman to debug the inte ...
Posted by Gomesh on Tue, 17 May 2022 11:37:00 +0300