SpringBoot + Vue + ElementUI Implement Background Management System Template--Front End: Introduce element-ui to define basic page display

Prerequisite: SpringBoot + Vue + ElementUI Implement Background Management System Template--Front End Chapter (1): Set up the basic environment:https://www.cnblogs.com/l-y-h/p/12930895.html   1. Define common component pages The effect of a simple page is as follows: (Do it roughly and understand the page roughly)       1. Install element-ui ...

Posted by Silverado_NL on Thu, 21 May 2020 18:58:47 -0700

Mobile Development: The Ionic Framework for Registration and Login

Because the project is front-end and back-end separate development, the ionic framework is used on the mobile side and the SpringBoot framework is used on the back-end API interface.Backend implementations of registration and login can refer to my article: Backend development: SpringBoot implements registration and login functions .The ionic fr ...

Posted by gladiator83x on Tue, 19 May 2020 18:03:01 -0700

Spring Boot Tutorial - HelloWorld

1. Origin of Spring Boot As we all know, the Spring Framework is a very important and lightweight framework in the Java ecology, helping our broad masses of big guys develop Java.The Spring Framework has evolved very rapidly, from the very beginning of the Spring core container that helped us manage Java objects to the various business issues t ...

Posted by frostyhorse on Tue, 19 May 2020 09:50:29 -0700

External configuration and usage records of SpringBoot

Statement: if there are any mistakes, please point out! Make a note of some of the problems encountered when using spring boot configuration, although this problem is caused by lack of knowledge. Make a note to avoid forgetting again after a period of time, just in case. If you can help the comrades who meet the same problems in your bl ...

Posted by lena_k198 on Sun, 17 May 2020 04:04:45 -0700

Linux CentOS springboot jenkins+maven+git for sustainable automatic package deployment

jdk environment: 1.8 linux version: CentOS 6.10 git version: 2.1.1 maven version: 3.5.4 Prepare jdk in advance (omitted) 1, Install and deploy jenkins 1. Download rpm file: 2. Upload to server and install 3. Modify jenkins port (default 8080) 4. Start and restart jenkins 5. Visit jenkins 6. Install plug-ins and create users ...

Posted by vandana on Sun, 17 May 2020 01:03:52 -0700

Spring boot basic combat series integration view

SpringBoot integrates freemarker 1. Add dependency: springboot is basically seamless. Basically, you only need to add the corresponding dependency, without or with a small amount of configuration Note: the creation of springboot project is not described here <dependency> <groupId>org.springframework.boot</groupId> & ...

Posted by dpearcepng on Thu, 14 May 2020 07:31:52 -0700

Resolve LocalDateTime exception when json string is converted to object

1 An exception occurred This exception occurs in the front-end sending request body with two dates in the back-end entity class, which are formatted as LocalDateTime in the JDK8 time class.By default, LocalDateTime can only parse strings in standard format such as 2020-01-01T10:00:00, where there is a T between the date and time.Without any mod ...

Posted by hawk72500 on Thu, 07 May 2020 18:53:22 -0700

Configuration file@Configuration Properties reads List, Map parameters

background In the SpringBoot environment, we have "incomplete" annotations.This is why SpringBoot replaces the xml configuration in traditional Spring projects.When using these annotations, we must understand the principles and conventions behind these annotations. package org.springframework.boot.context.properties; import java.lang ...

Posted by gtal3x on Wed, 06 May 2020 09:32:15 -0700

SpringBoot integrates Quartz for timed tasks

1 Requirements One of the functions in my front-end and back-end separated lab management project is student status statistics.My design is to calculate the proportion of each state by day.For ease of calculation, at 0 o'clock a day, the system needs to reset the student's status and insert a piece of data as the start of the day.In addition, c ...

Posted by e-novative on Tue, 05 May 2020 18:44:49 -0700

Several ways for spring boot to modify the default port number

Modify application.properties In the first way, we just need to add a sentence like this in application.properties: server.port=8004. Why can I modify the default port of spring boot in this way? Because there is such a class in SpringBoot: ServerProperties. Let's take a look at this class in general: @ConfigurationProperties(prefix = "serv ...

Posted by paperthinT on Mon, 04 May 2020 13:25:32 -0700