diff --git a/src/demo1/.gitignore b/src/demo1/.gitignore
new file mode 100644
index 0000000..549e00a
--- /dev/null
+++ b/src/demo1/.gitignore
@@ -0,0 +1,33 @@
+HELP.md
+target/
+!.mvn/wrapper/maven-wrapper.jar
+!**/src/main/**/target/
+!**/src/test/**/target/
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+!**/src/main/**/build/
+!**/src/test/**/build/
+
+### VS Code ###
+.vscode/
diff --git a/src/demo1/.mvn/wrapper/maven-wrapper.jar b/src/demo1/.mvn/wrapper/maven-wrapper.jar
new file mode 100644
index 0000000..c1dd12f
Binary files /dev/null and b/src/demo1/.mvn/wrapper/maven-wrapper.jar differ
diff --git a/src/demo1/.mvn/wrapper/maven-wrapper.properties b/src/demo1/.mvn/wrapper/maven-wrapper.properties
new file mode 100644
index 0000000..b74bf7f
--- /dev/null
+++ b/src/demo1/.mvn/wrapper/maven-wrapper.properties
@@ -0,0 +1,2 @@
+distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip
+wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
diff --git a/src/demo1/mvnw b/src/demo1/mvnw
new file mode 100644
index 0000000..8a8fb22
--- /dev/null
+++ b/src/demo1/mvnw
@@ -0,0 +1,316 @@
+#!/bin/sh
+# ----------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ----------------------------------------------------------------------------
+
+# ----------------------------------------------------------------------------
+# Maven Start Up Batch script
+#
+# Required ENV vars:
+# ------------------
+# JAVA_HOME - location of a JDK home dir
+#
+# Optional ENV vars
+# -----------------
+# M2_HOME - location of maven2's installed home dir
+# MAVEN_OPTS - parameters passed to the Java VM when running Maven
+# e.g. to debug Maven itself, use
+# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+# ----------------------------------------------------------------------------
+
+if [ -z "$MAVEN_SKIP_RC" ] ; then
+
+ if [ -f /usr/local/etc/mavenrc ] ; then
+ . /usr/local/etc/mavenrc
+ fi
+
+ if [ -f /etc/mavenrc ] ; then
+ . /etc/mavenrc
+ fi
+
+ if [ -f "$HOME/.mavenrc" ] ; then
+ . "$HOME/.mavenrc"
+ fi
+
+fi
+
+# OS specific support. $var _must_ be set to either true or false.
+cygwin=false;
+darwin=false;
+mingw=false
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+ MINGW*) mingw=true;;
+ Darwin*) darwin=true
+ # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
+ # See https://developer.apple.com/library/mac/qa/qa1170/_index.html
+ if [ -z "$JAVA_HOME" ]; then
+ if [ -x "/usr/libexec/java_home" ]; then
+ export JAVA_HOME="`/usr/libexec/java_home`"
+ else
+ export JAVA_HOME="/Library/Java/Home"
+ fi
+ fi
+ ;;
+esac
+
+if [ -z "$JAVA_HOME" ] ; then
+ if [ -r /etc/gentoo-release ] ; then
+ JAVA_HOME=`java-config --jre-home`
+ fi
+fi
+
+if [ -z "$M2_HOME" ] ; then
+ ## resolve links - $0 may be a link to maven's home
+ PRG="$0"
+
+ # need this for relative symlinks
+ while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG="`dirname "$PRG"`/$link"
+ fi
+ done
+
+ saveddir=`pwd`
+
+ M2_HOME=`dirname "$PRG"`/..
+
+ # make it fully qualified
+ M2_HOME=`cd "$M2_HOME" && pwd`
+
+ cd "$saveddir"
+ # echo Using m2 at $M2_HOME
+fi
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched
+if $cygwin ; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME=`cygpath --unix "$M2_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
+fi
+
+# For Mingw, ensure paths are in UNIX format before anything is touched
+if $mingw ; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME="`(cd "$M2_HOME"; pwd)`"
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
+fi
+
+if [ -z "$JAVA_HOME" ]; then
+ javaExecutable="`which javac`"
+ if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
+ # readlink(1) is not available as standard on Solaris 10.
+ readLink=`which readlink`
+ if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
+ if $darwin ; then
+ javaHome="`dirname \"$javaExecutable\"`"
+ javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
+ else
+ javaExecutable="`readlink -f \"$javaExecutable\"`"
+ fi
+ javaHome="`dirname \"$javaExecutable\"`"
+ javaHome=`expr "$javaHome" : '\(.*\)/bin'`
+ JAVA_HOME="$javaHome"
+ export JAVA_HOME
+ fi
+ fi
+fi
+
+if [ -z "$JAVACMD" ] ; then
+ if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ else
+ JAVACMD="`\\unset -f command; \\command -v java`"
+ fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+ echo "Error: JAVA_HOME is not defined correctly." >&2
+ echo " We cannot execute $JAVACMD" >&2
+ exit 1
+fi
+
+if [ -z "$JAVA_HOME" ] ; then
+ echo "Warning: JAVA_HOME environment variable is not set."
+fi
+
+CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
+
+# traverses directory structure from process work directory to filesystem root
+# first directory with .mvn subdirectory is considered project base directory
+find_maven_basedir() {
+
+ if [ -z "$1" ]
+ then
+ echo "Path not specified to find_maven_basedir"
+ return 1
+ fi
+
+ basedir="$1"
+ wdir="$1"
+ while [ "$wdir" != '/' ] ; do
+ if [ -d "$wdir"/.mvn ] ; then
+ basedir=$wdir
+ break
+ fi
+ # workaround for JBEAP-8937 (on Solaris 10/Sparc)
+ if [ -d "${wdir}" ]; then
+ wdir=`cd "$wdir/.."; pwd`
+ fi
+ # end of workaround
+ done
+ echo "${basedir}"
+}
+
+# concatenates all lines of a file
+concat_lines() {
+ if [ -f "$1" ]; then
+ echo "$(tr -s '\n' ' ' < "$1")"
+ fi
+}
+
+BASE_DIR=`find_maven_basedir "$(pwd)"`
+if [ -z "$BASE_DIR" ]; then
+ exit 1;
+fi
+
+##########################################################################################
+# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+# This allows using the maven wrapper in projects that prohibit checking in binary data.
+##########################################################################################
+if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found .mvn/wrapper/maven-wrapper.jar"
+ fi
+else
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
+ fi
+ if [ -n "$MVNW_REPOURL" ]; then
+ jarUrl="$MVNW_REPOURL/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar"
+ else
+ jarUrl="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar"
+ fi
+ while IFS="=" read key value; do
+ case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
+ esac
+ done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Downloading from: $jarUrl"
+ fi
+ wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
+ if $cygwin; then
+ wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
+ fi
+
+ if command -v wget > /dev/null; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found wget ... using wget"
+ fi
+ if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
+ wget "$jarUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath"
+ else
+ wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath"
+ fi
+ elif command -v curl > /dev/null; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found curl ... using curl"
+ fi
+ if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
+ curl -o "$wrapperJarPath" "$jarUrl" -f
+ else
+ curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
+ fi
+
+ else
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Falling back to using Java to download"
+ fi
+ javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
+ # For Cygwin, switch paths to Windows format before running javac
+ if $cygwin; then
+ javaClass=`cygpath --path --windows "$javaClass"`
+ fi
+ if [ -e "$javaClass" ]; then
+ if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo " - Compiling MavenWrapperDownloader.java ..."
+ fi
+ # Compiling the Java class
+ ("$JAVA_HOME/bin/javac" "$javaClass")
+ fi
+ if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+ # Running the downloader
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo " - Running MavenWrapperDownloader.java ..."
+ fi
+ ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
+ fi
+ fi
+ fi
+fi
+##########################################################################################
+# End of extension
+##########################################################################################
+
+export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
+if [ "$MVNW_VERBOSE" = true ]; then
+ echo $MAVEN_PROJECTBASEDIR
+fi
+MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME=`cygpath --path --windows "$M2_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
+ [ -n "$MAVEN_PROJECTBASEDIR" ] &&
+ MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
+fi
+
+# Provide a "standardized" way to retrieve the CLI args that will
+# work with both Windows and non-Windows executions.
+MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
+export MAVEN_CMD_LINE_ARGS
+
+WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+exec "$JAVACMD" \
+ $MAVEN_OPTS \
+ $MAVEN_DEBUG_OPTS \
+ -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
+ "-Dmaven.home=${M2_HOME}" \
+ "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
+ ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
diff --git a/src/demo1/mvnw.cmd b/src/demo1/mvnw.cmd
new file mode 100644
index 0000000..1d8ab01
--- /dev/null
+++ b/src/demo1/mvnw.cmd
@@ -0,0 +1,188 @@
+@REM ----------------------------------------------------------------------------
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements. See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership. The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License. You may obtain a copy of the License at
+@REM
+@REM https://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied. See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+@REM ----------------------------------------------------------------------------
+
+@REM ----------------------------------------------------------------------------
+@REM Maven Start Up Batch script
+@REM
+@REM Required ENV vars:
+@REM JAVA_HOME - location of a JDK home dir
+@REM
+@REM Optional ENV vars
+@REM M2_HOME - location of maven2's installed home dir
+@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
+@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
+@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
+@REM e.g. to debug Maven itself, use
+@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+@REM ----------------------------------------------------------------------------
+
+@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
+@echo off
+@REM set title of command window
+title %0
+@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
+@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
+
+@REM set %HOME% to equivalent of $HOME
+if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
+
+@REM Execute a user defined script before this one
+if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
+@REM check for pre script, once with legacy .bat ending and once with .cmd ending
+if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %*
+if exist "%USERPROFILE%\mavenrc_pre.cmd" call "%USERPROFILE%\mavenrc_pre.cmd" %*
+:skipRcPre
+
+@setlocal
+
+set ERROR_CODE=0
+
+@REM To isolate internal variables from possible post scripts, we use another setlocal
+@setlocal
+
+@REM ==== START VALIDATION ====
+if not "%JAVA_HOME%" == "" goto OkJHome
+
+echo.
+echo Error: JAVA_HOME not found in your environment. >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+:OkJHome
+if exist "%JAVA_HOME%\bin\java.exe" goto init
+
+echo.
+echo Error: JAVA_HOME is set to an invalid directory. >&2
+echo JAVA_HOME = "%JAVA_HOME%" >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+@REM ==== END VALIDATION ====
+
+:init
+
+@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
+@REM Fallback to current working directory if not found.
+
+set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
+IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
+
+set EXEC_DIR=%CD%
+set WDIR=%EXEC_DIR%
+:findBaseDir
+IF EXIST "%WDIR%"\.mvn goto baseDirFound
+cd ..
+IF "%WDIR%"=="%CD%" goto baseDirNotFound
+set WDIR=%CD%
+goto findBaseDir
+
+:baseDirFound
+set MAVEN_PROJECTBASEDIR=%WDIR%
+cd "%EXEC_DIR%"
+goto endDetectBaseDir
+
+:baseDirNotFound
+set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
+cd "%EXEC_DIR%"
+
+:endDetectBaseDir
+
+IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
+
+@setlocal EnableExtensions EnableDelayedExpansion
+for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
+@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
+
+:endReadAdditionalConfig
+
+SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
+set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
+set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar"
+
+FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
+ IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
+)
+
+@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
+if exist %WRAPPER_JAR% (
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Found %WRAPPER_JAR%
+ )
+) else (
+ if not "%MVNW_REPOURL%" == "" (
+ SET DOWNLOAD_URL="%MVNW_REPOURL%/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar"
+ )
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Couldn't find %WRAPPER_JAR%, downloading it ...
+ echo Downloading from: %DOWNLOAD_URL%
+ )
+
+ powershell -Command "&{"^
+ "$webclient = new-object System.Net.WebClient;"^
+ "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
+ "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
+ "}"^
+ "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
+ "}"
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Finished downloading %WRAPPER_JAR%
+ )
+)
+@REM End of extension
+
+@REM Provide a "standardized" way to retrieve the CLI args that will
+@REM work with both Windows and non-Windows executions.
+set MAVEN_CMD_LINE_ARGS=%*
+
+%MAVEN_JAVA_EXE% ^
+ %JVM_CONFIG_MAVEN_PROPS% ^
+ %MAVEN_OPTS% ^
+ %MAVEN_DEBUG_OPTS% ^
+ -classpath %WRAPPER_JAR% ^
+ "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^
+ %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
+if ERRORLEVEL 1 goto error
+goto end
+
+:error
+set ERROR_CODE=1
+
+:end
+@endlocal & set ERROR_CODE=%ERROR_CODE%
+
+if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost
+@REM check for post script, once with legacy .bat ending and once with .cmd ending
+if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat"
+if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd"
+:skipRcPost
+
+@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
+if "%MAVEN_BATCH_PAUSE%"=="on" pause
+
+if "%MAVEN_TERMINATE_CMD%"=="on" exit %ERROR_CODE%
+
+cmd /C exit /B %ERROR_CODE%
diff --git a/src/demo1/pom.xml b/src/demo1/pom.xml
new file mode 100644
index 0000000..431a469
--- /dev/null
+++ b/src/demo1/pom.xml
@@ -0,0 +1,130 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.4
+
+
+ com.example
+ demo
+ 0.0.1-SNAPSHOT
+ demo
+ Demo project for Spring Boot
+
+ 17
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+ mysql
+ mysql-connector-java
+ 5.1.47
+
+
+ org.springframework.boot
+ spring-boot-starter-jdbc
+
+
+
+ org.apache.httpcomponents
+ httpclient
+ 4.5.2
+
+
+
+ org.bouncycastle
+ bcprov-jdk16
+ 1.46
+
+
+
+
+
+ org.apache.shiro
+ shiro-core
+ 1.4.0
+
+
+ slf4j-api
+ org.slf4j
+
+
+
+
+
+
+ com.alibaba
+ fastjson
+ 1.2.47
+
+
+
+
+ org.projectlombok
+ lombok
+ true
+
+
+
+ com.baomidou
+ mybatis-plus-boot-starter
+ 3.1.1
+
+
+
+ org.springdoc
+ springdoc-openapi-ui
+ 1.6.6
+
+
+ org.springdoc
+ springdoc-openapi-common
+ 1.6.6
+
+
+ io.swagger.core.v3
+ swagger-models
+ 2.1.12
+
+
+ io.swagger.core.v3
+ swagger-annotations
+ 2.1.12
+
+
+ org.springframework.boot
+ spring-boot-starter-thymeleaf
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+ 1.8
+ 1.8
+
+
+
+
+
+
diff --git a/src/demo1/src/main/java/com/example/demo/Demo1Application.java b/src/demo1/src/main/java/com/example/demo/Demo1Application.java
new file mode 100644
index 0000000..6100d37
--- /dev/null
+++ b/src/demo1/src/main/java/com/example/demo/Demo1Application.java
@@ -0,0 +1,13 @@
+package com.example.demo;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class Demo1Application {
+
+ public static void main(String[] args) {
+ SpringApplication.run(Demo1Application.class, args);
+ }
+
+}
diff --git a/src/demo1/src/main/resources/application.properties b/src/demo1/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/src/demo1/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/src/demo1/src/main/resources/application.yml b/src/demo1/src/main/resources/application.yml
new file mode 100644
index 0000000..53d771e
--- /dev/null
+++ b/src/demo1/src/main/resources/application.yml
@@ -0,0 +1,8 @@
+wx:
+ miniapp:
+ configs:
+ - appid: #微信小程序的appid
+ secret: #微信小程序的Secret
+ token: #微信小程序消息服务器配置的token
+ aesKey: #微信小程序消息服务器配置的EncodingAESKey
+ msgDataFormat: JSON
\ No newline at end of file
diff --git a/src/demo1/src/test/java/com/example/demo/Demo1ApplicationTests.java b/src/demo1/src/test/java/com/example/demo/Demo1ApplicationTests.java
new file mode 100644
index 0000000..dd22115
--- /dev/null
+++ b/src/demo1/src/test/java/com/example/demo/Demo1ApplicationTests.java
@@ -0,0 +1,13 @@
+package com.example.demo;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class Demo1ApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/代码/demo1/VX/.gitignore b/代码/demo1/VX/.gitignore
new file mode 100644
index 0000000..a2a3040
--- /dev/null
+++ b/代码/demo1/VX/.gitignore
@@ -0,0 +1,31 @@
+HELP.md
+target/
+!.mvn/wrapper/maven-wrapper.jar
+!**/src/main/**
+!**/src/test/**
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+
+### VS Code ###
+.vscode/
diff --git a/代码/demo1/VX/README.md b/代码/demo1/VX/README.md
new file mode 100644
index 0000000..c8e2a60
--- /dev/null
+++ b/代码/demo1/VX/README.md
@@ -0,0 +1,28 @@
+# 慕课网,微信小程序开发入门练习
+
+- 根据[https://github.com/bjchen2/WxProgram](https://github.com/bjchen2/WxProgram)
+
+ 的基本代码进行修改,利用mybatisplus框架替换原来的mybatis,并解决了其删除操作不能用DELETE请求的小问题
+- 微信前端代码在a1文件夹下
+- 慕课网微信小程序开发源码,大体写法和视频一样,部分地方以个人理解做了适当更改,尽可能的使用springboot特性,简化代码(如:除去datasource和sessionFactory类、mybatis.xml的构造,直接在SpringBoot中配置;修改controller访问地址和访问方式,尽可能符合restful规范)
+- 参考资料:
+ https://www.imooc.com/learn/945
+
+- csdn [https://blog.csdn.net/m0_67290880/article/details/123770899](https://blog.csdn.net/m0_67290880/article/details/123770899)
+### 环境
+- JDK:JDK1.8
+- mysql:8.0
+
+
+
+- 使用lombok包,springboot的很多特性,虽然知道没有视频讲解对新手很不友好,但能减少代码冗余量,学到更多。(其实是本人太懒,这些工具太好用)建议大家都能了解一下。
+添加响应结果集工具类(util包下的FormatResponseUtil类),用于controller返回结果
+- 为降低代码冗余,所有get/set方法均用lombok包的Data注解,具体使用方法可自行百度
+若不愿使用lombok包可将源码中所有bean的@Data注解去掉,加上get/set方法
+若不喜欢使用响应结果集工具类的,直接删除util包,按照视频教学返回map即可
+- 接口
+
+
+- 主界面
+
+
\ No newline at end of file
diff --git a/代码/demo1/VX/mvnw b/代码/demo1/VX/mvnw
new file mode 100644
index 0000000..a16b543
--- /dev/null
+++ b/代码/demo1/VX/mvnw
@@ -0,0 +1,310 @@
+#!/bin/sh
+# ----------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ----------------------------------------------------------------------------
+
+# ----------------------------------------------------------------------------
+# Maven Start Up Batch script
+#
+# Required ENV vars:
+# ------------------
+# JAVA_HOME - location of a JDK home dir
+#
+# Optional ENV vars
+# -----------------
+# M2_HOME - location of maven2's installed home dir
+# MAVEN_OPTS - parameters passed to the Java VM when running Maven
+# e.g. to debug Maven itself, use
+# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+# ----------------------------------------------------------------------------
+
+if [ -z "$MAVEN_SKIP_RC" ] ; then
+
+ if [ -f /etc/mavenrc ] ; then
+ . /etc/mavenrc
+ fi
+
+ if [ -f "$HOME/.mavenrc" ] ; then
+ . "$HOME/.mavenrc"
+ fi
+
+fi
+
+# OS specific support. $var _must_ be set to either true or false.
+cygwin=false;
+darwin=false;
+mingw=false
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+ MINGW*) mingw=true;;
+ Darwin*) darwin=true
+ # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
+ # See https://developer.apple.com/library/mac/qa/qa1170/_index.html
+ if [ -z "$JAVA_HOME" ]; then
+ if [ -x "/usr/libexec/java_home" ]; then
+ export JAVA_HOME="`/usr/libexec/java_home`"
+ else
+ export JAVA_HOME="/Library/Java/Home"
+ fi
+ fi
+ ;;
+esac
+
+if [ -z "$JAVA_HOME" ] ; then
+ if [ -r /etc/gentoo-release ] ; then
+ JAVA_HOME=`java-config --jre-home`
+ fi
+fi
+
+if [ -z "$M2_HOME" ] ; then
+ ## resolve links - $0 may be a link to maven's home
+ PRG="$0"
+
+ # need this for relative symlinks
+ while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG="`dirname "$PRG"`/$link"
+ fi
+ done
+
+ saveddir=`pwd`
+
+ M2_HOME=`dirname "$PRG"`/..
+
+ # make it fully qualified
+ M2_HOME=`cd "$M2_HOME" && pwd`
+
+ cd "$saveddir"
+ # echo Using m2 at $M2_HOME
+fi
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched
+if $cygwin ; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME=`cygpath --unix "$M2_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
+fi
+
+# For Mingw, ensure paths are in UNIX format before anything is touched
+if $mingw ; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME="`(cd "$M2_HOME"; pwd)`"
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
+fi
+
+if [ -z "$JAVA_HOME" ]; then
+ javaExecutable="`which javac`"
+ if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
+ # readlink(1) is not available as standard on Solaris 10.
+ readLink=`which readlink`
+ if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
+ if $darwin ; then
+ javaHome="`dirname \"$javaExecutable\"`"
+ javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
+ else
+ javaExecutable="`readlink -f \"$javaExecutable\"`"
+ fi
+ javaHome="`dirname \"$javaExecutable\"`"
+ javaHome=`expr "$javaHome" : '\(.*\)/bin'`
+ JAVA_HOME="$javaHome"
+ export JAVA_HOME
+ fi
+ fi
+fi
+
+if [ -z "$JAVACMD" ] ; then
+ if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ else
+ JAVACMD="`which java`"
+ fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+ echo "Error: JAVA_HOME is not defined correctly." >&2
+ echo " We cannot execute $JAVACMD" >&2
+ exit 1
+fi
+
+if [ -z "$JAVA_HOME" ] ; then
+ echo "Warning: JAVA_HOME environment variable is not set."
+fi
+
+CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
+
+# traverses directory structure from process work directory to filesystem root
+# first directory with .mvn subdirectory is considered project base directory
+find_maven_basedir() {
+
+ if [ -z "$1" ]
+ then
+ echo "Path not specified to find_maven_basedir"
+ return 1
+ fi
+
+ basedir="$1"
+ wdir="$1"
+ while [ "$wdir" != '/' ] ; do
+ if [ -d "$wdir"/.mvn ] ; then
+ basedir=$wdir
+ break
+ fi
+ # workaround for JBEAP-8937 (on Solaris 10/Sparc)
+ if [ -d "${wdir}" ]; then
+ wdir=`cd "$wdir/.."; pwd`
+ fi
+ # end of workaround
+ done
+ echo "${basedir}"
+}
+
+# concatenates all lines of a file
+concat_lines() {
+ if [ -f "$1" ]; then
+ echo "$(tr -s '\n' ' ' < "$1")"
+ fi
+}
+
+BASE_DIR=`find_maven_basedir "$(pwd)"`
+if [ -z "$BASE_DIR" ]; then
+ exit 1;
+fi
+
+##########################################################################################
+# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+# This allows using the maven wrapper in projects that prohibit checking in binary data.
+##########################################################################################
+if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found .mvn/wrapper/maven-wrapper.jar"
+ fi
+else
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
+ fi
+ if [ -n "$MVNW_REPOURL" ]; then
+ jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+ else
+ jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+ fi
+ while IFS="=" read key value; do
+ case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
+ esac
+ done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Downloading from: $jarUrl"
+ fi
+ wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
+ if $cygwin; then
+ wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
+ fi
+
+ if command -v wget > /dev/null; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found wget ... using wget"
+ fi
+ if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
+ wget "$jarUrl" -O "$wrapperJarPath"
+ else
+ wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath"
+ fi
+ elif command -v curl > /dev/null; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found curl ... using curl"
+ fi
+ if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
+ curl -o "$wrapperJarPath" "$jarUrl" -f
+ else
+ curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
+ fi
+
+ else
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Falling back to using Java to download"
+ fi
+ javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
+ # For Cygwin, switch paths to Windows format before running javac
+ if $cygwin; then
+ javaClass=`cygpath --path --windows "$javaClass"`
+ fi
+ if [ -e "$javaClass" ]; then
+ if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo " - Compiling MavenWrapperDownloader.java ..."
+ fi
+ # Compiling the Java class
+ ("$JAVA_HOME/bin/javac" "$javaClass")
+ fi
+ if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+ # Running the downloader
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo " - Running MavenWrapperDownloader.java ..."
+ fi
+ ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
+ fi
+ fi
+ fi
+fi
+##########################################################################################
+# End of extension
+##########################################################################################
+
+export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
+if [ "$MVNW_VERBOSE" = true ]; then
+ echo $MAVEN_PROJECTBASEDIR
+fi
+MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME=`cygpath --path --windows "$M2_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
+ [ -n "$MAVEN_PROJECTBASEDIR" ] &&
+ MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
+fi
+
+# Provide a "standardized" way to retrieve the CLI args that will
+# work with both Windows and non-Windows executions.
+MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
+export MAVEN_CMD_LINE_ARGS
+
+WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+exec "$JAVACMD" \
+ $MAVEN_OPTS \
+ -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
+ "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
+ ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
diff --git a/代码/demo1/VX/mvnw.cmd b/代码/demo1/VX/mvnw.cmd
new file mode 100644
index 0000000..c8d4337
--- /dev/null
+++ b/代码/demo1/VX/mvnw.cmd
@@ -0,0 +1,182 @@
+@REM ----------------------------------------------------------------------------
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements. See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership. The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License. You may obtain a copy of the License at
+@REM
+@REM https://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied. See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+@REM ----------------------------------------------------------------------------
+
+@REM ----------------------------------------------------------------------------
+@REM Maven Start Up Batch script
+@REM
+@REM Required ENV vars:
+@REM JAVA_HOME - location of a JDK home dir
+@REM
+@REM Optional ENV vars
+@REM M2_HOME - location of maven2's installed home dir
+@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
+@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
+@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
+@REM e.g. to debug Maven itself, use
+@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+@REM ----------------------------------------------------------------------------
+
+@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
+@echo off
+@REM set title of command window
+title %0
+@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
+@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
+
+@REM set %HOME% to equivalent of $HOME
+if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
+
+@REM Execute a user defined script before this one
+if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
+@REM check for pre script, once with legacy .bat ending and once with .cmd ending
+if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
+if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
+:skipRcPre
+
+@setlocal
+
+set ERROR_CODE=0
+
+@REM To isolate internal variables from possible post scripts, we use another setlocal
+@setlocal
+
+@REM ==== START VALIDATION ====
+if not "%JAVA_HOME%" == "" goto OkJHome
+
+echo.
+echo Error: JAVA_HOME not found in your environment. >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+:OkJHome
+if exist "%JAVA_HOME%\bin\java.exe" goto init
+
+echo.
+echo Error: JAVA_HOME is set to an invalid directory. >&2
+echo JAVA_HOME = "%JAVA_HOME%" >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+@REM ==== END VALIDATION ====
+
+:init
+
+@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
+@REM Fallback to current working directory if not found.
+
+set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
+IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
+
+set EXEC_DIR=%CD%
+set WDIR=%EXEC_DIR%
+:findBaseDir
+IF EXIST "%WDIR%"\.mvn goto baseDirFound
+cd ..
+IF "%WDIR%"=="%CD%" goto baseDirNotFound
+set WDIR=%CD%
+goto findBaseDir
+
+:baseDirFound
+set MAVEN_PROJECTBASEDIR=%WDIR%
+cd "%EXEC_DIR%"
+goto endDetectBaseDir
+
+:baseDirNotFound
+set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
+cd "%EXEC_DIR%"
+
+:endDetectBaseDir
+
+IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
+
+@setlocal EnableExtensions EnableDelayedExpansion
+for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
+@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
+
+:endReadAdditionalConfig
+
+SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
+set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
+set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+
+FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
+ IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
+)
+
+@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
+if exist %WRAPPER_JAR% (
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Found %WRAPPER_JAR%
+ )
+) else (
+ if not "%MVNW_REPOURL%" == "" (
+ SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+ )
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Couldn't find %WRAPPER_JAR%, downloading it ...
+ echo Downloading from: %DOWNLOAD_URL%
+ )
+
+ powershell -Command "&{"^
+ "$webclient = new-object System.Net.WebClient;"^
+ "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
+ "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
+ "}"^
+ "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
+ "}"
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Finished downloading %WRAPPER_JAR%
+ )
+)
+@REM End of extension
+
+@REM Provide a "standardized" way to retrieve the CLI args that will
+@REM work with both Windows and non-Windows executions.
+set MAVEN_CMD_LINE_ARGS=%*
+
+%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
+if ERRORLEVEL 1 goto error
+goto end
+
+:error
+set ERROR_CODE=1
+
+:end
+@endlocal & set ERROR_CODE=%ERROR_CODE%
+
+if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
+@REM check for post script, once with legacy .bat ending and once with .cmd ending
+if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
+if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
+:skipRcPost
+
+@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
+if "%MAVEN_BATCH_PAUSE%" == "on" pause
+
+if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
+
+exit /B %ERROR_CODE%
diff --git a/代码/demo1/VX/pom.xml b/代码/demo1/VX/pom.xml
new file mode 100644
index 0000000..bab1419
--- /dev/null
+++ b/代码/demo1/VX/pom.xml
@@ -0,0 +1,143 @@
+
+
+ 4.0.0
+ com.huang
+ VX
+ 0.0.1-SNAPSHOT
+ VX
+ VX
+
+
+ 1.8
+ UTF-8
+ UTF-8
+ 2.3.7.RELEASE
+ 2.3.30
+ 3.5.1
+ 5.4.7
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+
+ io.springfox
+ springfox-swagger2
+ 2.9.2
+
+
+ io.springfox
+ springfox-swagger-ui
+ 2.9.2
+
+
+
+ com.baomidou
+ mybatis-plus-boot-starter
+ 3.4.2
+
+
+ mysql
+ mysql-connector-java
+ runtime
+
+
+ com.baomidou
+ mybatis-plus-generator
+ ${mybatis-plus-generator.version}
+
+
+ org.freemarker
+ freemarker
+ ${freemark.version}
+ test
+
+
+ com.alibaba
+ druid
+ 1.1.21
+
+
+
+
+
+
+ org.projectlombok
+ lombok
+ true
+
+
+
+ cn.hutool
+ hutool-all
+ ${hutool.version}
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+ org.junit.vintage
+ junit-vintage-engine
+
+
+
+
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-dependencies
+ ${spring-boot.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.8.1
+
+ 1.8
+ 1.8
+ UTF-8
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+ 2.3.7.RELEASE
+
+ com.huang.mp.VXApplication
+
+
+
+ repackage
+
+ repackage
+
+
+
+
+
+
+
+
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/VXApplication.java b/代码/demo1/VX/src/main/java/com/huang/mp/VXApplication.java
new file mode 100644
index 0000000..d09ca5d
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/VXApplication.java
@@ -0,0 +1,16 @@
+package com.huang.mp;
+
+import org.mybatis.spring.annotation.MapperScan;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+@SpringBootApplication
+@MapperScan("com.huang.mp.mapper")
+public class VXApplication {
+ public static void main(String[] args) {
+ SpringApplication.run(VXApplication.class, args);
+ }
+
+}
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/config/BaseEntityMetaObjectHandler.java b/代码/demo1/VX/src/main/java/com/huang/mp/config/BaseEntityMetaObjectHandler.java
new file mode 100644
index 0000000..440af0e
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/config/BaseEntityMetaObjectHandler.java
@@ -0,0 +1,32 @@
+package com.huang.mp.config;
+
+import cn.hutool.core.util.ObjectUtil;
+import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
+import com.huang.mp.entity.Area;
+import org.apache.ibatis.reflection.MetaObject;
+import org.springframework.stereotype.Component;
+import java.time.LocalDateTime;
+
+
+
+@Component
+public class BaseEntityMetaObjectHandler implements MetaObjectHandler {
+
+
+ @Override
+ public void insertFill(MetaObject metaObject) {
+ // 创建时间自动填充
+ if (metaObject.hasSetter(Area.CREATE_TIME) && ObjectUtil.isNull(getFieldValByName(Area.CREATE_TIME, metaObject))) {
+ this.strictInsertFill(metaObject, Area.CREATE_TIME, LocalDateTime.class, LocalDateTime.now());
+ }
+ }
+ @Override
+ public void updateFill(MetaObject metaObject) {
+ // 修改时间自动填充
+ if (metaObject.hasSetter(Area.MODIFIED_TIME) && ObjectUtil.isNull(getFieldValByName(Area.MODIFIED_TIME, metaObject))) {
+ this.strictUpdateFill(metaObject, Area.MODIFIED_TIME, LocalDateTime.class, LocalDateTime.now());
+ }
+
+ }
+
+}
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/config/DateFormatConfig.java b/代码/demo1/VX/src/main/java/com/huang/mp/config/DateFormatConfig.java
new file mode 100644
index 0000000..5426203
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/config/DateFormatConfig.java
@@ -0,0 +1,28 @@
+package com.huang.mp.config;
+
+import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+
+import java.time.LocalDateTime;
+import java.time.format.DateTimeFormatter;
+
+
+@Configuration
+public class DateFormatConfig {
+
+ @Value("${spring.jackson.date-format:yyyy-MM-dd HH:mm:ss}")
+ private String pattern;
+
+ @Bean
+ public LocalDateTimeSerializer localDateTimeDeserializer() {
+ return new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(pattern));
+ }
+
+ @Bean
+ public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilderCustomizer() {
+ return builder -> builder.serializerByType(LocalDateTime.class, localDateTimeDeserializer());
+ }
+}
\ No newline at end of file
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/config/MybatisPlusConfig.java b/代码/demo1/VX/src/main/java/com/huang/mp/config/MybatisPlusConfig.java
new file mode 100644
index 0000000..b3baa23
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/config/MybatisPlusConfig.java
@@ -0,0 +1,27 @@
+package com.huang.mp.config;
+
+import com.baomidou.mybatisplus.annotation.DbType;
+import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
+import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+
+/**
+ * MybatisPlus 配置类
+ *
+ * @author huang
+ * @since 2022-03-18
+ */
+
+@Configuration
+public class MybatisPlusConfig {
+ /**
+ * 分页插件
+ */
+ @Bean
+ public MybatisPlusInterceptor mybatisPlusInterceptor() {
+ MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
+ interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
+ return interceptor;
+ }
+}
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/config/SwaggerConfig.java b/代码/demo1/VX/src/main/java/com/huang/mp/config/SwaggerConfig.java
new file mode 100644
index 0000000..e9580cb
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/config/SwaggerConfig.java
@@ -0,0 +1,70 @@
+package com.huang.mp.config;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import springfox.documentation.builders.RequestHandlerSelectors;
+import springfox.documentation.service.ApiInfo;
+import springfox.documentation.service.Contact;
+import springfox.documentation.spi.DocumentationType;
+import springfox.documentation.spring.web.plugins.Docket;
+import springfox.documentation.swagger2.annotations.EnableSwagger2;
+
+import java.util.ArrayList;
+
+@Configuration //配置类
+@EnableSwagger2// 开启Swagger2的自动配置
+public class SwaggerConfig {
+
+
+
+ @Bean //配置docket以配置Swagger具体参数
+ public Docket docket() {
+ return new Docket(DocumentationType.SWAGGER_2)
+ .apiInfo(apiInfo())
+ .groupName("Default")
+ .enable(true) //配置是否启用Swagger,如果是false,在浏览器将无法访问
+ .select()// 通过.select()方法,去配置扫描接口,RequestHandlerSelectors配置如何扫描接口
+ .apis(RequestHandlerSelectors.basePackage("com.huang.mp.controller"))
+ // 配置如何通过path过滤,即这里只扫描请求以/kuang开头的接口
+// .paths(PathSelectors.ant("/kuang/**"))
+ .build();
+ }
+
+
+
+ //配置文档信息
+ private ApiInfo apiInfo() {
+ Contact contact = new Contact("HWP", "http://xxx.xxx.com/联系人访问链接", "1801210430@qq.com");
+ return new ApiInfo(
+ "hwp的swagger", // 标题
+ "哟,敲bug呢", // 描述
+ "v1.0", // 版本
+ "http://terms.service.url/组织链接", // 组织链接
+ contact, // 联系人信息
+ "Apach 2.0 许可", // 许可
+ "许可链接", // 许可连接
+ new ArrayList<>()// 扩展
+ );
+ }
+
+
+
+
+ @Bean
+ public Docket docket1(){
+ return new Docket(DocumentationType.SWAGGER_2).groupName("group1");
+ }
+ @Bean
+ public Docket docket2(){
+ return new Docket(DocumentationType.SWAGGER_2).groupName("group2");
+ }
+ @Bean
+ public Docket docket3(){
+ return new Docket(DocumentationType.SWAGGER_2).groupName("group3");
+ }
+
+
+
+}
+
+
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/config/WebConfig.java b/代码/demo1/VX/src/main/java/com/huang/mp/config/WebConfig.java
new file mode 100644
index 0000000..04c5ee7
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/config/WebConfig.java
@@ -0,0 +1,19 @@
+package com.huang.mp.config;
+
+import org.springframework.context.annotation.Configuration;
+import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
+import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
+
+/**
+ * Web 配置类
+ *
+ * @author huang
+ * @since 2022-03-18
+ */
+@Configuration
+public class WebConfig implements WebMvcConfigurer {
+ @Override
+ public void addViewControllers(ViewControllerRegistry registry) {
+ registry.addViewController("/").setViewName("login/login");
+ }
+}
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/controller/AreaController.java b/代码/demo1/VX/src/main/java/com/huang/mp/controller/AreaController.java
new file mode 100644
index 0000000..5c9459a
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/controller/AreaController.java
@@ -0,0 +1,62 @@
+package com.huang.mp.controller;
+
+
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
+import com.huang.mp.entity.Area;
+import com.huang.mp.service.impl.AreaServiceImpl;
+import com.huang.mp.util.FormatResponseUtil;
+import com.huang.mp.util.ResponseResult;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+
+import org.springframework.stereotype.Controller;
+
+import javax.xml.crypto.Data;
+
+/**
+ *
+ * 前端控制器
+ *
+ *
+ * @author huang
+ * @since 2022-03-27
+ */
+@RestController
+@RequestMapping("/area")
+public class AreaController {
+
+ @Autowired(required = false)
+ AreaServiceImpl areaService;
+
+ @GetMapping("/areaList")
+ public ResponseResult queryAll(){
+ return FormatResponseUtil.formatResponse(areaService.queryAll());
+ }
+
+ @PostMapping("/addArea")
+ public ResponseResult addArea(@RequestBody String name,
+ String priority){
+ Area area = new Area();
+ area.setName(name);
+ area.setPriority(priority);
+ return FormatResponseUtil.formatResponse(areaService.addArea(area));
+ }
+
+ @DeleteMapping("/delete")//这里执行的是物理删除
+ public ResponseResult delAreaById(Integer id){
+ return FormatResponseUtil.formatResponse(areaService.delAreaById(id));
+ }
+
+ @GetMapping("/one")
+ public ResponseResult queryById(int id){
+ return FormatResponseUtil.formatResponse(areaService.queryAreaById(id));
+ }
+
+ @PostMapping("/areaInfo")
+ public ResponseResult updateArea(@RequestBody Area area){
+ return FormatResponseUtil.formatResponse(areaService.updateById(area));
+ }
+
+}
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/entity/Area.java b/代码/demo1/VX/src/main/java/com/huang/mp/entity/Area.java
new file mode 100644
index 0000000..785b757
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/entity/Area.java
@@ -0,0 +1,97 @@
+package com.huang.mp.entity;
+
+import com.baomidou.mybatisplus.annotation.FieldFill;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.fasterxml.jackson.annotation.JsonFormat;
+
+import java.io.Serializable;
+import java.time.LocalDateTime;
+
+/**
+ *
+ *
+ *
+ *
+ * @author huang
+ * @since 2022-03-27
+ */
+public class Area implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+
+ public static final String CREATE_TIME = "createTime";
+ public static final String MODIFIED_TIME = "lastEditTime";
+
+
+ @TableId(value = "id", type = IdType.AUTO)
+ private Integer id;
+
+ private String name;
+
+ /**
+ * 权值
+ */
+ private String priority;
+
+ /**
+ * 创建时间戳
+ */
+ @TableField(fill = FieldFill.INSERT)
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ private LocalDateTime createTime;
+
+ /**
+ * 最后修改时间戳
+ */
+ @TableField(fill = FieldFill.UPDATE)
+ private LocalDateTime lastEditTime;
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+ public String getPriority() {
+ return priority;
+ }
+
+ public void setPriority(String priority) {
+ this.priority = priority;
+ }
+ public LocalDateTime getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(LocalDateTime createTime) {
+ this.createTime = createTime;
+ }
+ public LocalDateTime getLastEditTime() {
+ return lastEditTime;
+ }
+
+ public void setLastEditTime(LocalDateTime lastEditTime) {
+ this.lastEditTime = lastEditTime;
+ }
+
+ @Override
+ public String toString() {
+ return "Area{" +
+ "id=" + id +
+ ", name=" + name +
+ ", priority=" + priority +
+ ", createTime=" + createTime +
+ ", lastEditTime=" + lastEditTime +
+ "}";
+ }
+}
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/mapper/AreaMapper.java b/代码/demo1/VX/src/main/java/com/huang/mp/mapper/AreaMapper.java
new file mode 100644
index 0000000..6b51c80
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/mapper/AreaMapper.java
@@ -0,0 +1,16 @@
+package com.huang.mp.mapper;
+
+import com.huang.mp.entity.Area;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ *
+ * Mapper 接口
+ *
+ *
+ * @author huang
+ * @since 2022-03-27
+ */
+public interface AreaMapper extends BaseMapper {
+
+}
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/mapper/xml/AreaMapper.xml b/代码/demo1/VX/src/main/java/com/huang/mp/mapper/xml/AreaMapper.xml
new file mode 100644
index 0000000..0b8a233
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/mapper/xml/AreaMapper.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/service/IAreaService.java b/代码/demo1/VX/src/main/java/com/huang/mp/service/IAreaService.java
new file mode 100644
index 0000000..bb7f235
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/service/IAreaService.java
@@ -0,0 +1,42 @@
+package com.huang.mp.service;
+
+import com.huang.mp.entity.Area;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+import java.util.List;
+
+/**
+ *
+ * 服务类
+ *
+ *
+ * @author huang
+ * @since 2022-03-27
+ */
+public interface IAreaService extends IService {
+
+ /**
+ * 查询所有Area
+ */
+ List queryAll();
+
+ /**
+ * 通过Id查询Area
+ */
+ Area queryAreaById(int id);
+
+// /**
+// * 通过传入的area更新Area
+// */
+// Area updateArea(Area area);
+
+ /**
+ * 通过Id删除Area
+ */
+ boolean delAreaById(int id);
+
+ /**
+ * 创建Area
+ */
+ Area addArea(Area area);
+}
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/service/impl/AreaServiceImpl.java b/代码/demo1/VX/src/main/java/com/huang/mp/service/impl/AreaServiceImpl.java
new file mode 100644
index 0000000..fb15c83
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/service/impl/AreaServiceImpl.java
@@ -0,0 +1,64 @@
+package com.huang.mp.service.impl;
+
+import com.baomidou.mybatisplus.core.conditions.Wrapper;
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
+import com.huang.mp.entity.Area;
+import com.huang.mp.mapper.AreaMapper;
+import com.huang.mp.service.IAreaService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.Date;
+import java.util.List;
+
+/**
+ *
+ * 服务实现类
+ *
+ *
+ * @author huang
+ * @since 2022-03-27
+ */
+@Service
+public class AreaServiceImpl extends ServiceImpl implements IAreaService {
+
+ @Autowired(required = false)
+ AreaMapper areaMapper;
+
+ @Override
+ public List queryAll() {
+ LambdaQueryWrapper wrapper = Wrappers.lambdaQuery();
+ wrapper.orderByAsc(Area::getId);
+ List areaList = areaMapper.selectList(wrapper);
+ return areaList;
+ }
+
+
+ @Override
+ public Area queryAreaById(int id) {
+ Area area = areaMapper.selectById(id);
+ return area;
+ }
+
+// @Override
+// public Area updateArea(Area area) {
+// return null;
+// }
+
+ @Override
+ public boolean delAreaById(int id) {
+ boolean ans;
+ int i = areaMapper.deleteById(id);
+ return ans = i>0 ? true:false;
+ }
+
+ @Override
+ public Area addArea(Area area) {
+ LambdaQueryWrapper wrapper = Wrappers.lambdaQuery();
+ wrapper.orderByAsc(Area::getId);
+ return area;
+ }
+}
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/util/FormatResponseUtil.java b/代码/demo1/VX/src/main/java/com/huang/mp/util/FormatResponseUtil.java
new file mode 100644
index 0000000..2a87a5c
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/util/FormatResponseUtil.java
@@ -0,0 +1,47 @@
+package com.huang.mp.util;
+
+
+public class FormatResponseUtil {
+ /**
+ * 请求成功,不携带数据
+ */
+ public static ResponseResult formatResponse() {
+ ResponseResult result = null;
+ return formatResponse(result);
+ }
+
+ private static ResponseResult formatResponse(ResponseResult result) {
+ if (result == null) {
+ result = new ResponseResult(true, "请求成功", null);
+ }
+ return result;
+ }
+
+ /**
+ * 请求成功,带数据
+ */
+ public static ResponseResult formatResponse(Object object) {
+ return new ResponseResult(true, "请求成功", object);
+ }
+
+ /**
+ * 请求成功,携带提示信息和数据
+ */
+ public static ResponseResult formatResponse(String msg, Object object) {
+ return new ResponseResult(true, msg, object);
+ }
+
+ /**
+ * 请求失败,返回错误和错误信息
+ */
+ public static ResponseResult error(Exception e) {
+ return new ResponseResult(false, e.getMessage());
+ }
+
+ /**
+ * 请求失败,返回异常信息
+ */
+ public static ResponseResult error(String exception) {
+ return new ResponseResult(false, exception);
+ }
+}
diff --git a/代码/demo1/VX/src/main/java/com/huang/mp/util/ResponseResult.java b/代码/demo1/VX/src/main/java/com/huang/mp/util/ResponseResult.java
new file mode 100644
index 0000000..335dd46
--- /dev/null
+++ b/代码/demo1/VX/src/main/java/com/huang/mp/util/ResponseResult.java
@@ -0,0 +1,34 @@
+package com.huang.mp.util;
+
+import lombok.Data;
+
+@Data
+public class ResponseResult {
+ /**
+ * 请求状态
+ */
+ private boolean success;
+ /**
+ * 返回提示信息
+ */
+ private String msg;
+ /**
+ * 返回数据
+ */
+ private Object data;
+
+ public ResponseResult(boolean success, String msg, Object data) {
+ this.success = success;
+ this.msg = msg;
+ this.data = data;
+ }
+
+ public ResponseResult(boolean code, String msg) {
+ this.success = success;
+ this.msg = msg;
+ }
+
+ public ResponseResult(boolean success) {
+ this.success = success;
+ }
+}
diff --git a/代码/demo1/VX/src/main/resources/application.yaml b/代码/demo1/VX/src/main/resources/application.yaml
new file mode 100644
index 0000000..463028f
--- /dev/null
+++ b/代码/demo1/VX/src/main/resources/application.yaml
@@ -0,0 +1,20 @@
+spring:
+ datasource:
+ driver-class-name: com.mysql.cj.jdbc.Driver
+ url: jdbc:mysql://localhost:3306/wxlogin?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
+ username: root
+ password: root
+ type: com.alibaba.druid.pool.DruidDataSource
+ thymeleaf:
+ # 开发时为 false,上线再改为 true
+ cache: true
+
+mybatis-plus:
+ global-config:
+ db-config:
+ id-type: auto # 自增主键
+ mapper-locations: com/huang/mp/mapper/xml/*.xml
+ type-aliases-package: com.huang.mp.entity
+logging:
+ level:
+ com.huang.mp.mapper: trace
\ No newline at end of file
diff --git a/代码/demo1/VX/src/test/java/com/huang/mp/MpApplicationTests.java b/代码/demo1/VX/src/test/java/com/huang/mp/MpApplicationTests.java
new file mode 100644
index 0000000..38c829d
--- /dev/null
+++ b/代码/demo1/VX/src/test/java/com/huang/mp/MpApplicationTests.java
@@ -0,0 +1,23 @@
+package com.huang.mp;
+
+import com.huang.mp.entity.Area;
+import com.huang.mp.mapper.AreaMapper;
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+
+import java.util.List;
+
+@SpringBootTest
+class MpApplicationTests {
+
+ @Autowired(required = false)
+ AreaMapper areaMapper;
+
+
+ @Test
+ void test01(){
+ List areaList = areaMapper.selectList(null);
+ areaList.forEach(System.out::println);
+ }
+}
diff --git a/代码/demo1/VX/src/test/java/com/huang/mp/generator/MybatisPlusCodeGenerator.java b/代码/demo1/VX/src/test/java/com/huang/mp/generator/MybatisPlusCodeGenerator.java
new file mode 100644
index 0000000..36f85f6
--- /dev/null
+++ b/代码/demo1/VX/src/test/java/com/huang/mp/generator/MybatisPlusCodeGenerator.java
@@ -0,0 +1,36 @@
+package com.huang.mp.generator;
+
+
+
+import com.baomidou.mybatisplus.generator.FastAutoGenerator;
+import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+/**
+ * MybatisPlus 代码生成器
+ *
+ * @author huang
+ * @since 2022-03-18
+ */
+//执行 main 方法,控制台输入模块表名,回车自动生成对应项目目录中
+@SpringBootApplication
+public class MybatisPlusCodeGenerator {
+ public static void main(String[] args) {
+ String projectPath = System.getProperty("user.dir") + "/src/main/java";
+ String url = "jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai";
+ String username = "root";
+ String password = "11111";
+ FastAutoGenerator
+ .create(url, username, password)
+ .globalConfig(builder -> {
+ builder.author("huang") // 设置作者
+ .fileOverride() // 覆盖已生成文件
+ .outputDir(projectPath); // 指定输出目录
+ })
+ .packageConfig(builder -> {
+ builder.parent("com.huang.mp"); // 设置父包名
+ })
+ .templateEngine(new FreemarkerTemplateEngine()) // 使用Freemarker引擎模板,默认的是Velocity引擎模板
+ .execute();
+ }
+}
diff --git a/代码/demo1/VX/table b/代码/demo1/VX/table
new file mode 100644
index 0000000..42e837d
--- /dev/null
+++ b/代码/demo1/VX/table
@@ -0,0 +1,26 @@
+
+
+SET NAMES utf8mb4;
+SET FOREIGN_KEY_CHECKS = 0;
+
+-- ----------------------------
+-- Table structure for area
+-- ----------------------------
+DROP TABLE IF EXISTS `area`;
+CREATE TABLE `area` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
+ `priority` int NOT NULL DEFAULT 0 COMMENT '权值',
+ `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间戳',
+ `last_edit_time` datetime(0) NULL DEFAULT NULL COMMENT '最后修改时间戳',
+ PRIMARY KEY (`id`) USING BTREE,
+ UNIQUE INDEX `name`(`name`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 15 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
+
+-- ----------------------------
+-- Records of area
+-- ----------------------------
+INSERT INTO `area` VALUES (10, '南京', 5, '2022-03-11 12:53:53', '2022-03-11 12:53:53');
+INSERT INTO `area` VALUES (11, '北京', 9, '2022-03-11 12:59:38', '2022-03-11 12:59:38');
+
+SET FOREIGN_KEY_CHECKS = 1;
diff --git a/代码/demo1/a2/.eslintrc.js b/代码/demo1/a2/.eslintrc.js
new file mode 100644
index 0000000..115cc02
--- /dev/null
+++ b/代码/demo1/a2/.eslintrc.js
@@ -0,0 +1,31 @@
+/*
+ * Eslint config file
+ * Documentation: https://eslint.org/docs/user-guide/configuring/
+ * Install the Eslint extension before using this feature.
+ */
+module.exports = {
+ env: {
+ es6: true,
+ browser: true,
+ node: true,
+ },
+ ecmaFeatures: {
+ modules: true,
+ },
+ parserOptions: {
+ ecmaVersion: 2018,
+ sourceType: 'module',
+ },
+ globals: {
+ wx: true,
+ App: true,
+ Page: true,
+ getCurrentPages: true,
+ getApp: true,
+ Component: true,
+ requirePlugin: true,
+ requireMiniProgram: true,
+ },
+ // extends: 'eslint:recommended',
+ rules: {},
+}
diff --git a/代码/demo1/a2/.idea/.gitignore b/代码/demo1/a2/.idea/.gitignore
new file mode 100644
index 0000000..73f69e0
--- /dev/null
+++ b/代码/demo1/a2/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/代码/demo1/a2/.idea/a2.iml b/代码/demo1/a2/.idea/a2.iml
new file mode 100644
index 0000000..d6ebd48
--- /dev/null
+++ b/代码/demo1/a2/.idea/a2.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/代码/demo1/a2/.idea/inspectionProfiles/Project_Default.xml b/代码/demo1/a2/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..6560a98
--- /dev/null
+++ b/代码/demo1/a2/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/代码/demo1/a2/.idea/misc.xml b/代码/demo1/a2/.idea/misc.xml
new file mode 100644
index 0000000..639900d
--- /dev/null
+++ b/代码/demo1/a2/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/代码/demo1/a2/.idea/modules.xml b/代码/demo1/a2/.idea/modules.xml
new file mode 100644
index 0000000..48506af
--- /dev/null
+++ b/代码/demo1/a2/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/代码/demo1/a2/.idea/runConfigurations.xml b/代码/demo1/a2/.idea/runConfigurations.xml
new file mode 100644
index 0000000..797acea
--- /dev/null
+++ b/代码/demo1/a2/.idea/runConfigurations.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/代码/demo1/a2/app.js b/代码/demo1/a2/app.js
new file mode 100644
index 0000000..1ed57c4
--- /dev/null
+++ b/代码/demo1/a2/app.js
@@ -0,0 +1,19 @@
+// app.js
+App({
+ onLaunch() {
+ // 展示本地存储能力
+ const logs = wx.getStorageSync('logs') || []
+ logs.unshift(Date.now())
+ wx.setStorageSync('logs', logs)
+
+ // 登录
+ wx.login({
+ success: res => {
+ // 发送 res.code 到后台换取 openId, sessionKey, unionId
+ }
+ })
+ },
+ globalData: {
+ userInfo: null
+ }
+})
diff --git a/代码/demo1/a2/app.json b/代码/demo1/a2/app.json
new file mode 100644
index 0000000..8ce2041
--- /dev/null
+++ b/代码/demo1/a2/app.json
@@ -0,0 +1,16 @@
+{
+ "pages": [
+ "pages/index/index",
+ "pages/logs/logs",
+ "pages/list/list",
+ "pages/operation/operation"
+ ],
+ "window": {
+ "backgroundTextStyle": "light",
+ "navigationBarBackgroundColor": "#fff",
+ "navigationBarTitleText": "Weixin",
+ "navigationBarTextStyle": "black"
+ },
+ "style": "v2",
+ "sitemapLocation": "sitemap.json"
+}
\ No newline at end of file
diff --git a/代码/demo1/a2/app.wxss b/代码/demo1/a2/app.wxss
new file mode 100644
index 0000000..06c6fc9
--- /dev/null
+++ b/代码/demo1/a2/app.wxss
@@ -0,0 +1,10 @@
+/**app.wxss**/
+.container {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: space-between;
+ padding: 200rpx 0;
+ box-sizing: border-box;
+}
diff --git a/代码/demo1/a2/pages/index/index.js b/代码/demo1/a2/pages/index/index.js
new file mode 100644
index 0000000..2c960dc
--- /dev/null
+++ b/代码/demo1/a2/pages/index/index.js
@@ -0,0 +1,48 @@
+// index.js
+// 获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ motto: 'Hello World',
+ userInfo: {},
+ hasUserInfo: false,
+ canIUse: wx.canIUse('button.open-type.getUserInfo'),
+ canIUseGetUserProfile: false,
+ canIUseOpenData: wx.canIUse('open-data.type.userAvatarUrl') && wx.canIUse('open-data.type.userNickName') // 如需尝试获取用户信息可改为false
+ },
+ // 事件处理函数
+ bindViewTap() {
+ wx.navigateTo({
+ url: '../list/list'
+ })
+ },
+ onLoad() {
+ if (wx.getUserProfile) {
+ this.setData({
+ canIUseGetUserProfile: true
+ })
+ }
+ },
+ getUserProfile(e) {
+ // 推荐使用wx.getUserProfile获取用户信息,开发者每次通过该接口获取用户个人信息均需用户确认,开发者妥善保管用户快速填写的头像昵称,避免重复弹窗
+ wx.getUserProfile({
+ desc: '展示用户信息', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
+ success: (res) => {
+ console.log(res)
+ this.setData({
+ userInfo: res.userInfo,
+ hasUserInfo: true
+ })
+ }
+ })
+ },
+ getUserInfo(e) {
+ // 不推荐使用getUserInfo获取用户信息,预计自2021年4月13日起,getUserInfo将不再弹出弹窗,并直接返回匿名的用户个人信息
+ console.log(e)
+ this.setData({
+ userInfo: e.detail.userInfo,
+ hasUserInfo: true
+ })
+ }
+})
diff --git a/代码/demo1/a2/pages/index/index.json b/代码/demo1/a2/pages/index/index.json
new file mode 100644
index 0000000..8835af0
--- /dev/null
+++ b/代码/demo1/a2/pages/index/index.json
@@ -0,0 +1,3 @@
+{
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/代码/demo1/a2/pages/index/index.wxml b/代码/demo1/a2/pages/index/index.wxml
new file mode 100644
index 0000000..f00d294
--- /dev/null
+++ b/代码/demo1/a2/pages/index/index.wxml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ 请使用1.4.4及以上版本基础库
+
+
+
+ {{userInfo.nickName}}
+
+
+
+ {{motto}}
+
+
diff --git a/代码/demo1/a2/pages/index/index.wxss b/代码/demo1/a2/pages/index/index.wxss
new file mode 100644
index 0000000..eb64203
--- /dev/null
+++ b/代码/demo1/a2/pages/index/index.wxss
@@ -0,0 +1,19 @@
+/**index.wxss**/
+.userinfo {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ color: #aaa;
+}
+
+.userinfo-avatar {
+ overflow: hidden;
+ width: 128rpx;
+ height: 128rpx;
+ margin: 20rpx;
+ border-radius: 50%;
+}
+
+.usermotto {
+ margin-top: 200px;
+}
\ No newline at end of file
diff --git a/代码/demo1/a2/pages/list/list.js b/代码/demo1/a2/pages/list/list.js
new file mode 100644
index 0000000..c349e54
--- /dev/null
+++ b/代码/demo1/a2/pages/list/list.js
@@ -0,0 +1,139 @@
+// pages/list/list.js
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+ list:[]
+ },
+
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad: function (options) {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面显示
+ * 与加载的区别,若是返回页面,则不需要加载,而是调用Show方法
+ */
+ onShow: function () {
+ //这里的this是指窗口而在request中this是指onShow方法(因为是页面调用onShow,onShow调用request),所以要先定义
+ var that = this;
+ wx.request({
+ //后端接口提供的url
+ url: 'http://localhost:8080/area/areaList',
+ method:'GET',
+ //需要传入的参数
+ data:{},
+ //如果访问成功
+ success:function(res){
+ var list = res.data.data;
+ if(list == null){
+ //如果获取数据失败,提示使用者
+ var toastText = '获取数据失败' + res.data.msg;
+ wx.showToast({
+ title: toastText,
+ icon:'',
+ //显示时长为2s
+ duration:2000
+ })
+ }else{
+ that.setData({
+ list:list
+ })
+ }
+ }
+ })
+ },
+
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload: function () {
+
+ },
+
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh: function () {
+
+ },
+
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom: function () {
+
+ },
+
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage: function () {
+
+ },
+
+ addArea: function(){
+ wx.navigateTo({
+ url: '../operation/operation',
+ })
+ },
+
+ //e表示响应的控件
+ delArea: function(e){
+ var that = this;
+ //相当于confirm窗口
+ wx.showModal({
+ title: '提示',
+ //这里的变量名需要与响应控件的data-后面的变量名相同
+ content: '确认要删除['+e.target.dataset.name+']吗?',
+ success:function(sm){
+ if(sm.confirm){
+ wx.request({
+ url: 'http://localhost:8080/area/delete',
+ data: {'id':e.target.dataset.id},
+ header: {
+ //默认是 'content-type': 'application/json',要传post的参数必须写成这样,要传delete参数则为null
+ "content-type": "application/x-www-form-urlencoded"
+ },
+ method: 'Delete',
+ success: function(res) {
+ var result = res.data.success;
+ var toastText='删除成功';
+ if(result == true){
+ that.data.list.splice(e.target.dataset.index,1);
+ that.setData({
+ list:that.data.list
+ });
+ }else{
+ toastText = '删除失败';
+ }
+ wx.showToast({
+ title: toastText,
+ duration:2000
+ })
+ },
+ })
+ }
+ }
+ })
+ }
+ })
\ No newline at end of file
diff --git a/代码/demo1/a2/pages/list/list.json b/代码/demo1/a2/pages/list/list.json
new file mode 100644
index 0000000..318f00f
--- /dev/null
+++ b/代码/demo1/a2/pages/list/list.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "任务信息列表"
+}
\ No newline at end of file
diff --git a/代码/demo1/a2/pages/list/list.wxml b/代码/demo1/a2/pages/list/list.wxml
new file mode 100644
index 0000000..e7df70d
--- /dev/null
+++ b/代码/demo1/a2/pages/list/list.wxml
@@ -0,0 +1,25 @@
+
+
+
+ 任务ID
+ 任务名
+ 任务信息
+ 操作
+
+
+
+
+
+ {{item.id}}
+ {{item.name}}
+ {{item.priority}}
+
+ 编辑|
+ 删除
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/代码/demo1/a2/pages/list/list.wxss b/代码/demo1/a2/pages/list/list.wxss
new file mode 100644
index 0000000..0801b8b
--- /dev/null
+++ b/代码/demo1/a2/pages/list/list.wxss
@@ -0,0 +1,37 @@
+/* pages/list/list.wxss */
+.container{
+ height: 100%;
+ display: table;
+ align-items: center;
+ justify-content: space-between;
+ box-sizing: border-box;
+ padding-top: 10rpx;
+ padding-bottom: 10rpx;
+ text-align: center;
+ }
+
+ .widget{
+ position: relative;
+ margin-top: 5rpx;
+ margin-bottom: 5rpx;
+ padding-top: 10rpx;
+ padding-bottom: 10rpx;
+ padding-left: 40rpx;
+ padding-right: 40rpx;
+ border: #ddd 1px solid;
+ }
+
+ .column{
+ width: 4rem;
+ display: table-cell;
+ }
+
+ .link-column{
+ width: 6rem;
+ display: table-cell;
+ }
+
+ .link{
+ color: blue;
+ display: inline-table;
+ }
\ No newline at end of file
diff --git a/代码/demo1/a2/pages/logs/logs.js b/代码/demo1/a2/pages/logs/logs.js
new file mode 100644
index 0000000..889f234
--- /dev/null
+++ b/代码/demo1/a2/pages/logs/logs.js
@@ -0,0 +1,66 @@
+// pages/logs/logs.js
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad: function (options) {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload: function () {
+
+ },
+
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh: function () {
+
+ },
+
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom: function () {
+
+ },
+
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage: function () {
+
+ }
+})
\ No newline at end of file
diff --git a/代码/demo1/a2/pages/logs/logs.wxml b/代码/demo1/a2/pages/logs/logs.wxml
new file mode 100644
index 0000000..c49f50c
--- /dev/null
+++ b/代码/demo1/a2/pages/logs/logs.wxml
@@ -0,0 +1,2 @@
+
+pages/logs/logs.wxml
diff --git a/代码/demo1/a2/pages/operation/operation.js b/代码/demo1/a2/pages/operation/operation.js
new file mode 100644
index 0000000..8d9f672
--- /dev/null
+++ b/代码/demo1/a2/pages/operation/operation.js
@@ -0,0 +1,132 @@
+// pages/opration/opration.js
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+ id:undefined,
+ areaName:'',
+ priority:'',
+ addUrl:'http://localhost:8080/area/addArea',
+ updateUrl:'http://localhost:8080/area/areaInfo'
+ },
+
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad: function (options) {
+ //options为页面跳转带来的参数
+ var that = this;
+ if(options.id != undefined){
+ //若是由编辑按钮跳转过来的
+ that.setData({
+ id:options.id
+ });
+ wx.request({
+ url: 'http://localhost:8080/area/one',
+ data: {'id':options.id},
+ method: 'GET',
+ success: function(res) {
+ var result = res.data.success;
+ if(result){
+ that.setData({
+ areaName:res.data.data.name,
+ priority: res.data.data.priority
+ });
+ }else{
+ wx.showToast({
+ title: '请求失败'+res.data.msg,
+ duration: 2000,
+ });
+ }
+ },
+ })
+ }
+ },
+
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide: function () {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload: function () {
+
+ },
+
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh: function () {
+
+ },
+
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom: function () {
+
+ },
+
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage: function () {
+
+ },
+
+ formSubmit:function(e){
+ var that = this;
+ //获取表单值
+ var formData = e.detail.value;
+ var url = this.data.addUrl;
+ if(this.data.id != undefined){
+ //如果是编辑按钮跳转
+ formData.id = this.data.id;
+ url = this.data.updateUrl;
+ }
+ console.log(JSON.stringify(formData));
+ wx.request({
+ url: url,
+ //将其转换成JSON
+ data: JSON.stringify(formData),
+ method: 'POST',
+ success: function(res) {
+ var result = res.data.success;
+ var toastText = '请求成功';
+ if(!result){
+ toastText = '请求失败'+res.data.msg;
+ }
+ wx.showToast({
+ title: toastText,
+ duration: 2000,
+ })
+ if(result){
+ wx.redirectTo({
+ //操作结束后跳转回列表页
+ url: '../list/list',
+ })
+ }
+ },
+ })
+ }
+ })
\ No newline at end of file
diff --git a/代码/demo1/a2/pages/operation/operation.json b/代码/demo1/a2/pages/operation/operation.json
new file mode 100644
index 0000000..cf3126e
--- /dev/null
+++ b/代码/demo1/a2/pages/operation/operation.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "任务信息表单"
+}
\ No newline at end of file
diff --git a/代码/demo1/a2/pages/operation/operation.wxml b/代码/demo1/a2/pages/operation/operation.wxml
new file mode 100644
index 0000000..c53e416
--- /dev/null
+++ b/代码/demo1/a2/pages/operation/operation.wxml
@@ -0,0 +1,18 @@
+
+
+
+
\ No newline at end of file
diff --git a/代码/demo1/a2/pages/operation/operation.wxss b/代码/demo1/a2/pages/operation/operation.wxss
new file mode 100644
index 0000000..9d56a76
--- /dev/null
+++ b/代码/demo1/a2/pages/operation/operation.wxss
@@ -0,0 +1,32 @@
+/* pages/opration/opration.wxss */
+.row input {
+ font-size: 0.7rem;
+ flex-grow: 3;
+ border: ipx solid #09c;
+ display: inline-block;
+ border-radius: 0.3rem;
+ box-shadow: 0 0 0.15rem #aaa;
+ padding: 0.3rem;
+ }
+
+ .row button {
+ padding: 0.2rem;
+ margin: 3rem 1rem;
+ }
+
+ .container {
+ padding: 1rem;
+ font-size: 0.9rem;
+ line-height: 1.5rem;
+ }
+
+ .row {
+ display: flex;
+ align-items: center;
+ margin-bottom: 0.8rem;
+ }
+
+ .row text {
+ flex-grow: 1;
+ text-align: right;
+ }
\ No newline at end of file
diff --git a/代码/demo1/a2/project.config.json b/代码/demo1/a2/project.config.json
new file mode 100644
index 0000000..f6dc37b
--- /dev/null
+++ b/代码/demo1/a2/project.config.json
@@ -0,0 +1,59 @@
+{
+ "description": "项目配置文件",
+ "packOptions": {
+ "ignore": [
+ {
+ "value": ".eslintrc.js",
+ "type": "file"
+ }
+ ],
+ "include": []
+ },
+ "setting": {
+ "urlCheck": false,
+ "es6": true,
+ "enhance": true,
+ "postcss": true,
+ "preloadBackgroundData": false,
+ "minified": true,
+ "newFeature": false,
+ "coverView": true,
+ "nodeModules": false,
+ "autoAudits": false,
+ "showShadowRootInWxmlPanel": true,
+ "scopeDataCheck": false,
+ "uglifyFileName": false,
+ "checkInvalidKey": true,
+ "checkSiteMap": true,
+ "uploadWithSourceMap": true,
+ "compileHotReLoad": true,
+ "lazyloadPlaceholderEnable": false,
+ "useMultiFrameRuntime": true,
+ "useApiHook": true,
+ "useApiHostProcess": true,
+ "babelSetting": {
+ "ignore": [],
+ "disablePlugins": [],
+ "outputPath": ""
+ },
+ "useIsolateContext": false,
+ "userConfirmedBundleSwitch": false,
+ "packNpmManually": false,
+ "packNpmRelationList": [],
+ "minifyWXSS": true,
+ "disableUseStrict": false,
+ "minifyWXML": true,
+ "showES6CompileOption": false,
+ "useCompilerPlugins": false,
+ "ignoreUploadUnusedFiles": true
+ },
+ "compileType": "miniprogram",
+ "libVersion": "2.19.4",
+ "appid": "wx690b76ba7281feb7",
+ "projectname": "a2",
+ "condition": {},
+ "editorSetting": {
+ "tabIndent": "insertSpaces",
+ "tabSize": 2
+ }
+}
\ No newline at end of file
diff --git a/代码/demo1/a2/project.private.config.json b/代码/demo1/a2/project.private.config.json
new file mode 100644
index 0000000..e93e606
--- /dev/null
+++ b/代码/demo1/a2/project.private.config.json
@@ -0,0 +1,7 @@
+{
+ "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
+ "projectname": "a2",
+ "setting": {
+ "compileHotReLoad": true
+ }
+}
\ No newline at end of file
diff --git a/代码/demo1/a2/sitemap.json b/代码/demo1/a2/sitemap.json
new file mode 100644
index 0000000..ca02add
--- /dev/null
+++ b/代码/demo1/a2/sitemap.json
@@ -0,0 +1,7 @@
+{
+ "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
+ "rules": [{
+ "action": "allow",
+ "page": "*"
+ }]
+}
\ No newline at end of file
diff --git a/代码/demo1/a2/utils/util.js b/代码/demo1/a2/utils/util.js
new file mode 100644
index 0000000..764bc2c
--- /dev/null
+++ b/代码/demo1/a2/utils/util.js
@@ -0,0 +1,19 @@
+const formatTime = date => {
+ const year = date.getFullYear()
+ const month = date.getMonth() + 1
+ const day = date.getDate()
+ const hour = date.getHours()
+ const minute = date.getMinutes()
+ const second = date.getSeconds()
+
+ return `${[year, month, day].map(formatNumber).join('/')} ${[hour, minute, second].map(formatNumber).join(':')}`
+}
+
+const formatNumber = n => {
+ n = n.toString()
+ return n[1] ? n : `0${n}`
+}
+
+module.exports = {
+ formatTime
+}
diff --git a/代码/demo1/area.sql b/代码/demo1/area.sql
new file mode 100644
index 0000000..42e837d
--- /dev/null
+++ b/代码/demo1/area.sql
@@ -0,0 +1,26 @@
+
+
+SET NAMES utf8mb4;
+SET FOREIGN_KEY_CHECKS = 0;
+
+-- ----------------------------
+-- Table structure for area
+-- ----------------------------
+DROP TABLE IF EXISTS `area`;
+CREATE TABLE `area` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
+ `priority` int NOT NULL DEFAULT 0 COMMENT '权值',
+ `create_time` datetime(0) NULL DEFAULT NULL COMMENT '创建时间戳',
+ `last_edit_time` datetime(0) NULL DEFAULT NULL COMMENT '最后修改时间戳',
+ PRIMARY KEY (`id`) USING BTREE,
+ UNIQUE INDEX `name`(`name`) USING BTREE
+) ENGINE = InnoDB AUTO_INCREMENT = 15 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
+
+-- ----------------------------
+-- Records of area
+-- ----------------------------
+INSERT INTO `area` VALUES (10, '南京', 5, '2022-03-11 12:53:53', '2022-03-11 12:53:53');
+INSERT INTO `area` VALUES (11, '北京', 9, '2022-03-11 12:59:38', '2022-03-11 12:59:38');
+
+SET FOREIGN_KEY_CHECKS = 1;