Compare commits

..

No commits in common. "main" and "master" have entirely different histories.
main ... master

20 changed files with 3065 additions and 40 deletions

37
.gitignore vendored
View File

@ -1,37 +0,0 @@
# ---> Java
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
# ---> Vue
# gitignore template for Vue.js projects
#
# Recommended template: Node.gitignore
# TODO: where does this rule come from?
docs/_book
# TODO: where does this rule come from?
test/

19
.mvn/wrapper/maven-wrapper.properties vendored Normal file
View File

@ -0,0 +1,19 @@
# 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
#
# http://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.
wrapperVersion=3.3.2
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip

View File

@ -1,3 +0,0 @@
# start-bot
微信机器人

1865
application.log Normal file

File diff suppressed because it is too large Load Diff

259
mvnw vendored Normal file
View File

@ -0,0 +1,259 @@
#!/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
#
# http://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.
# ----------------------------------------------------------------------------
# ----------------------------------------------------------------------------
# Apache Maven Wrapper startup batch script, version 3.3.2
#
# Optional ENV vars
# -----------------
# JAVA_HOME - location of a JDK home dir, required when download maven via java source
# MVNW_REPOURL - repo url base for downloading maven distribution
# MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
# MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output
# ----------------------------------------------------------------------------
set -euf
[ "${MVNW_VERBOSE-}" != debug ] || set -x
# OS specific support.
native_path() { printf %s\\n "$1"; }
case "$(uname)" in
CYGWIN* | MINGW*)
[ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")"
native_path() { cygpath --path --windows "$1"; }
;;
esac
# set JAVACMD and JAVACCMD
set_java_home() {
# For Cygwin and MinGW, ensure paths are in Unix format before anything is touched
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"
JAVACCMD="$JAVA_HOME/jre/sh/javac"
else
JAVACMD="$JAVA_HOME/bin/java"
JAVACCMD="$JAVA_HOME/bin/javac"
if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then
echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2
echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2
return 1
fi
fi
else
JAVACMD="$(
'set' +e
'unset' -f command 2>/dev/null
'command' -v java
)" || :
JAVACCMD="$(
'set' +e
'unset' -f command 2>/dev/null
'command' -v javac
)" || :
if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then
echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2
return 1
fi
fi
}
# hash string like Java String::hashCode
hash_string() {
str="${1:-}" h=0
while [ -n "$str" ]; do
char="${str%"${str#?}"}"
h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296))
str="${str#?}"
done
printf %x\\n $h
}
verbose() { :; }
[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; }
die() {
printf %s\\n "$1" >&2
exit 1
}
trim() {
# MWRAPPER-139:
# Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds.
# Needed for removing poorly interpreted newline sequences when running in more
# exotic environments such as mingw bash on Windows.
printf "%s" "${1}" | tr -d '[:space:]'
}
# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties
while IFS="=" read -r key value; do
case "${key-}" in
distributionUrl) distributionUrl=$(trim "${value-}") ;;
distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;;
esac
done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties"
[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties"
case "${distributionUrl##*/}" in
maven-mvnd-*bin.*)
MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/
case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in
*AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;;
:Darwin*x86_64) distributionPlatform=darwin-amd64 ;;
:Darwin*arm64) distributionPlatform=darwin-aarch64 ;;
:Linux*x86_64*) distributionPlatform=linux-amd64 ;;
*)
echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2
distributionPlatform=linux-amd64
;;
esac
distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip"
;;
maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;;
*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;;
esac
# apply MVNW_REPOURL and calculate MAVEN_HOME
# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash>
[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}"
distributionUrlName="${distributionUrl##*/}"
distributionUrlNameMain="${distributionUrlName%.*}"
distributionUrlNameMain="${distributionUrlNameMain%-bin}"
MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}"
MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")"
exec_maven() {
unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || :
exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD"
}
if [ -d "$MAVEN_HOME" ]; then
verbose "found existing MAVEN_HOME at $MAVEN_HOME"
exec_maven "$@"
fi
case "${distributionUrl-}" in
*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;;
*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;;
esac
# prepare tmp dir
if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then
clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; }
trap clean HUP INT TERM EXIT
else
die "cannot create temp dir"
fi
mkdir -p -- "${MAVEN_HOME%/*}"
# Download and Install Apache Maven
verbose "Couldn't find MAVEN_HOME, downloading and installing it ..."
verbose "Downloading from: $distributionUrl"
verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName"
# select .zip or .tar.gz
if ! command -v unzip >/dev/null; then
distributionUrl="${distributionUrl%.zip}.tar.gz"
distributionUrlName="${distributionUrl##*/}"
fi
# verbose opt
__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR=''
[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v
# normalize http auth
case "${MVNW_PASSWORD:+has-password}" in
'') MVNW_USERNAME='' MVNW_PASSWORD='' ;;
has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;;
esac
if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then
verbose "Found wget ... using wget"
wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl"
elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then
verbose "Found curl ... using curl"
curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl"
elif set_java_home; then
verbose "Falling back to use Java to download"
javaSource="$TMP_DOWNLOAD_DIR/Downloader.java"
targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName"
cat >"$javaSource" <<-END
public class Downloader extends java.net.Authenticator
{
protected java.net.PasswordAuthentication getPasswordAuthentication()
{
return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() );
}
public static void main( String[] args ) throws Exception
{
setDefault( new Downloader() );
java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() );
}
}
END
# For Cygwin/MinGW, switch paths to Windows format before running javac and java
verbose " - Compiling Downloader.java ..."
"$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java"
verbose " - Running Downloader.java ..."
"$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")"
fi
# If specified, validate the SHA-256 sum of the Maven distribution zip file
if [ -n "${distributionSha256Sum-}" ]; then
distributionSha256Result=false
if [ "$MVN_CMD" = mvnd.sh ]; then
echo "Checksum validation is not supported for maven-mvnd." >&2
echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2
exit 1
elif command -v sha256sum >/dev/null; then
if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then
distributionSha256Result=true
fi
elif command -v shasum >/dev/null; then
if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then
distributionSha256Result=true
fi
else
echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2
echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2
exit 1
fi
if [ $distributionSha256Result = false ]; then
echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2
echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2
exit 1
fi
fi
# unzip and move
if command -v unzip >/dev/null; then
unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip"
else
tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar"
fi
printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url"
mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME"
clean || :
exec_maven "$@"

149
mvnw.cmd vendored Normal file
View File

@ -0,0 +1,149 @@
<# : batch portion
@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 http://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 Apache Maven Wrapper startup batch script, version 3.3.2
@REM
@REM Optional ENV vars
@REM MVNW_REPOURL - repo url base for downloading maven distribution
@REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
@REM MVNW_VERBOSE - true: enable verbose log; others: silence the output
@REM ----------------------------------------------------------------------------
@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0)
@SET __MVNW_CMD__=
@SET __MVNW_ERROR__=
@SET __MVNW_PSMODULEP_SAVE=%PSModulePath%
@SET PSModulePath=
@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @(
IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B)
)
@SET PSModulePath=%__MVNW_PSMODULEP_SAVE%
@SET __MVNW_PSMODULEP_SAVE=
@SET __MVNW_ARG0_NAME__=
@SET MVNW_USERNAME=
@SET MVNW_PASSWORD=
@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*)
@echo Cannot start maven from wrapper >&2 && exit /b 1
@GOTO :EOF
: end batch / begin powershell #>
$ErrorActionPreference = "Stop"
if ($env:MVNW_VERBOSE -eq "true") {
$VerbosePreference = "Continue"
}
# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties
$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl
if (!$distributionUrl) {
Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties"
}
switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) {
"maven-mvnd-*" {
$USE_MVND = $true
$distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip"
$MVN_CMD = "mvnd.cmd"
break
}
default {
$USE_MVND = $false
$MVN_CMD = $script -replace '^mvnw','mvn'
break
}
}
# apply MVNW_REPOURL and calculate MAVEN_HOME
# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash>
if ($env:MVNW_REPOURL) {
$MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" }
$distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')"
}
$distributionUrlName = $distributionUrl -replace '^.*/',''
$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$',''
$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain"
if ($env:MAVEN_USER_HOME) {
$MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain"
}
$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join ''
$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME"
if (Test-Path -Path "$MAVEN_HOME" -PathType Container) {
Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME"
Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD"
exit $?
}
if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) {
Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl"
}
# prepare tmp dir
$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile
$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir"
$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null
trap {
if ($TMP_DOWNLOAD_DIR.Exists) {
try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null }
catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" }
}
}
New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null
# Download and Install Apache Maven
Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..."
Write-Verbose "Downloading from: $distributionUrl"
Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName"
$webclient = New-Object System.Net.WebClient
if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) {
$webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD)
}
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null
# If specified, validate the SHA-256 sum of the Maven distribution zip file
$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum
if ($distributionSha256Sum) {
if ($USE_MVND) {
Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties."
}
Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash
if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) {
Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property."
}
}
# unzip and move
Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null
Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null
try {
Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null
} catch {
if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) {
Write-Error "fail to move MAVEN_HOME"
}
} finally {
try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null }
catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" }
}
Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD"

133
pom.xml Normal file
View File

@ -0,0 +1,133 @@
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.start-bot</groupId>
<artifactId>start-bot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>start-bot</name>
<description>start-bot</description>
<url/>
<licenses>
<license/>
</licenses>
<developers>
<developer/>
</developers>
<scm>
<connection/>
<developerConnection/>
<tag/>
<url/>
</scm>
<properties>
<java.version>21</java.version>
<spring-ai.version>1.0.0</spring-ai.version>
<spring-cloud.version>2025.0.0</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.23</version>
</dependency>
<!-- MyBatis-Plus -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<version>3.5.7</version> <!-- 请使用最新稳定版本 -->
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-bom</artifactId>
<version>${spring-ai.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -0,0 +1,14 @@
package com.startbot;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@MapperScan("com.startbot.mapper")
public class StartBotApplication {
public static void main(String[] args) {
SpringApplication.run(StartBotApplication.class, args);
}
}

View File

@ -0,0 +1,31 @@
package com.startbot.controller;
import com.startbot.entity.dto.ReqDTO;
import com.startbot.service.PrivateMessageService;
import lombok.RequiredArgsConstructor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class StarBotController {
private static final Logger logger = LoggerFactory.getLogger(StarBotController.class);
private final PrivateMessageService privateMessageService;
public StarBotController(PrivateMessageService privateMessageService) {
this.privateMessageService = privateMessageService;
}
@PostMapping("/")
public void demo1(@RequestBody ReqDTO req) {
switch (req.getEvent()) {
//私聊消息事件
case "10002":
privateMessageService.getMessage(req);
}
}
}

View File

@ -0,0 +1,21 @@
package com.startbot.entity.dataobj;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName("private_message")
public class PrivateMessageDO {
@TableId(type = IdType.AUTO)
private long id;
private String instanceId;
private String messageId;
private Integer messageType;
private String fromType;
private String fromWxid;
private String fromNickname;
private String message;
private String timeStamp;
}

View File

@ -0,0 +1,22 @@
package com.startbot.entity.dto;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
public class PrivateMessageDTO {
private String robotId;
private String instanceId;
private long timeStamp;
private String messageId;
private int messageType;
private String fromType;
private int messageSource;
private String fromWxId;
private String fromNickName;
private String message;
private String toWxId;
}

View File

@ -0,0 +1,11 @@
package com.startbot.entity.dto;
import lombok.Data;
@Data
public class ReqDTO {
String event;
String description;
Long time;
Object data;
}

View File

@ -0,0 +1,4 @@
package com.startbot.enums;
public enum MessageSourceEnum {
}

View File

@ -0,0 +1,9 @@
package com.startbot.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.startbot.entity.dataobj.PrivateMessageDO;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface PrivateMessageMapper extends BaseMapper<PrivateMessageDO> {
}

View File

@ -0,0 +1,10 @@
package com.startbot.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.startbot.entity.dataobj.PrivateMessageDO;
import com.startbot.entity.dto.ReqDTO;
public interface PrivateMessageService extends IService<PrivateMessageDO> {
public void getMessage(ReqDTO reqDTO);
}

View File

@ -0,0 +1,24 @@
package com.startbot.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.startbot.entity.dataobj.PrivateMessageDO;
import com.startbot.entity.dto.PrivateMessageDTO;
import com.startbot.mapper.PrivateMessageMapper;
import com.startbot.entity.dto.ReqDTO;
import com.startbot.service.PrivateMessageService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
@Service
public class PrivateMessageServiceImpl extends ServiceImpl<PrivateMessageMapper, PrivateMessageDO> implements PrivateMessageService {
private static final Logger logger = LoggerFactory.getLogger(PrivateMessageServiceImpl.class);
@Override
public void getMessage(ReqDTO reqDTO) {
ObjectMapper jsonMapper = new ObjectMapper();
PrivateMessageDTO message = jsonMapper.convertValue(reqDTO.getData(),PrivateMessageDTO.class);
logger.info("收到来自:{} 的消息:{}", message.getFromNickName(), message.getMessage());
}
}

View File

@ -0,0 +1,369 @@
package com.startbot.utils;
import java.time.*;
import java.time.format.DateTimeFormatter;
import java.time.temporal.ChronoUnit;
import java.util.Date;
import java.util.Locale;
/**
* 时间工具类提供时间戳格式化和常用时间操作方法
*/
public class TimeUtil {
// 常用时间格式
public static final String PATTERN_YYYY_MM_DD = "yyyy-MM-dd";
public static final String PATTERN_YYYY_MM_DD_HH_MM_SS = "yyyy-MM-dd HH:mm:ss";
public static final String PATTERN_YYYY_MM_DD_HH_MM_SS_SSS = "yyyy-MM-dd HH:mm:ss.SSS";
public static final String PATTERN_YYYYMMDD = "yyyyMMDD";
public static final String PATTERN_YYYYMMDDHHMMSS = "yyyyMMddHHmmss";
public static final String PATTERN_YYYYMMDDHHMMSSSSS = "yyyyMMddHHmmssSSS";
public static final String PATTERN_HH_MM_SS = "HH:mm:ss";
// 时区设置
private static final ZoneId DEFAULT_ZONE = ZoneId.systemDefault();
/**
* 将时间戳格式化为指定格式的字符串
*
* @param timestamp 时间戳毫秒
* @param pattern 时间格式
* @return 格式化后的时间字符串
*/
public static String formatTimestamp(long timestamp, String pattern) {
LocalDateTime dateTime = LocalDateTime.ofInstant(Instant.ofEpochMilli(timestamp), DEFAULT_ZONE);
return dateTime.format(DateTimeFormatter.ofPattern(pattern));
}
/**
* 将时间戳格式化为默认格式yyyy-MM-dd HH:mm:ss的字符串
*
* @param timestamp 时间戳毫秒
* @return 格式化后的时间字符串
*/
public static String formatTimestamp(long timestamp) {
return formatTimestamp(timestamp, PATTERN_YYYY_MM_DD_HH_MM_SS);
}
/**
* 将Date对象格式化为指定格式的字符串
*
* @param date Date对象
* @param pattern 时间格式
* @return 格式化后的时间字符串
*/
public static String formatDate(Date date, String pattern) {
if (date == null) {
return null;
}
return formatTimestamp(date.getTime(), pattern);
}
/**
* 将LocalDateTime对象格式化为指定格式的字符串
*
* @param dateTime LocalDateTime对象
* @param pattern 时间格式
* @return 格式化后的时间字符串
*/
public static String formatLocalDateTime(LocalDateTime dateTime, String pattern) {
if (dateTime == null) {
return null;
}
return dateTime.format(DateTimeFormatter.ofPattern(pattern));
}
/**
* 将字符串解析为LocalDateTime对象
*
* @param dateStr 时间字符串
* @param pattern 时间格式
* @return LocalDateTime对象
*/
public static LocalDateTime parseLocalDateTime(String dateStr, String pattern) {
return LocalDateTime.parse(dateStr, DateTimeFormatter.ofPattern(pattern));
}
/**
* 将字符串解析为时间戳
*
* @param dateStr 时间字符串
* @param pattern 时间格式
* @return 时间戳毫秒
*/
public static long parseTimestamp(String dateStr, String pattern) {
LocalDateTime dateTime = parseLocalDateTime(dateStr, pattern);
return dateTime.atZone(DEFAULT_ZONE).toInstant().toEpochMilli();
}
/**
* 获取当前时间戳毫秒
*
* @return 当前时间戳
*/
public static long currentTimestamp() {
return System.currentTimeMillis();
}
/**
* 获取当前日期yyyy-MM-dd
*
* @return 当前日期字符串
*/
public static String currentDate() {
return LocalDate.now().format(DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
}
/**
* 获取当前时间HH:mm:ss
*
* @return 当前时间字符串
*/
public static String currentTime() {
return LocalTime.now().format(DateTimeFormatter.ofPattern(PATTERN_HH_MM_SS));
}
/**
* 获取当前日期时间yyyy-MM-dd HH:mm:ss
*
* @return 当前日期时间字符串
*/
public static String currentDateTime() {
return LocalDateTime.now().format(DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD_HH_MM_SS));
}
/**
* 获取指定日期的开始时间00:00:00
*
* @param dateStr 日期字符串yyyy-MM-dd
* @return 开始时间的时间戳
*/
public static long getStartOfDay(String dateStr) {
LocalDate date = LocalDate.parse(dateStr, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
return date.atStartOfDay(DEFAULT_ZONE).toInstant().toEpochMilli();
}
/**
* 获取指定日期的结束时间23:59:59.999
*
* @param dateStr 日期字符串yyyy-MM-dd
* @return 结束时间的时间戳
*/
public static long getEndOfDay(String dateStr) {
LocalDate date = LocalDate.parse(dateStr, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
return date.atTime(23, 59, 59, 999_000_000).atZone(DEFAULT_ZONE).toInstant().toEpochMilli();
}
/**
* 获取两个时间戳之间的差值单位
*
* @param startTime 开始时间戳
* @param endTime 结束时间戳
* @return 差值
*/
public static long getTimeDiffInSeconds(long startTime, long endTime) {
return (endTime - startTime) / 1000;
}
/**
* 获取两个时间戳之间的差值单位分钟
*
* @param startTime 开始时间戳
* @param endTime 结束时间戳
* @return 差值分钟
*/
public static long getTimeDiffInMinutes(long startTime, long endTime) {
return getTimeDiffInSeconds(startTime, endTime) / 60;
}
/**
* 获取两个时间戳之间的差值单位小时
*
* @param startTime 开始时间戳
* @param endTime 结束时间戳
* @return 差值小时
*/
public static long getTimeDiffInHours(long startTime, long endTime) {
return getTimeDiffInMinutes(startTime, endTime) / 60;
}
/**
* 获取两个时间戳之间的差值单位
*
* @param startTime 开始时间戳
* @param endTime 结束时间戳
* @return 差值
*/
public static long getTimeDiffInDays(long startTime, long endTime) {
return getTimeDiffInHours(startTime, endTime) / 24;
}
/**
* 判断两个时间戳是否在同一天
*
* @param timestamp1 时间戳1
* @param timestamp2 时间戳2
* @return 是否在同一天
*/
public static boolean isSameDay(long timestamp1, long timestamp2) {
LocalDate date1 = Instant.ofEpochMilli(timestamp1).atZone(DEFAULT_ZONE).toLocalDate();
LocalDate date2 = Instant.ofEpochMilli(timestamp2).atZone(DEFAULT_ZONE).toLocalDate();
return date1.isEqual(date2);
}
/**
* 获取指定日期偏移指定天数后的日期
*
* @param dateStr 日期字符串yyyy-MM-dd
* @param days 偏移天数正数表示未来负数表示过去
* @param withTime 是否包含时间true: 返回yyyy-MM-dd HH:mm:ssfalse: 返回yyyy-MM-dd
* @return 偏移后的日期字符串
*/
public static String getDateAfter(String dateStr, int days, boolean withTime) {
LocalDate date = LocalDate.parse(dateStr, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
LocalDate newDate = date.plusDays(days);
return withTime ?
newDate.atStartOfDay().format(DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD_HH_MM_SS)) :
newDate.format(DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
}
/**
* 将时间戳转换为相对时间描述刚刚1分钟前1小时前昨天3天前
*
* @param timestamp 时间戳毫秒
* @return 相对时间描述
*/
public static String toRelativeTime(long timestamp) {
long now = currentTimestamp();
long diff = now - timestamp;
if (diff < 60 * 1000) {
return "刚刚";
} else if (diff < 60 * 60 * 1000) {
return diff / (60 * 1000) + "分钟前";
} else if (isSameDay(timestamp, now)) {
return diff / (60 * 60 * 1000) + "小时前";
} else if (diff < 24 * 60 * 60 * 1000) {
return "昨天";
} else if (diff < 3 * 24 * 60 * 60 * 1000) {
return diff / (24 * 60 * 60 * 1000) + "天前";
} else {
return formatTimestamp(timestamp, PATTERN_YYYY_MM_DD);
}
}
/**
* 将Date转换为LocalDateTime
*
* @param date Date对象
* @return LocalDateTime对象
*/
public static LocalDateTime dateToLocalDateTime(Date date) {
return date.toInstant().atZone(DEFAULT_ZONE).toLocalDateTime();
}
/**
* 将LocalDateTime转换为Date
*
* @param dateTime LocalDateTime对象
* @return Date对象
*/
public static Date localDateTimeToDate(LocalDateTime dateTime) {
return Date.from(dateTime.atZone(DEFAULT_ZONE).toInstant());
}
/**
* 获取本周第一天周一的日期
*
* @return 本周第一天的日期字符串yyyy-MM-dd
*/
public static String getFirstDayOfWeek() {
LocalDate now = LocalDate.now();
LocalDate firstDay = now.with(java.time.temporal.TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY));
return firstDay.format(DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
}
/**
* 获取本月第一天的日期
*
* @return 本月第一天的日期字符串yyyy-MM-dd
*/
public static String getFirstDayOfMonth() {
LocalDate now = LocalDate.now();
LocalDate firstDay = now.with(java.time.temporal.TemporalAdjusters.firstDayOfMonth());
return firstDay.format(DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
}
/**
* 判断是否是闰年
*
* @param year 年份
* @return 是否是闰年
*/
public static boolean isLeapYear(int year) {
return Year.isLeap(year);
}
/**
* 获取指定日期是星期几
*
* @param dateStr 日期字符串yyyy-MM-dd
* @return 星期几星期一星期日
*/
public static String getDayOfWeek(String dateStr) {
LocalDate date = LocalDate.parse(dateStr, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
DayOfWeek dayOfWeek = date.getDayOfWeek();
return dayOfWeek.getDisplayName(java.time.format.TextStyle.FULL, Locale.CHINA);
}
/**
* 计算两个日期之间相差的天数
*
* @param startDate 开始日期yyyy-MM-dd
* @param endDate 结束日期yyyy-MM-dd
* @return 相差的天数
*/
public static long daysBetween(String startDate, String endDate) {
LocalDate start = LocalDate.parse(startDate, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
LocalDate end = LocalDate.parse(endDate, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
return ChronoUnit.DAYS.between(start, end);
}
/**
* 判断一个日期是否在另一个日期之前
*
* @param date1 日期1yyyy-MM-dd
* @param date2 日期2yyyy-MM-dd
* @return date1是否在date2之前
*/
public static boolean isBefore(String date1, String date2) {
LocalDate d1 = LocalDate.parse(date1, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
LocalDate d2 = LocalDate.parse(date2, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
return d1.isBefore(d2);
}
/**
* 判断一个日期是否在另一个日期之后
*
* @param date1 日期1yyyy-MM-dd
* @param date2 日期2yyyy-MM-dd
* @return date1是否在date2之后
*/
public static boolean isAfter(String date1, String date2) {
LocalDate d1 = LocalDate.parse(date1, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
LocalDate d2 = LocalDate.parse(date2, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
return d1.isAfter(d2);
}
/**
* 获取指定日期所在月份的天数
*
* @param dateStr 日期字符串yyyy-MM-dd
* @return 该月的天数
*/
public static int getDaysOfMonth(String dateStr) {
LocalDate date = LocalDate.parse(dateStr, DateTimeFormatter.ofPattern(PATTERN_YYYY_MM_DD));
return date.lengthOfMonth();
}
}

View File

@ -0,0 +1,83 @@
server:
port: 9999 # 应用服务端口号
spring:
application:
name: start-bot # 应用名称,用于服务注册与发现
datasource:
type: com.alibaba.druid.pool.DruidDataSource # 指定使用Druid连接池
driver-class-name: com.mysql.cj.jdbc.Driver # MySQL JDBC驱动类
url: jdbc:mysql://wcy111.top:3306/start_bot?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC # 数据库连接URL
username: root # 数据库用户名
password: 122503wcy # 数据库密码
druid: # Druid连接池配置
initial-size: 5 # 初始化连接数
min-idle: 5 # 最小空闲连接数
max-active: 20 # 最大活动连接数
max-wait: 60000 # 获取连接的最大等待时间(毫秒)
time-between-eviction-runs-millis: 60000 # 连接回收检测间隔(毫秒)
min-evictable-idle-time-millis: 300000 # 连接最小空闲时间(毫秒)
validation-query: SELECT 1 FROM DUAL # 连接有效性检测SQL
test-while-idle: true # 空闲时检测连接有效性
test-on-borrow: false # 借用连接时不检测
test-on-return: false # 归还连接时不检测
pool-prepared-statements: true # 开启PSCache
max-pool-prepared-statement-per-connection-size: 20 # 每个连接的PSCache大小
filters: stat,wall,log4j # 配置监控统计、SQL防火墙和日志过滤
connection-properties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000 # 合并SQL记录慢SQL阈值(毫秒)
# Druid Web监控配置
web-stat-filter:
enabled: true # 启用Web监控
url-pattern: /* # 监控所有URL
exclusions: "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*" # 排除静态资源和监控页面
# Druid监控控制台配置
stat-view-servlet:
enabled: true # 启用监控控制台
url-pattern: /druid/* # 控制台访问路径
reset-enable: true # 允许重置统计数据
login-username: admin # 控制台登录用户名
login-password: admin # 控制台登录密码
allow: # 允许访问的IP默认为空表示允许所有
deny: # 拒绝访问的IP
# Redis配置(修正缩进与datasource同级)
redis:
host: wcy111.top # Redis服务器地址
port: 6379 # Redis服务器端口
password: 122503wcy # Redis访问密码
timeout: 5000 # 连接超时时间(毫秒)
database: 0 # 使用的数据库索引
lettuce: # 使用Lettuce客户端
pool:
max-active: 8 # 最大活动连接数
max-wait: -1ms # 获取连接的最大等待时间,-1表示无限等待
max-idle: 8 # 最大空闲连接数
min-idle: 0 # 最小空闲连接数
shutdown-timeout: 100ms # 关闭超时时间
logging: # 日志配置
level: # 日志级别配置
root: INFO # 根日志级别
com.example: DEBUG # 指定包的日志级别
file: # 日志文件配置
name: logs/myapp.log # 日志文件名
max-size: 10MB # 单个日志文件最大大小
max-history: 30 # 保留历史日志文件数
pattern: # 日志输出格式
console: "%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n" # 控制台输出格式
mybatis-plus:
mapper-locations: classpath:mapper/*.xml # mapper xml文件位置
type-aliases-package: com.example.entity # 实体类包路径
global-config:
db-config:
id-type: auto # 主键策略,自增
logic-delete-field: deleted # 逻辑删除字段名
logic-not-delete-value: 0 # 未删除值
logic-delete-value: 1 # 已删除值
configuration:
map-underscore-to-camel-case: true # 驼峰命名转换
cache-enabled: false # 禁用二级缓存

View File

@ -0,0 +1,29 @@
<configuration>
<!-- 控制台输出 -->
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<!-- 文件输出 -->
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>application.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>application.%d{yyyy-MM-dd}.log</fileNamePattern>
<maxHistory>30</maxHistory>
</rollingPolicy>
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<!-- 根日志 -->
<root level="INFO">
<appender-ref ref="CONSOLE" />
<appender-ref ref="FILE" />
</root>
<!-- 特定包的日志级别 -->
<logger name="com.example" level="DEBUG" />
</configuration>

View File

@ -0,0 +1,13 @@
package com.startbot;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class StartBotApplicationTests {
@Test
void contextLoads() {
}
}