Tag:Environment
-
Bit shared code
Think in Component Bit is a component driven architecture for modern application development based on components. In the world of bit, everything is a component. Components can be combined into other components to finally form an application app, that is, app is also a kind of component. This provides a new idea for our development: […]
-
vue. config. Implementation of configuring webpack in JS to improve code compilation speed
Refer to relevant documents: One line of code can make the project start more than 70% fasterhttps://mp.weixin.qq.com/s/eS… The following two methods can improve the compilation speedThe speed of starting local projects is generally slow for the first time, and the speed increases a lot after the second time Install the plug-in in the development environment […]
-
Python flash project Linux deployment and cross domain access of local JS
This article is the detailed steps of installing Python environment and deploying flash project when Linux machines can be networked. If you have already installed the python environment, this step can be ignored Installation steps of Python environment: 1. The default Python version in the Linux environment is 2.7, as shown in the figure. […]
-
Dragon lizard developer said: creation from scratch is both a driving force and a challenge | phase 5
“Dragon lizard developer said” coming! Developers and the open source community complement each other and achieve each other. The experience, practice summary and technological growth experience of these individuals in the dragon lizard community are valuable. We hope to let more people see the power of technology here. In this story, we invited Liu Xingwei, […]
-
Localization operating system Galaxy Kirin operating system V10 installation deployment go detailed explanation
1、 Go overview Go is an open source programming language that can easily build simple, reliable and efficient software. It is statically typed and generates compiled machine code binaries. Go language is a compiled language, which is very popular among developers, because it means that there is no need to compile source code to create […]
-
Microservice architecture | 2.2 unified configuration management of Alibaba Nacos
catalogue preface 1. Basic knowledge of Nacos configuration center 1.1 functions of Nacos in configuration center 1.2 composition of Nacos configuration management data ID 1.3 rollback mechanism configured by Nacos 1.4 graphical management interface of Nacos configuration 1.5 relationship among namespace, group and data ID 1.6 crud configured by Nacos 1.7 long polling mechanism of […]
-
Quickly build web applications and learn the react background project template from scratch
To build practical applications quickly, we cannot do without a good application template. As a tool produced by large manufacturers, react has the guarantee of stability and maintainability. At the same time, it can use a full set of relevant family buckets (react + react router + Axios + mobx + antd) for coherent and […]
-
Microservice architecture * 2.3 spring cloud startup and loading configuration file source code analysis (taking Nacos as an example)
catalogue preface 1. When does spring cloud load the configuration file 2. Prepare environment configuration environment 2.1 configure environment springapplication prepareEnvironment() 2.2 use the event master to create and publish the event simpleapplicationeventmulticast multicastEvent() 2.3 bootstrap applicationlistener handles events and automatically imports some configuration classes 3. Refresh application context 3.1 refresh context springapplication prepareContext() 3.2 […]
-
Implementation of quartz timing task visual management with springboot
preface In the actual framework or product development process, the integration of quarzt in springboot is basically directly hard coded in the form of bean objects of job and trigger. For example, the following code example. There is no dynamic global management for all scheduled task types, specific execution classes, execution strategies and running status […]
-
Be familiar with ThinkPHP and the installation of phpstudy + ThinkPHP integrated environment
Be familiar with ThinkPHP and the installation of phpstudy + ThinkPHP integrated environment Cause: Recently, the company will establish an agent distribution system to facilitate agents to place orders and purchase goods directly from our app (applet, official account, web). This project is outsourced to Party B. After the completion of Party B’s development, Party […]
-
How to nest H5 pages in uniapp applet
Our demand is to upload ID card, but wechat applet can’t upload ID card photos if the subject is not the government. The review can’t pass, so I made a bypass review for this problem My idea is to make an H5 upload ID card page, and then nest this page with web view In […]
-
Mybatis study notes-2
2. The first mybatis program Idea: build environment – > Import mybatis – > write code – > test 2.1 construction environment Build database: CREATE SCHEMA `mybatis` DEFAULT CHARACTER SET utf8; CREATE TABLE `mybatis`.`user` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(45) NOT NULL, `pwd` VARCHAR(45) NOT NULL, PRIMARY KEY (`id`)) DEFAULT CHARACTER SET = […]