Spring Validation framework uses

1, Introduction The Spring Validation framework provides @ Validated (Spring's JSR-303 specification, a variant of the standard JSR-303) for the parameter validation mechanism, and javax provides @ Valid (standard JSR-303 specification), which can directly provide parameter validation results in combination with BindingResult. The specific val ...

Posted by izua on Mon, 03 Jan 2022 04:07:49 +0100

Jingtao project - user login module_ day11

1.ElementUI 1.1 introduction to elementui Link: ElementUI official website 1.2 ElementUI introduction case 1. Edit components You can directly click ctrl+c/v in the component module In elementui Paste ctrl+v directly in Vue component file 2. js file import //1. Import components from JS file import { Container } from 'element-ui' // ...

Posted by violinrocker on Mon, 03 Jan 2022 02:55:25 +0100

SpringBoot Interface - How to provide multiple versions of the interface

When developing Restful interfaces with SpringBoot, different versions of parameter implementations are required for the same interface due to changes in business such as modules and systems (older interfaces also have modules or systems in use and cannot be changed directly, so different versions are required). How do you implement multiversio ...

Posted by eddedwards on Mon, 03 Jan 2022 01:48:40 +0100

[mybatis plus]: just look at this one

mybatis-plus 1. Introduction case: Table creation: create table user ( id bigint auto_increment comment 'Primary key ID' primary key, name varchar(30) null comment 'full name', age int null comment 'Age', email varchar(50) null comment 'mailbox', create_tim ...

Posted by rhodrykorb on Mon, 03 Jan 2022 01:11:31 +0100

5-TDengine integrates SpringBoot, MyBatis, MyBatisPlus

background In the previous experience, taos client, RESTful Connector and JDBC-JNI are used. This time, we experience an example closer to the actual application scenario: the integration of TDengine with SpringBoot, MyBatis, MyBatisPlus, etc. Officials have brought their own examples, https://github.com/taosdata/TDengine/tree/develop/tests/e ...

Posted by PhilGDUK on Sun, 02 Jan 2022 22:50:05 +0100

Pre and post deployment of spring Vue + boot project

preface This blog post mainly wants to connect the basic processes and key points of front-end and back-end development and server deployment. It does not involve very deep things in the development content and technology used, but although the sparrow has all the small and five internal organs, it is completely convenient for students who ...

Posted by wayz1229 on Sun, 02 Jan 2022 21:15:13 +0100

sentinel integrates springcloud alibaba

sentinel integrates springcloud alibaba 1. Introducing dependencies <!--sentinel starter--> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId> </dependency> 2. Add yml configuration to set sentinel console address for microser ...

Posted by mkubota on Sun, 02 Jan 2022 18:47:11 +0100

Spring hides real errors, making troubleshooting difficult

Hello, I'm looking at the mountain. Today, after the project relies on a basic component, it failed to start. The troubleshooting process took some detours. Finally, it was confirmed that the Java. Com was caused by the version conflict of dependent components Lang.noclassdeffounderror exception. The following is the troubleshooting process. ...

Posted by rockroka on Sun, 02 Jan 2022 12:48:55 +0100

Detailed explanation of SpringBoot Aop and various usage scenarios

preface AOP aspect oriented programming is a very important idea in programming. This article mainly introduces the use and cases of SpringBoot aspect AOP What is aop AOP (aspect oriented programming): aspect oriented programming, aspect oriented programming (also known as aspect oriented programming), is a hot spot in software develo ...

Posted by karq on Sun, 02 Jan 2022 04:37:52 +0100

Teach you step by step how to package SpringBoot applications into Docker images and deploy them to k8s clusters using helm charts

preface In the Internet era, in order to achieve faster development iterations and better flexibility of applications, Internet applications no longer use the traditional three-tier architecture, but use microservices to achieve the purposes of loose coupling, cross departmental development and rapid delivery of software systems. Docker ...

Posted by studio805 on Sun, 02 Jan 2022 02:37:01 +0100