vue packaged history mode and subdirectory static file path analysis
history
root directory
After the routing mode l changes to history, you need to configure url Rewrite on the server, create a web.config file in the root directory and copy it in with the following content
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
...
Posted by klaibert26 on Wed, 02 Oct 2019 03:00:44 -0700
08 Public Number Development - Receiving Other Common Messages (Pictures, Videos, etc.)
Receive other normal messages
Receive picture messages
<xml>
<ToUserName><![CDATA[toUser]]></ToUserName>
<FromUserName><![CDATA[fromUser]]></FromUserName>
<CreateTime>1348831860</CreateTime>
<MsgType><![CDATA[image]]></MsgType>
...
Posted by JasonO on Wed, 02 Oct 2019 00:36:59 -0700
myBatis project configuration
myBatis project configuration
1,environment
Mybatis supports multiple environments and can be configured arbitrarily
2,transactionManager
Mybatis supports two types of transaction managers, JDBC and MANAGED (hosting)
JDBC: The application is responsible for managing the life cycle of database connecti ...
Posted by pixelgirl on Tue, 01 Oct 2019 17:48:43 -0700
Spring MVC - File upload
Spring MVC - File upload
1. File upload
1.1 File upload must
The enctype value of the form form must be: multipart/form-data (default: application/x-www-form-urlencoded)
B. The method attribute must be post
c. Provide a file selection field.
1.2 principle analysis of file uploading
When the encty ...
Posted by BlooPanthr on Tue, 01 Oct 2019 16:45:00 -0700
Content Provider usage and Android runtime permission application
This article shows how to obtain other application data and the application process of runtime permission through an example of obtaining all contacts.
Add the following permissions to AndroidManifest.xml
<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
...
Posted by Sherman on Tue, 01 Oct 2019 16:17:57 -0700
1. Spring Annotation Development, Day 1
Day 1: Spring annotation development
Directory: 1, @Configuration and @Bean to Register Components for Containers 2, @ConponentScan Auto Scan Annotations
I. @Configuration and @Bean Register Components for Containers
1. Creating configuration files and beans in older versions
/ / entity class
package com.lee.bean;
import lombok.AllArgsConstruc ...
Posted by GaryAC on Tue, 01 Oct 2019 13:18:03 -0700
mybatis_plus Plug-in: Generator
Recently, learning the mybatis framework has simplified some Dao code, but still want to go up to the next level? Are you no longer bothered by the basic duplicate code in the basic pojo layer, controller layer, service layer and Dao layer? Here, let's learn about the mybatis plus generator and realize mybatis reverse engineering, preferably wi ...
Posted by bpops on Tue, 01 Oct 2019 12:27:52 -0700
SpringBoot uses Axis to integrate Web Services
1. Prospect Review
In the previous chapter, I introduced SpringBoot's use of CXF to integrate Web Services. SpringBook Integrates Web Services with CXF What you want to know can be reviewed.
In this chapter, we will study how to integrate Axis, which is more complex than CXF integration.
2. SpringBook Integrated Web Service
2.1 Adding Dependenc ...
Posted by Gillesie on Tue, 01 Oct 2019 10:46:24 -0700
Summary: HBase Notes
Reference link: http://abloz.com/hbase/book.html#d613e75
The final version: https://mirrors.tuna.tsinghua.edu.cn/apache/hbase/1.3.5/hbase-1.3.5-bin.tar.gz
I. installation
Extract it, then modify hbase-site.xml to specify the storage path of the data;
Entering HBase Environment
./bin/hbase shell
3. Other relevant orders
Enter help and < ...
Posted by pas07920 on Tue, 01 Oct 2019 09:35:56 -0700
Hadoop learning-hadoop installation
Stand-alone version configuration
Upload installation package
Upload to / bigdata
decompression
Unzip to / apps directory
tar -zxvf /bigdata/hadoop-2.7.1.tar.gz -C /apps
Configuring environment variables
vi /etc/profile
#In the final increase
export HADOOP_HOME=/apps/hadoop-2.7.1
export PAT ...
Posted by mimilaw123 on Tue, 01 Oct 2019 09:29:04 -0700