Browse Source

init

dev-jl
wxc 2 years ago
parent
commit
6cfa38d654
  1. 2
      .gitignore
  2. 6
      README.md
  3. 60
      libs/tongweb-embed-3x-7.0.E.6_P6/deployMavenJar.bat
  4. 65
      libs/tongweb-embed-3x-7.0.E.6_P6/deployMavenJar.sh
  5. 33
      libs/tongweb-embed-3x-7.0.E.6_P6/installMavenJar.bat
  6. 40
      libs/tongweb-embed-3x-7.0.E.6_P6/installMavenJar.sh
  7. BIN
      libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-core-3.x-7.0.E.6_P6.jar
  8. BIN
      libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-el-3.x-7.0.E.6_P6.jar
  9. BIN
      libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-jsp-3.x-7.0.E.6_P6.jar
  10. BIN
      libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-websocket-3.x-7.0.E.6_P6.jar
  11. BIN
      libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-lic-sdk-4.5.0.0.jar
  12. BIN
      libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-spring-boot-starter-3.x-7.0.E.6_P6.jar
  13. BIN
      libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-spring-boot-websocket-3.x-7.0.E.6_P6.jar
  14. 45
      libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-starter3.x.pom
  15. 63
      libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-websocket-starter3.x.pom
  16. 1
      license/license.dat
  17. 12
      mailbox-lan/pom.xml
  18. 2
      mailbox-lan/src/main/java/com/biutag/lan/LanApplication.java
  19. 3
      mailbox-lan/src/main/resources/application.yml
  20. 5
      mailbox-outer-admin/pom.xml
  21. 24
      mailbox-outer/pom.xml
  22. 10
      mailbox-outer/src/main/resources/application.yml
  23. 12
      pom.xml

2
.gitignore vendored

@ -8,3 +8,5 @@ target/
### VS Code ### ### VS Code ###
.vscode/ .vscode/
*.log

6
README.md

@ -1,6 +1,6 @@
# 局长信箱 # 局长信箱
## 技术栈 ## 技术栈
- SpringBoot 3
- JDK17 - JDK17
- SpringBoot 3
[.gitignore](..%2Fmailbox-outer-h5%2F.gitignore) - TongWeb-3x
- 海量数据库

60
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

65
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}

33
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

40
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

BIN
libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-core-3.x-7.0.E.6_P6.jar

Binary file not shown.

BIN
libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-el-3.x-7.0.E.6_P6.jar

Binary file not shown.

BIN
libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-jsp-3.x-7.0.E.6_P6.jar

Binary file not shown.

BIN
libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-embed-websocket-3.x-7.0.E.6_P6.jar

Binary file not shown.

BIN
libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-lic-sdk-4.5.0.0.jar

Binary file not shown.

BIN
libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-spring-boot-starter-3.x-7.0.E.6_P6.jar

Binary file not shown.

BIN
libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-spring-boot-websocket-3.x-7.0.E.6_P6.jar

Binary file not shown.

45
libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-starter3.x.pom

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.tongweb.springboot</groupId>
<version>7.0.E.6_P6</version>
<artifactId>tongweb-spring-boot-starter-3.x</artifactId>
<dependencies>
<dependency>
<groupId>com.tongweb</groupId>
<artifactId>tongweb-embed-core-3.x</artifactId>
<version>7.0.E.6_P6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.tongweb</groupId>
<artifactId>tongweb-embed-el-3.x</artifactId>
<version>7.0.E.6_P6</version>
<scope>compile</scope>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.tongweb</groupId>-->
<!-- <artifactId>tongweb-javax-annotation</artifactId>-->
<!-- <version>1.2.1</version>-->
<!-- </dependency>-->
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>2.1.1</version>
<scope>compile</scope>
</dependency>
<!-- -->
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>ecj</artifactId>
<version>3.33.0</version>
</dependency>
<dependency>
<groupId>com.tongweb</groupId>
<artifactId>tongweb-lic-sdk</artifactId>
<version>4.5.0.0</version>
</dependency>
</dependencies>
</project>

63
libs/tongweb-embed-3x-7.0.E.6_P6/lib/tongweb-websocket-starter3.x.pom

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.tongweb.springboot</groupId>
<artifactId>tongweb-spring-boot-websocket-3.x</artifactId>
<version>7.0.E.6_P6</version>
<name>tongweb-spring-boot-websocket-3.x</name>
<dependencies>
<dependency>
<groupId>com.tongweb</groupId>
<artifactId>tongweb-embed-el-3.x</artifactId>
<version>7.0.E.6_P6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.tongweb</groupId>
<artifactId>tongweb-embed-core-3.x</artifactId>
<version>7.0.E.6_P6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.tongweb</groupId>
<artifactId>tongweb-embed-websocket-3.x</artifactId>
<version>7.0.E.6_P6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.tongweb.springboot</groupId>
<artifactId>tongweb-spring-boot-starter-3.x</artifactId>
<version>7.0.E.6_P6</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
<version>3.0.1</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

1
license/license.dat

@ -0,0 +1 @@
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 YK

12
mailbox-lan/pom.xml

@ -10,7 +10,6 @@
</parent> </parent>
<artifactId>mailbox-lan</artifactId> <artifactId>mailbox-lan</artifactId>
<description>局长信箱-内网端</description> <description>局长信箱-内网端</description>
<dependencies> <dependencies>
@ -21,6 +20,12 @@
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
@ -33,6 +38,11 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>com.tongweb.springboot</groupId>
<artifactId>tongweb-spring-boot-starter-3.x</artifactId>
</dependency>
<!-- <dependency>--> <!-- <dependency>-->
<!-- <groupId>com.baomidou</groupId>--> <!-- <groupId>com.baomidou</groupId>-->
<!-- <artifactId>mybatis-plus-boot-starter</artifactId>--> <!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->

2
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.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;

3
mailbox-lan/src/main/resources/application.yml

@ -1,2 +1,5 @@
server: server:
port: 8081 port: 8081
tongweb:
license:
path: license/license.dat

5
mailbox-outer-admin/pom.xml

@ -33,6 +33,11 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>com.tongweb.springboot</groupId>
<artifactId>tongweb-spring-boot-starter-3.x</artifactId>
</dependency>
<!-- <dependency>--> <!-- <dependency>-->
<!-- <groupId>com.baomidou</groupId>--> <!-- <groupId>com.baomidou</groupId>-->
<!-- <artifactId>mybatis-plus-boot-starter</artifactId>--> <!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->

24
mailbox-outer/pom.xml

@ -21,6 +21,12 @@
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
@ -33,10 +39,20 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- <dependency>--> <dependency>
<!-- <groupId>com.baomidou</groupId>--> <groupId>com.tongweb.springboot</groupId>
<!-- <artifactId>mybatis-plus-boot-starter</artifactId>--> <artifactId>tongweb-spring-boot-starter-3.x</artifactId>
<!-- </dependency>--> </dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
</dependency>
</dependencies> </dependencies>

10
mailbox-outer/src/main/resources/application.yml

@ -1,2 +1,12 @@
server: server:
port: 8080 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

12
pom.xml

@ -13,6 +13,7 @@
<spring-boot.version>3.2.1</spring-boot.version> <spring-boot.version>3.2.1</spring-boot.version>
<mybatis-plus-boot-starter.version>3.5.5</mybatis-plus-boot-starter.version> <mybatis-plus-boot-starter.version>3.5.5</mybatis-plus-boot-starter.version>
<fastjson2.version>2.0.45</fastjson2.version> <fastjson2.version>2.0.45</fastjson2.version>
<tongweb-spring-boot-starter-3.x.version>7.0.E.6_P6</tongweb-spring-boot-starter-3.x.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
@ -38,6 +39,17 @@
<version>${mybatis-plus-boot-starter.version}</version> <version>${mybatis-plus-boot-starter.version}</version>
</dependency> </dependency>
<dependency>
<groupId>com.tongweb.springboot</groupId>
<artifactId>tongweb-spring-boot-starter-3.x</artifactId>
<version>${tongweb-spring-boot-starter-3.x.version}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.1</version>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>

Loading…
Cancel
Save