diff --git a/.gitignore b/.gitignore index e0975bb..b3fcf2c 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,5 @@ target/ ### VS Code ### .vscode/ + +*.log diff --git a/README.md b/README.md index 8aeca03..0cf59f3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 局长信箱 ## 技术栈 -- SpringBoot 3 - JDK17 - -[.gitignore](..%2Fmailbox-outer-h5%2F.gitignore) \ No newline at end of file +- SpringBoot 3 +- TongWeb-3x +- 海量数据库 \ No newline at end of file diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/deployMavenJar.bat b/libs/tongweb-embed-3x-7.0.E.6_P6/deployMavenJar.bat new file mode 100644 index 0000000..2e6c3c0 --- /dev/null +++ b/libs/tongweb-embed-3x-7.0.E.6_P6/deployMavenJar.bat @@ -0,0 +1,60 @@ +@echo off + +setlocal + +set "CURRENT_DIR=%cd%" +if not "%EMBED_HOME%" == "" goto gotHome +set "EMBED_HOME=%CURRENT_DIR%" + +:gotHome +if exist "%EMBED_HOME%\deployMavenJar.bat" goto CHECK_URL +echo current dir [%EMBED_HOME%] is not correct. +echo Please enter the directory containing the specified command [deployMavenJar.bat]. +goto end + +:CHECK_URL +set "URL=%1" +if not "%URL%" == "" goto CHECK_RID +echo Please enter the [url] of the repository to deploy. +echo Syntax: +echo deployMavenJar.bat [url] [sid] +echo url : the url of the repository to deploy +echo sid : id to map on server section of settings.xml, you can find it in settings.xml "setting->servers->server" +echo NOTE: You should either specify username/password OR privateKey/passphrase in settings.xml, since these pairings are used together. +echo Examples: +echo deployMavenJar.bat "http://127.0.0.1:8081/nexus/content/repositories/central/" "central" +pause +goto end + +:CHECK_RID +set "SID=%2" +if not "%SID%" == "" goto OK_HOME +echo Please enter [sid] to map on server section of settings.xml +echo Syntax: +echo deployMavenJar.bat [url] [sid] +echo url : the url of the repository to deploy +echo sid : id to map on server section of settings.xml, you can find it in settings.xml "setting->servers->server" +echo NOTE: You should either specify username/password OR privateKey/passphrase in settings.xml, since these pairings are used together. +echo Examples: +echo deployMavenJar.bat "http://127.0.0.1:8081/nexus/content/repositories/central/" "central" +pause +goto end + +:OK_HOME +call mvn deploy:deploy-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-core-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-embed-core-3.x-7.0.E.6_P6.jar" -Dpackaging=jar -DrepositoryId=%SID% -Durl=%URL% + +call mvn deploy:deploy-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-el-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-embed-el-3.x-7.0.E.6_P6.jar" -Dpackaging=jar -DrepositoryId=%SID% -Durl=%URL% + +call mvn deploy:deploy-file -DgroupId=com.tongweb -DartifactId=tongweb-jsp-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-embed-jsp-3.x-7.0.E.6_P6.jar" -Dpackaging=jar -DrepositoryId=%SID% -Durl=%URL% + +call mvn deploy:deploy-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-websocket-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-embed-websocket-3.x-7.0.E.6_P6.jar" -Dpackaging=jar -DrepositoryId=%SID% -Durl=%URL% + +call mvn deploy:deploy-file -DpomFile="%EMBED_HOME%/lib/tongweb-starter3.x.pom" -DgroupId=com.tongweb.springboot -DartifactId=tongweb-spring-boot-starter-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-spring-boot-starter-3.x-7.0.E.6_P6.jar" -Dpackaging=jar -DrepositoryId=%SID% -Durl=%URL% + +call mvn deploy:deploy-file -DpomFile="%EMBED_HOME%/lib/tongweb-websocket-starter3.x.pom" -DgroupId=com.tongweb.springboot -DartifactId=tongweb-spring-boot-websocket-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-spring-boot-websocket-3.x-7.0.E.6_P6.jar" -Dpackaging=jar -DrepositoryId=%SID% -Durl=%URL% + +call mvn deploy:deploy-file -DgroupId=com.tongweb -DartifactId=tongweb-lic-sdk -Dversion=4.5.0.0 -Dpackaging=jar -Dfile="%EMBED_HOME%/lib/tongweb-lic-sdk-4.5.0.0.jar" -DrepositoryId=%SID% -Durl=%URL% + + +pause +:end \ No newline at end of file diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/deployMavenJar.sh b/libs/tongweb-embed-3x-7.0.E.6_P6/deployMavenJar.sh new file mode 100644 index 0000000..2483d86 --- /dev/null +++ b/libs/tongweb-embed-3x-7.0.E.6_P6/deployMavenJar.sh @@ -0,0 +1,65 @@ +#!/bin/sh + +DIRNAME=`pwd` +ulimit -n 65536 >/dev/null 2>&1 +ulimit -c unlimited +# resolve links - $0 may be a softlink +PRG="$0" +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 + +# Get standard environment variables +PRGDIR=`dirname "$PRG"` + +EMBED_HOME=`cd ${PRGDIR}/ && pwd` + +URL="$1" +if [[ -z "$URL" ]]; +then + echo Please enter the [url] of the repository to deploy. + echo Syntax: + echo deployMavenJar.bat [url] [sid] + echo url : the url of the repository to deploy + echo sid : id to map on server section of settings.xml, you can find it in settings.xml "setting->servers->server" + echo NOTE: You should either specify username/password OR privateKey/passphrase in settings.xml, since these pairings are used together. + echo Examples: + echo deployMavenJar.bat "http://127.0.0.1:8081/nexus/content/repositories/central/" "central" + exit +fi + +SID="$2" +if [[ -z "$SID" ]]; +then + echo Please enter [sid] to map on server section of settings.xml + echo Syntax: + echo deployMavenJar.bat [url] [sid] + echo url : the url of the repository to deploy + echo sid : id to map on server section of settings.xml, you can find it in settings.xml "setting->servers->server" + echo NOTE: You should either specify username/password OR privateKey/passphrase in settings.xml, since these pairings are used together. + echo Examples: + echo deployMavenJar.bat "http://127.0.0.1:8081/nexus/content/repositories/central/" "central" +fi + +if [ -n "$3" ]; then + EMBED_HOME=$3 +fi +mvn deploy:deploy-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-core-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-core-3.x-7.0.E.6_P6.jar -Dpackaging=jar -DrepositoryId=${SID} -Durl=${URL} + +mvn deploy:deploy-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-el-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-el-3.x-7.0.E.6_P6.jar -Dpackaging=jar -DrepositoryId=${SID} -Durl=${URL} + +mvn deploy:deploy-file -DgroupId=com.tongweb -DartifactId=tongweb-jsp-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-jsp-3.x-7.0.E.6_P6.jar -Dpackaging=jar -DrepositoryId=${SID} -Durl=${URL} + +mvn deploy:deploy-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-websocket-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-websocket-3.x-7.0.E.6_P6.jar -Dpackaging=jar -DrepositoryId=${SID} -Durl=${URL} + +mvn deploy:deploy-file -DpomFile=${EMBED_HOME}/lib/tongweb-starter3.x.pom -DgroupId=com.tongweb.springboot -DartifactId=tongweb-spring-boot-starter-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-spring-boot-starter-3.x-7.0.E.6_P6.jar -Dpackaging=jar -DrepositoryId=${SID} -Durl=${URL} + +mvn deploy:deploy-file -DpomFile=${EMBED_HOME}/lib/tongweb-websocket-starter3.x.pom -DgroupId=com.tongweb.springboot -DartifactId=tongweb-spring-boot-websocket-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-spring-boot-websocket-3.x-7.0.E.6_P6.jar -Dpackaging=jar -DrepositoryId=${SID} -Durl=${URL} + +mvn deploy:deploy-file -DgroupId=com.tongweb -DartifactId=tongweb-lic-sdk -Dversion=4.5.0.0 -Dpackaging=jar -Dfile=${EMBED_HOME}/lib/tongweb-lic-sdk-4.5.0.0.jar -DrepositoryId=${SID} -Durl=${URL} diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/installMavenJar.bat b/libs/tongweb-embed-3x-7.0.E.6_P6/installMavenJar.bat new file mode 100644 index 0000000..763fcf2 --- /dev/null +++ b/libs/tongweb-embed-3x-7.0.E.6_P6/installMavenJar.bat @@ -0,0 +1,33 @@ +@echo off + +setlocal + +set "CURRENT_DIR=%cd%" +if not "%EMBED_HOME%" == "" goto gotHome +set "EMBED_HOME=%CURRENT_DIR%" + +:gotHome +if exist "%EMBED_HOME%\installMavenJar.bat" goto OK_HOME +echo current dir [%EMBED_HOME%] is not correct. +echo Please enter the directory containing the specified command [installMavenJar.bat]. +goto end + +:OK_HOME + +call mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-core-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-embed-core-3.x-7.0.E.6_P6.jar" -Dpackaging=jar + +call mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-el-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-embed-el-3.x-7.0.E.6_P6.jar" -Dpackaging=jar + +call mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-jsp-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-embed-jsp-3.x-7.0.E.6_P6.jar" -Dpackaging=jar + +call mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-websocket-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-embed-websocket-3.x-7.0.E.6_P6.jar" -Dpackaging=jar + +call mvn install:install-file -DpomFile="%EMBED_HOME%/lib/tongweb-starter3.x.pom" -DgroupId=com.tongweb.springboot -DartifactId=tongweb-spring-boot-starter-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-spring-boot-starter-3.x-7.0.E.6_P6.jar" -Dpackaging=jar + +call mvn install:install-file -DpomFile="%EMBED_HOME%/lib/tongweb-websocket-starter3.x.pom" -DgroupId=com.tongweb.springboot -DartifactId=tongweb-spring-boot-websocket-3.x -Dversion=7.0.E.6_P6 -Dfile="%EMBED_HOME%/lib/tongweb-spring-boot-websocket-3.x-7.0.E.6_P6.jar" -Dpackaging=jar + +call mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-lic-sdk -Dversion=4.5.0.0 -Dfile="%EMBED_HOME%/lib/tongweb-lic-sdk-4.5.0.0.jar" -Dpackaging=jar + + +pause +:end \ No newline at end of file diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/installMavenJar.sh b/libs/tongweb-embed-3x-7.0.E.6_P6/installMavenJar.sh new file mode 100644 index 0000000..5e0247b --- /dev/null +++ b/libs/tongweb-embed-3x-7.0.E.6_P6/installMavenJar.sh @@ -0,0 +1,40 @@ +#!/bin/sh + +DIRNAME=`pwd` +ulimit -n 65536 >/dev/null 2>&1 +ulimit -c unlimited +# resolve links - $0 may be a softlink +PRG="$0" +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 + +# Get standard environment variables +PRGDIR=`dirname "$PRG"` + +EMBED_HOME=`cd ${PRGDIR}/ && pwd` + +if [ -n "$1" ]; then + EMBED_HOME=$1 +fi + +mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-core-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-core-3.x-7.0.E.6_P6.jar -Dpackaging=jar + +mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-el-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-el-3.x-7.0.E.6_P6.jar -Dpackaging=jar + +mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-jsp-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-jsp-3.x-7.0.E.6_P6.jar -Dpackaging=jar + +mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed-websocket-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-embed-websocket-3.x-7.0.E.6_P6.jar -Dpackaging=jar + +mvn install:install-file -DpomFile=${EMBED_HOME}/lib/tongweb-starter3.x.pom -DgroupId=com.tongweb.springboot -DartifactId=tongweb-spring-boot-starter-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-spring-boot-starter-3.x-7.0.E.6_P6.jar -Dpackaging=jar + +mvn install:install-file -DpomFile=${EMBED_HOME}/lib/tongweb-websocket-starter3.x.pom -DgroupId=com.tongweb.springboot -DartifactId=tongweb-spring-boot-websocket-3.x -Dversion=7.0.E.6_P6 -Dfile=${EMBED_HOME}/lib/tongweb-spring-boot-websocket-3.x-7.0.E.6_P6.jar -Dpackaging=jar + +mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-lic-sdk -Dversion=4.5.0.0 -Dfile=${EMBED_HOME}/lib/tongweb-lic-sdk-4.5.0.0.jar -Dpackaging=jar + diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-core-3.x-7.0.E.6_P6.jar b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-core-3.x-7.0.E.6_P6.jar new file mode 100644 index 0000000..52fb8bd Binary files /dev/null and b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-core-3.x-7.0.E.6_P6.jar differ diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-el-3.x-7.0.E.6_P6.jar b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-el-3.x-7.0.E.6_P6.jar new file mode 100644 index 0000000..513bee8 Binary files /dev/null and b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-el-3.x-7.0.E.6_P6.jar differ diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-jsp-3.x-7.0.E.6_P6.jar b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-jsp-3.x-7.0.E.6_P6.jar new file mode 100644 index 0000000..7f575b9 Binary files /dev/null and b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-jsp-3.x-7.0.E.6_P6.jar differ diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-websocket-3.x-7.0.E.6_P6.jar b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-websocket-3.x-7.0.E.6_P6.jar new file mode 100644 index 0000000..b9de7a4 Binary files /dev/null and b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-websocket-3.x-7.0.E.6_P6.jar differ diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-lic-sdk-4.5.0.0.jar b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-lic-sdk-4.5.0.0.jar new file mode 100644 index 0000000..93cf584 Binary files /dev/null and b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-lic-sdk-4.5.0.0.jar differ diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-spring-boot-starter-3.x-7.0.E.6_P6.jar b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-spring-boot-starter-3.x-7.0.E.6_P6.jar new file mode 100644 index 0000000..78e6cd5 Binary files /dev/null and b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-spring-boot-starter-3.x-7.0.E.6_P6.jar differ diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-spring-boot-websocket-3.x-7.0.E.6_P6.jar b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-spring-boot-websocket-3.x-7.0.E.6_P6.jar new file mode 100644 index 0000000..448223d Binary files /dev/null and b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-spring-boot-websocket-3.x-7.0.E.6_P6.jar differ diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-starter3.x.pom b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-starter3.x.pom new file mode 100644 index 0000000..134d311 --- /dev/null +++ b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-starter3.x.pom @@ -0,0 +1,45 @@ + + + 4.0.0 + com.tongweb.springboot + 7.0.E.6_P6 + tongweb-spring-boot-starter-3.x + + + com.tongweb + tongweb-embed-core-3.x + 7.0.E.6_P6 + compile + + + com.tongweb + tongweb-embed-el-3.x + 7.0.E.6_P6 + compile + + + + + + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + compile + + + + org.eclipse.jdt + ecj + 3.33.0 + + + com.tongweb + tongweb-lic-sdk + 4.5.0.0 + + + \ No newline at end of file diff --git a/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-websocket-starter3.x.pom b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-websocket-starter3.x.pom new file mode 100644 index 0000000..97d0b64 --- /dev/null +++ b/libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-websocket-starter3.x.pom @@ -0,0 +1,63 @@ + + + + 4.0.0 + com.tongweb.springboot + tongweb-spring-boot-websocket-3.x + 7.0.E.6_P6 + tongweb-spring-boot-websocket-3.x + + + + com.tongweb + tongweb-embed-el-3.x + 7.0.E.6_P6 + provided + + + com.tongweb + tongweb-embed-core-3.x + 7.0.E.6_P6 + provided + + + com.tongweb + tongweb-embed-websocket-3.x + 7.0.E.6_P6 + compile + + + com.tongweb.springboot + tongweb-spring-boot-starter-3.x + 7.0.E.6_P6 + + + org.springframework.boot + spring-boot + + + provided + + + org.springframework.boot + spring-boot-autoconfigure + 3.0.1 + provided + + + + org.springframework.boot + spring-boot-starter-websocket + 3.0.1 + + + org.springframework.boot + spring-boot-starter-tomcat + + + provided + + + \ No newline at end of file diff --git a/license/license.dat b/license/license.dat new file mode 100644 index 0000000..d9d844d --- /dev/null +++ b/license/license.dat @@ -0,0 +1 @@ +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 YK \ No newline at end of file diff --git a/mailbox-lan/pom.xml b/mailbox-lan/pom.xml index ff6f416..f75f9e4 100644 --- a/mailbox-lan/pom.xml +++ b/mailbox-lan/pom.xml @@ -10,7 +10,6 @@ mailbox-lan - 局长信箱-内网端 @@ -21,6 +20,12 @@ org.springframework.boot spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + org.projectlombok @@ -33,6 +38,11 @@ test + + com.tongweb.springboot + tongweb-spring-boot-starter-3.x + + diff --git a/mailbox-lan/src/main/java/com/biutag/lan/LanApplication.java b/mailbox-lan/src/main/java/com/biutag/lan/LanApplication.java index 5ce010c..20c1ccf 100644 --- a/mailbox-lan/src/main/java/com/biutag/lan/LanApplication.java +++ b/mailbox-lan/src/main/java/com/biutag/lan/LanApplication.java @@ -1,4 +1,4 @@ -package com.biutag.outer; +package com.biutag.lan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; diff --git a/mailbox-lan/src/main/resources/application.yml b/mailbox-lan/src/main/resources/application.yml index 11e54c5..9dbe4e6 100644 --- a/mailbox-lan/src/main/resources/application.yml +++ b/mailbox-lan/src/main/resources/application.yml @@ -1,2 +1,5 @@ server: port: 8081 + tongweb: + license: + path: license/license.dat \ No newline at end of file diff --git a/mailbox-outer-admin/pom.xml b/mailbox-outer-admin/pom.xml index 33ea61c..b72291d 100644 --- a/mailbox-outer-admin/pom.xml +++ b/mailbox-outer-admin/pom.xml @@ -33,6 +33,11 @@ test + + com.tongweb.springboot + tongweb-spring-boot-starter-3.x + + diff --git a/mailbox-outer/pom.xml b/mailbox-outer/pom.xml index cc7a85d..2ad9af3 100644 --- a/mailbox-outer/pom.xml +++ b/mailbox-outer/pom.xml @@ -21,6 +21,12 @@ org.springframework.boot spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + org.projectlombok @@ -33,10 +39,20 @@ test - - - - + + com.tongweb.springboot + tongweb-spring-boot-starter-3.x + + + + org.postgresql + postgresql + + + + com.baomidou + mybatis-plus-boot-starter + diff --git a/mailbox-outer/src/main/resources/application.yml b/mailbox-outer/src/main/resources/application.yml index a7afc92..d6e383e 100644 --- a/mailbox-outer/src/main/resources/application.yml +++ b/mailbox-outer/src/main/resources/application.yml @@ -1,2 +1,12 @@ server: port: 8080 + tongweb: + license: + path: license/license.dat + +spring: + datasource: + driver-class-name: org.postgresql.Driver + url: jdbc:postgresql://172.31.217.20:32378/mailbox?currentSchema=mailbox-outer + username: mailbox + password: Ip12341234 \ No newline at end of file diff --git a/pom.xml b/pom.xml index c403e40..161a3e9 100644 --- a/pom.xml +++ b/pom.xml @@ -13,6 +13,7 @@ 3.2.1 3.5.5 2.0.45 + 7.0.E.6_P6 @@ -38,6 +39,17 @@ ${mybatis-plus-boot-starter.version} + + com.tongweb.springboot + tongweb-spring-boot-starter-3.x + ${tongweb-spring-boot-starter-3.x.version} + + + + org.postgresql + postgresql + 42.7.1 +