JAVAEE - yicube mall 14: project deployment planning, Tomcat hot deployment, reverse agent configuration

1. Learning plan 1. System deployment   2. Project deployment   2.1. Explanation of project structure       2.2. network topology       2.3. System deployment 2.3.1. Deployment Analysis e3-manager e3-manager-web e3-portal-web e3-content e3-search e3-search-web e3-item-web e3-sso e3-sso-web e3-cart-web e3-order e3-order-web       A total of 4 ...

Posted by tbeinc on Sun, 05 Jan 2020 06:10:16 +0100

Docker introduction also uses

1,Check kernel version, must be 3.10 And above uname -r 2,install docker yum install docker 3,input y Confirm installation 4,start-up docker [root@localhost ~]# systemctl start docker [root@localhost ~]# docker -v Docker version 1.12.6, build 3e8e77d/1.12.6 5,Boot up docker [root@localhost ~]# systemctl enable docker Create ...

Posted by davidtube on Thu, 02 Jan 2020 15:06:48 +0100

Nginx forwards the secondary domain name

Nginx forwards the secondary domain name Through the division and implementation of the company's domain name, nginx is used to issue the secondary domain name. Take the following example to record: purchased the lwenhao.com domain name on Alibaba cloud, including blog.lwenhao.com (personal blog) and file.lwenhao.com (file management). To acces ...

Posted by y2yang on Wed, 01 Jan 2020 05:38:34 +0100

ajaxfileupload upload file with parameters

A few days ago, when uploading files with ajaxfileupload, I found that ajaxfileupload could not be transferred with parameters, so I found a ready-made ajaxfileupload that can be transferred with parameters from github, and learned how to upload files with ajaxfileupload. The github address of ajaxfileupload that can be passed ...

Posted by barkster on Wed, 25 Dec 2019 18:43:17 +0100

Simple demo of using websocket in vue2.0

1. First contact with websocket, spend more than a day looking for relevant materials, and refer to relevant examples on the network( https://www.cnblogs.com/qilin-3611/p/7054270.html )A simple front-end and back-end demo is arranged. The back-end demo directly uses the demo of the article in the link. After downloading, tomcat ...

Posted by maiza on Mon, 16 Dec 2019 22:15:35 +0100

Implement a simple Tomcat

1. Tomcat function Our web application will run in Tomcat. Obviously, the request must arrive at Tomcat first. Tomcat will actually process the request as follows: Provide Socket service: the start of Tomcat must be Socket service, which supports http protocol. Request distribution: a Tomcat can provide services for multiple web applications, ...

Posted by Nat on Tue, 10 Dec 2019 21:15:05 +0100

Java web learning summary -- file upload and download

Catalog 1. Establishment of file upload environment 2. File upload code implementation 3. About downloading @ Hey, Xiong dei, you have to know that in Web development, file upload and download are very common functions. As for file upload, browser upload [file transfer in the form of stream] - serve ...

Posted by bskauge on Mon, 09 Dec 2019 14:02:57 +0100

Python urllib practical methods, properties, process summary

I. urllib, urllib2, urllib3, requests In the python 2 of the urlib2 room, python 3 merges urllib and urllib2 into the urllib directory, so Python 3 directly uses urllib. urllib3 is a tripartite library, which provides functions such as connection pool, client SSL/TLS authentication, file code upload, HTTP redirection, gzip and deflate compres ...

Posted by jakebrewer1 on Tue, 26 Nov 2019 12:51:36 +0100

SpringBoot Source Parsing----- Spring Boot Core Competence - How does SpringBoot implement SpringMvc?

In the previous article, we talked about the starting process of Tomcat in SpringBoot, and then we talked about how to add Servlet, Filter, Listener to Tomcat in SpringBoot Customize Servlet, Filter, Listener Declare ServletRegistrationBean, FilterRegistrationBean, ServletListenerRegistrationBean in Spring container @Bean public ServletRegistr ...

Posted by TheChief on Fri, 22 Nov 2019 04:40:43 +0100

JNDI configuration of Spring data source compatible with Tomcat and Weblogic

As we all know, the name of looking up JNDI in Tomcat and Weblogic is different. Take Spring configuration for example. In Weblogic, you need to configure as follows: Java code <bean id="baseDataSource" class="org.springframework.jndi.JndiObjectFactoryBean">         <property name="jndiName" value="dataSource" />  ...

Posted by biscutty on Wed, 13 Nov 2019 18:54:52 +0100