Spring MVC (an entry-level case to learn about spring MVC)

Article directory 1. What is spring MVC? 2. Create your first spring MVC project 2.1. Create a maven project first, and add the support of web Framework 2.2. Configure the server 2.3 code subject 2.3.1 import dependency and add resource filter 2.3.2. Configuration of web.xml 2.3.3. Configure the sp ...

Posted by imperialized on Wed, 04 Mar 2020 21:51:02 -0800

Spring boot integrates MyBatis to add, delete, modify and check the complete version of case (with source code)

1. introduction Spring Boot is a framework to simplify spring development. It is used to monitor the spring application development. The Convention is larger than the configuration. just run can create an independent, product level application. When we use Spring boot, we only need to configure the corresponding Spring boot to use all the Sprin ...

Posted by Shibbey on Wed, 04 Mar 2020 02:41:19 -0800

Follow me to learn the spring cloud Tutorial Part 6: distributed configuration center (Spring Cloud Config) - b2b2c applet E-commerce

In the distributed system, due to the huge number of services, in order to facilitate the unified management and real-time update of service configuration files, the distributed configuration center components are required. In Spring Cloud, there is a distributed configuration center component, spring c ...

Posted by mike_y on Tue, 03 Mar 2020 21:08:36 -0800

Hey, I use Drone as CI

It's really great to do CI/CD based on drone. Compared with jekins, the big brother in the industry, I prefer drone. In comparison, I think it has the following advantages Plug in does not require additional management Based on yaml file, easy to write, configuration can be version management Can be bu ...

Posted by lady1dc on Mon, 02 Mar 2020 20:09:43 -0800

Kotlin cross platform development

Today, let's briefly introduce the use of kotlin for cross platform development, so that one code, multiple runs. I. Introduction First of all, I extracted some basic information from official documents. At the beginning of design, kotlin language has a clear goal, that is, it can be used on all plat ...

Posted by koencalliauw on Mon, 02 Mar 2020 00:40:13 -0800

Alibaba cloud live integration brief guide

Catalog 1, Application Guide 2, Configure streaming address \ playback address 3, Configure authentication information 4, Test playback 5, Use of OBSStudio and PotPlayer 6, Simple integration of Android playback Seven, summary 1, Application Guide Official website address: https://www.aliyun.com ...

Posted by ardyandkari on Mon, 02 Mar 2020 00:31:33 -0800

0228 My Pandora

  My Pandora Start with a story.In the past, there was a Java programmer who liked writing programs, studying source code, and reading English documents.But it works in a small company with an old technology stack.There are many xml configurations in a single system code, configuring the entry adapters for various middleware and similar configu ...

Posted by jpr on Fri, 28 Feb 2020 10:02:51 -0800

8, jOOQ series tutorial - Spring Boot and jOOQ integration

Complete tutorial: https://jooq.diamondfsd.com/ In the current situation of the prevalence of micro services, the micro service system based on Spring Boot or Spring Cloud is the mainstream, and it is also the new selection direction in the current business scenario Compared with using Spring directly, using Spring Boot to integrate jOOQ is rel ...

Posted by Hagaroo on Wed, 26 Feb 2020 02:47:19 -0800

How Spring Boot tests packaged deployments

I. Development Phase (1) Unit testing The most important thing in the development phase is unit testing, and Spring Boot's support for unit testing is already complete. 1. Add dependencies to the pom.xml file <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</arti ...

Posted by boo_lolly on Sun, 23 Feb 2020 18:56:52 -0800

Tangent programming in Spring Boot, explanation of example scenario (log printing)

Article directory 1. What is AOP 2.Spring Boot integrated AOP 2.1 add maven dependency 2.2 section programming (implementation of log printing example) 2.2.1 create the facet class LogAspectHandler.java 2.2.2 @Pointcut: pointcut 2.2.3 @Before: pre advice 2.2.4 @After: Post advice 2.2.5 @AfterReturn ...

Posted by abriggs on Sat, 22 Feb 2020 01:45:48 -0800