Tag:journey
-
Journey of cloud native applications — kubernetes growth record | ninth stop: exploring challenges in travel 4
ours“Journey of cloud native applications – growth of kubernetes”The series of articles has been updated again! This is the ninth article in this series. As the contents of this series of articles are progressive, if you haven’t seen the previous contents, you are welcome to look back through the following links to establish the necessary […]
-
As a back-end development engineer, how to write interface documents efficiently and gracefully
As an excellent back-end development engineer, writing interface documents has always been a headache. I’m tired of being pestered by bugs. Do you still let me do this? Actually, you can try API post. The location of apipost is postman + swagger + mock server, which is mainly used to send debugging interfaces and generate […]
-
Journey of cloud native application — growth of kubernetes — the tenth stop: get the secret of cloud native travel
ours“Journey of cloud native applications – growth of kubernetes”The series of articles has been updated again! This is the tenth and last article in this series. As the contents of this series of articles are progressive, if you haven’t seen the previous contents, you are welcome to look back through the following links to establish […]
-
The page path analysis model is newly launched to make your products more user-friendly
Path analysis intuitively presents the use of applications and provides data support for continuous iterative optimization of products. Generally, the user‘s product use preference is analyzed by various event nodes in the number of user sessions. However, for products with multiple lines of business, after a large number of events are buried, the path will […]
-
Bootstrap celebrates its 10th birthday! Inventory of important milestones on its open source road
On August 19, 2011, the first version of bootstrap was officially released and announced its open source in GitHub. At that time, it was positioned as “a front-end toolkit for rapid development of web applications”, integrating the common uses of CSS and HTML, and using some of the latest browser technologies to provide developers with […]
-
2 minutes to play with Chinese interface test tool – apipost
Play apipost in 2 minutes This article briefly introduces how to use API post to debug interfaces and quickly generate interface documents, so that you can initially experience the charm of API post! 1. Do you want to test after writing the API? Try simulating sending a request Create a new interface. I want to […]
-
Options beyond swagger
Today, I will give you an interface document generator — japidocs. Swagger must have been used by everyone. It’s very convenient and powerful. If you want to say that swaager has any shortcomings, it must be that it is troublesome to write annotations. If I say there is a tool that can generate documents without […]
-
Integrating mybatis operation database
Mybatis is an excellent persistence layer framework, which supports customized SQL, stored procedures and advanced mapping. Mybatis avoids almost all JDBC code and manual setting of parameters and obtaining result sets. Mybatis can use simple XML or annotations to configure and map native information, and map interfaces and Java POJOs (plain ordinaryjava objects) to records […]
-
Several ways to read configuration file by spring boot
Generally speaking, there are three ways for spring boot to get files, namely @ value annotation, @ configurationproperties annotation and environment interface. These three annotations can be used with @ propertysource, which is mainly used to specify specific configuration files. @Analysis of propertysource @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Repeatable(PropertySources.class) public @interface PropertySource { String name() default “”; […]
-
After NPM was acquired, Microsoft announced GitHub pocket edition!
In addition to the news that NPM was acquired by Microsoft yesterday, Microsoft’s GitHub also officially released GitHub mobile version, which is the full experience version of GitHub web desktop version on IOS and Android. Now, we can keep in touch with our team on mobile devices, classify problems, and even merge code anytime, anywhere. […]
-
Why can’t your interceptor inject Java beans?
1、 How to implement interceptor In the spring boot project,InterceptorIt is often used for login verification, logging and other operations. Interceptors are provided by spring, so they can be injected as beans and managed by the IOC container. The implementation of interceptor is very simple, which mainly consists of the following two steps: Implementation of […]