A small salary management system with JavaFX+SpringBoot + verification code function

1 General 1.1 INTRODUCTION A simple small salary management system, JavaFX + front-end Spring Boot, has few functions. It focuses on the UI and some logic of the front-end. The back-end is very simple. Main functions: User registration / login Verification code retrieve password Users modify information, modify Avatar Display salary in bar cha ...

Posted by poknam on Sat, 06 Jun 2020 12:10:57 +0200

Invalid pom file after idea clones project from git

Invalid pom file after idea clones project from git When your idea pulls projects from git, projects that are cloned for the first time often report that pom files are not in maven format: as shown in the following figure This is because Maven has not been set after getting down from git. Open File ...

Posted by crazylegseddie on Fri, 05 Jun 2020 10:15:17 +0200

How to use the creation of Nacos and gateway center in Java Spring Cloud practice? 80% won't

  0. Preface In the previous section, we created a project architecture, which will be supplemented by subsequent projects. 1. Nacos 1.1 INTRODUCTION Nacos can be used to discover, configure, and manage microservices. It provides a set of simple and easy-to-use feature sets, which can quickly realize dynamic service discovery, service conf ...

Posted by dyip on Thu, 04 Jun 2020 07:55:37 +0200

Spring Cloud -- Spring Cloud microservice practice

1, Service provider and service consumer Using microservices to build distributed system, microservices communicate with each other through network. We use service providers and service consumers to describe the invocation relationship between microservices. noun definition Service provider The callee of the s ...

Posted by PromaneX on Mon, 01 Jun 2020 05:04:19 +0200

This problem Maven relies on, you dare say you haven't met

If Maven's dependency is not handled properly, it often leads to some problems, which is very annoying. Today I'd like to share with you a dependency related problem that you may have encountered before. Problem background There is an ES search project, which is still in good condition at the beginning. After a while, it is found that the start ...

Posted by foxy69 on Sat, 30 May 2020 11:57:00 +0200

How does Spring Boot transform old projects quickly?

Source: KL Bloghttp://www.kailing.pub/article/index/arcid/188.html 1. Preamble Fragments Blogger's company upgraded the entire module to spring boot because of limitations in the low version of spring when using certain features in development for a project. I want to make a note here to help friends with the same scene. The whole process is ...

Posted by alsal on Thu, 28 May 2020 04:59:04 +0200

The practice of Spring Cloud microservice architecture: consul registration center 02: the introduction case of consumer

Previous: Consul registration center 01: Spring Cloud microservice architecture practice You can click review. Next, let's talk about the introduction case of consumer. For the detailed video tutorial of spring cloud actual combat project, please leave a message.   1. Create project Let's create an aggregation project to explain Consul. First, ...

Posted by Zssz on Thu, 14 May 2020 17:10:39 +0200

java List Entity Sorting

There are three ways to sort Java entity collections. The first is through a natively supported Comparator, the second is through a Lambda expression in java8, and the third is by using the apache-common toolkit.Tested to achieve the desired results, the third code is more readable and usable, and the third is recommended. The third sort ...

Posted by john_zakaria on Mon, 11 May 2020 18:36:19 +0200

java websocket message push

1. maven introduces dependency <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.3</version> </dependency> <dependency> <groupId>javax.websocket</groupId> <artifactId>javax.websocket-api</art ...

Posted by studio805 on Tue, 05 May 2020 15:34:33 +0200

Akka writes RPC communication framework to simulate a small case of Worker connecting to Master

Guiding ideology: 1. Using RPC communication framework (AKKA)2. Define 2 classes Master and Worker -------------------------------------------------------------------------------------------------------------------------------Start Master first, then all workers1. After the Worker is started, establish a connection with the Master in the PreSta ...

Posted by kettle_drum on Thu, 30 Apr 2020 17:12:55 +0200