Java's new project learning online notes-day12

3 search front end development 3.1 search page 3.1.1 demand analysis The above figure is the interface of the front end of course search. The user sends a search request to the server through the front end. The search function includes:1. All courses are queried by default and displayed in pages. 2. Search courses by level 1 and level 2 classi ...

Posted by radalin on Sun, 03 Nov 2019 06:52:01 -0800

Laravel + Vue + Element attendance application - HR system

Project address Bee introduce Bee is an attendance application in the human resource system. It is mainly used for employees to apply for false documents. Bee has high performance and expansibility, including front-end and back-end separation, plug-in rule validation (verifier), data filtering (decorator), message queuing, etc. in the MVC mode ...

Posted by JCF22Lyoko on Sat, 02 Nov 2019 15:24:29 -0700

Alibaba cloud deployment 5. Domain name, DNS, nginx

domain name Although you can visit your website directly through ip address, we seldom see that the website is accessed through ip address, and generally the website will provide domain name. The domain name is intuitive and easy to remember, and the resolved ip address can be changed without changing the domain name accessed by the user. The d ...

Posted by vikaspa on Sat, 02 Nov 2019 03:07:35 -0700

Simulate nginx hot deployment

Hot deployment is to upgrade the software while the application is running without restarting the application. First, simulate an online environment where Nginx needs to be upgraded. Assuming that the old version is nginx-1.0.15, it needs to be upgraded to nginx-1.16.0. Configure older versions # Download nginx-1.0.15 wget http://nginx.org/down ...

Posted by fatmikey on Fri, 01 Nov 2019 14:26:35 -0700

Java's new project learning online notes-day15

3.4.4 Service Service method is defined in learning service, which requests course management service and media management service to obtain course learning address remotely. [mw_shl_code=applescript,true]@Service public class LearningService { @Autowired CourseSearchClient courseSearchClient; //Getting lessons pub ...

Posted by markc1 on Fri, 01 Nov 2019 10:28:11 -0700

Docker compose of docker three swordsmen

Blog Outline:I. Introduction to ComposeII. Installation and use of ComposeIII. preparation of. yml document I. Introduction to Compose Compose is a tool for defining and running multi container Docker applications. With compose, you can use YAML files to configure your application's services. Then, with one command, you can create and start ...

Posted by auteejay on Fri, 01 Nov 2019 06:02:58 -0700

[CentOS 7LNMP architecture 30], set nginx agent#

shallow A kind of ove nginx agent The user sends information to the proxy server, the web server receives the information from the proxy server, returns it to the proxy server, and finally sends it to the user The online environment needs to resolve the domain name of the website to the proxy server, so that the user's request goes to the p ...

Posted by wilzy1 on Fri, 01 Nov 2019 01:25:04 -0700

Nginx build notes

Because the application is in the internal network environment, it can not directly access the external network. However, the requirement is that the application needs to redirect to the external network environment's login QR code for code scanning and login. When processing page redirection, ...

Posted by erme on Thu, 31 Oct 2019 22:20:57 -0700

Centos 7 installs nginx (source code)

Liunx installing nginx (source code) First step Get into Download on nginx official website , select the version you need For example, I wget http://nginx.org/download/nginx-1.16.0.tar.gz decompression tar -zxvf nginx-1.16.0.tar.gz install Enter nginx-1.16.0 directory ./configure Here, ...

Posted by F.Danials on Wed, 30 Oct 2019 12:59:12 -0700

Multiplayer blog development project - Deployment

One backend code deployment 1 Django packaging 1 setup.py file creation The details are as follows #!/usr/bin/poython3.6 #conding:utf-8 from distutils.core import setup import glob setup(name='blog', version='1.0', description='demo blog', author='zhang', author_email='18829272841@163.com', url='https://www. ...

Posted by gfoot on Wed, 30 Oct 2019 03:14:09 -0700