[Vue] make a message board interface
Interface display
Highlights:
The color and length of the card can be changed randomly, and the page length layout can be adaptive. Users can click like.
Get ready
MySQL
A message table:Message: message content;
username: processed by the backend. If the submitted one is empty, set the name to ...
Posted by Iasonic on Mon, 10 Feb 2020 13:28:26 +0100
Spring learning precipitation
Spring learning precipitation
Basic concepts
Reactive && Servlet
Reactive
Servlet
Spring annotation summary
Assembly bean
Configuration class Config
Bean
Test class
Source learning
Dependency injection and inversion of control (spring container)
Application context
BeanFactory
Bean ...
Posted by satal keto on Sun, 09 Feb 2020 21:14:49 +0100
(white seconds understand) customize the waterfall layout of ViewGroup
Let's talk about what I mean by waterfall layout here:
There are N textviews, or other views, arranged one by one. Unlike LinearLayout, you can wrap lines
Take a look at the picture. Otherwise, it's unexpected. The picture is as follows:
Don't think about it. There must be no existing View to use, because you don't know h ...
Posted by parena on Sun, 09 Feb 2020 17:19:49 +0100
Spring Cloud exploration | distributed configuration center (Config Client)
The last chapter Spring Cloud exploration | distributed configuration center (Config Server) >, and then explain the configuration process of Config Client.
Spring Cloud Config Client configuration process
1. pom.xml add dependency
<parent>
<groupId>org.springframework.boot</groupId>
<artif ...
Posted by fareforce on Sun, 09 Feb 2020 16:41:09 +0100
SpringBoot2.x learning - integrated Mybatis framework
1, Add startup dependency
Add dependency in maven file of spring boot project as follows:
<properties>
<java.version>1.8</java.version>
<druid.version>1.1.13</druid.version>
<mybatis.version>2.1.0</mybatis.version>
<druid ...
Posted by AngelG107 on Sat, 08 Feb 2020 13:55:09 +0100
Hutool Java tool class library export Excel, super simple!
Preface
When developing an application system, exporting files is a necessary function.
I've used the import and export functions of POI, easyexcel and other tools before, but I always feel that it's too troublesome, there are too many codes, and I don't think it's very easy to use them.
Today, I'd like ...
Posted by BluntedbyNature on Sat, 08 Feb 2020 09:27:50 +0100
Views on several methods of dependency injection in spring
Views on several methods of dependency injection in spring
IOC(inversion of Control):
It is an inversion of the direction in which resources are acquired by the container that actively provides the resources acquired by the component, rather than being created by the container itself.All the compo ...
Posted by daok on Sat, 08 Feb 2020 09:18:21 +0100
WeChat Payment Detailed Tutorial Actual
1: This article only aims at the scavenging payment of the third-party native pc platform
1. Noun Interpretation:
1,
WeChat Public Platform
The WeChat public platform is the WeChat public account application entry and management background.Merchants can submit basic data, business data and financia ...
Posted by Viper_4 on Sat, 08 Feb 2020 06:10:20 +0100
SpringBoot global configuration file application.yml
From other frameworks, we have our own configuration files. hibernate has hbm, mybatis has properties, and SpringBoot also has global configuration files.
Spring boot uses a global configuration file, and the name of the configuration file is fixed. (you can start by yourself, but you need to specif ...
Posted by keyboard on Fri, 07 Feb 2020 14:53:49 +0100
Detailed explanation of distributed service CAS single point login and JAVA-SSM implementation of single point login
There are many sub-systems in the distributed system, and these sub-systems are deployed in different servers, so it is impossible to use the traditional session mode, we need to use the related single sign on technology to solve it
1. What is single sign on
Single Sign On, or SSO for short, is one ...
Posted by mithu_sree on Fri, 07 Feb 2020 10:18:38 +0100