23 changed files with 374 additions and 9 deletions
@ -1,6 +1,6 @@
|
||||
# 局长信箱 |
||||
## 技术栈 |
||||
- SpringBoot 3 |
||||
- JDK17 |
||||
|
||||
[.gitignore](..%2Fmailbox-outer-h5%2F.gitignore) |
||||
- SpringBoot 3 |
||||
- TongWeb-3x |
||||
- 海量数据库 |
||||
@ -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 |
||||
@ -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} |
||||
@ -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 |
||||
@ -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 |
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -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> |
||||
@ -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> |
||||
@ -0,0 +1 @@
|
||||
uc3Y29XJfVtZtZTbmFsTP26/w7Lzq+nBy7WClY3b2pmFtRfb6/sZT2+7ETPzKxev8rGljQKbzZVZW5D039pZxMwNjYWNlpsalX3bnNGU9R5cpYWdHJ3JlwKYlX2YXRGU9RhdyMyMjAi0w0xMlbmNQpGF0RfZyMDZT0TAzI0L1ClLTA1ByRXX1Y3b2RmFtRfTUb2ZT12Vi5nVXX1ClRnNpZlcfTnb25mVyVtYuMCPTclRX5FCQVVX0N1VO9DTKYmVD0GlwluZUV1PQpXJk9IYyZVd2FD0K9JZfTWVFd051F4XlcjbWJQpU0tMMaWV19nNlNlblcnX1Nl9WZlczaWZXJTQu9uPwClMi419QRIUkdWcm905hN0X9VGbWU0h09uZTZXdHBXIKJ2ZTX1VEhnNpZlcfTnb25mVyVtYuMAPTY19FpUV0aWZGlUVt9uPkCkYmV19W5FVTSURVJ0xJ9OXOQ0Q0VFJGU9UYSkS1hzlWJUKLOHZ0pllDBHZ2aDdEdVllZTW0d2RlRXpxpTTkZTNzZ2ladVKjN0UmNjRKJvdJd0K0hDI2tzNBOEcG1EtFVFZvQ3NWkDlrhWW0OXVnkS9BVYTIT2VmdmROxJRjemeC9UZZ9FcXeFV0h0YzdXYKOXL2xVAKowWXX1TkVlNJZFUfTET05U5DlDRIQ0RT10d3tRKGY2OGVHVRdkb3VXSUIXp1NTTyc0WVk3BxpMNhZkOXhGNSE2VDMEUnBjNk1EWiaEUDN1dYplLLYVdm51VtpkVsMmZi9GE5E3cyZEZjkWlQ9McCRlbENTFDhydwdEdGM2hGNqdzOWWncEFqg5MGUHbDRVowNxapbAY3ZVdfpORSU0VkVl9MlPTFTkSUNWNyNFPaM1T0llQ1BjTaM2OW5jJUw4W4ZGYk5Xd392bsMHV3NGVRNGWwTDeTlEsyJYVyVkUUx21j5Dd2QlWFcjdDNOepb3SUlTArhpeLTVMFFVlMNLNpS3ek9Uhah1VEOUb2lmx242VRcVWW92dUl6cTZUMlFmVp5XTMb0MlRmpmtOVFV1Ck5VJT9WROX0SU90VOxJQ9aiQ0UFlltjdPSDSUtGpKR1SiZlVWVEpGpIdiQ0WCtzlU5LVyakdjFE9TJuRwcFK0EUpQQ4YwRTUEpjMrFITIejQm11VxVoZ1NEcS9DZ5xQMzTlUFInZ1l3dIeXdjd2ZwI5QDSGbzl1dKZDL0aTQ1M2MylyZtWlZnlEl0JpSnZkQjJkVXsKTFUlX1Z05fNJTDRUTElV9T5DR9V2VU40o4txMjWkL1l3ZZVvVvMjUmQWhidjQ2bDOTdkNucvamNkS0xTZEYwVaVkTEFnIztPMxdkK2lHZM9jM2RTeUoXlzZma0NEMjU3VNJqazMFQXAys4B5ZNV3WGtDh4dxR6TEcHdlFUplduaET2hXVphTemZGWnlHdPR1O0c2ckZkVX8KTFUlX1Z05fNJTDRUTElV9T5DR9MjVU4m1jl5Q6RSTnd0lv94dYNkaEFm1hxuThR0T1BGNFtzaYc3cGlFVBh1dCWlZkJmhFBHeFdDemtjh6dCd0RmQ24jdjFyZwVHU0Z3NQVKb3U3RFFUhaFuTxYWRnZlRuVlWkMGZVVUxY5hYRSGcEhlF2MrWwUTZGxW5tczdONHdmNkVXAKTFUlX1Z05fNJTDRUTElV9T5DR9TkVU4zJOZYZMK1cUNldSc1dNQ3M29GNQdFZvUHemY1MxJFY3dFZ2UjZDlEQzeCM2QXZ2t6YWbkNjNkdEZUd3ajVkRzBhJ5QGeUOC9GFok1TsT2TWFVIvV1ZLMVUHJXZpBCM4b3MnN0MwJEY2akaFIVYyVLWyNzRGIVVYhoZhUiZTBkVX8KTFUlX1Z05fNJTDRUTElV9T5DR9aTVU4zNUlNUVSUajdG5SZVOOMGcmVCt6lWeLS1d1lnk4VTbFOWWmlWQ0E4UIOUME9EdHdWOScTYlJ1MvUyR0NmZW8kFvZ3S0ZmMDQ2xH1UT6V1VlFHk3Qwd1UDTlgkppB3WwVULzBVZrowOtWFaUVFJ0dDaTZWS3p1RXVVQOdTSld YK |
||||
@ -1,2 +1,5 @@
|
||||
server: |
||||
port: 8081 |
||||
tongweb: |
||||
license: |
||||
path: license/license.dat |
||||
@ -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 |
||||
Loading…
Reference in new issue