In this article, we demostrate how to define the scheduled tasks in a Spring Boot Application.
How to use the Hot Load in development of Spring Boot Application
In the development of Spring Boot applications, if you do not want to restart the application repeatedly, you can use Spring Boot’s DevTools tool to implement the Hot Load function. This article show you how to use the Hot Load in IntelliJ IDEA.
How to build Spring Boot WEB application with Freemarker (Update to Spring Boot 2.6 and Java 17)
This article demonstrate: How to build a Spring Boot WEB applicaiton with Freemarker.
How to enable lombok annotations in IDEA IDE
Lombok is a useful tool library for Java third-party libraries. Ideal for simplifying the writing of entity classes. A lot of get, set code, and constructors are omitted. However, in the IDEA Community version, Lombok recognition is not turned on by default, so it will always prompt an error when writing code in the IDE.
How to build Restful Service with Spring Boot - A Step by Step Tutorial for Beginner - 1 (Update to Spring Boot 2.6 and Java 17)
This is a step by step tutorail for beginner, you can learn how to use spring boot to build a restful service (api). And we also show you: how to connect DB with spring data, how to validate user input with hibernate validation, and how to document your api (restful service) with Swagger.
How to skip the test when maven builds
Maven is the most popular project building tool for the Java platform, and the test-driven development (TDD) is also the development method chosen by many teams in Java platform project development. But when building a project with maven, if for some reason, we want not to perform unit tests in this build. So what to do?
SwiftUI Widget - ZStack
The function of ZStack is to layer the widget on top of each other. Widget stacked on top cover the visible portion of the widget stacked below and those widgets can be aligned in both axes.
SwiftUI Widget - NavigationView
NavigationView is probably onte of the most commonly used SwiftUI widget, and is used by almost all SwiftUI apps.
How to deploy vue app with docker (Base on Nginx Image)
This article simply demonstrates how to deploy a Vue-developed front-end app using Docker.
How to build Rest Service with Spring Boot - A Step by Step Tutorial for Beginner - 5
In the How to build Rest Service with Spring Boot - A Step by Step Tutorial for Beginner - 4 of this series , I will show you how to validate the data entered by the Restful service interface in Spring Boot. This article will go deeper and demonstrate how to use Swagger to generate documentation for a Restful service interface and test the API with pages generated by Swagger.