Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Knock Zhou
springboot-template_346030
提交
e7329a4e
S
springboot-template_346030
项目概览
Knock Zhou
/
springboot-template_346030
与 Fork 源项目一致
Fork自
小小白鸽 / springboot-template
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
springboot-template_346030
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
e7329a4e
编写于
4月 21, 2023
作者:
6
632d6423b4d9145d677b07db
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Auto commit
上级
beeccb86
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
132 addition
and
4 deletion
+132
-4
src/main/java/com/lhstack/utils/Aes.java
src/main/java/com/lhstack/utils/Aes.java
+14
-0
src/main/resources/application.yml
src/main/resources/application.yml
+2
-1
src/main/resources/static/index.html
src/main/resources/static/index.html
+1
-1
src/test/java/com/lhstack/TemplateApplicationTests.java
src/test/java/com/lhstack/TemplateApplicationTests.java
+46
-0
target/classes/application.yml
target/classes/application.yml
+2
-1
target/classes/com/lhstack/utils/Aes.class
target/classes/com/lhstack/utils/Aes.class
+0
-0
target/classes/static/index.html
target/classes/static/index.html
+1
-1
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
...r-plugin/testCompile/default-testCompile/createdFiles.lst
+0
-0
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
...ler-plugin/testCompile/default-testCompile/inputFiles.lst
+1
-0
target/surefire-reports/TEST-com.lhstack.TemplateApplicationTests.xml
...ire-reports/TEST-com.lhstack.TemplateApplicationTests.xml
+61
-0
target/surefire-reports/com.lhstack.TemplateApplicationTests.txt
...surefire-reports/com.lhstack.TemplateApplicationTests.txt
+4
-0
target/test-classes/com/lhstack/TemplateApplicationTests.class
...t/test-classes/com/lhstack/TemplateApplicationTests.class
+0
-0
未找到文件。
src/main/java/com/lhstack/utils/Aes.java
浏览文件 @
e7329a4e
...
...
@@ -37,4 +37,18 @@ public class Aes {
throw
new
RuntimeException
(
e
);
}
}
public
static
byte
[]
encrypt
(
String
key
,
String
iv
,
byte
[]
bytes
){
try
{
Cipher
cipher
=
StringUtils
.
hasText
(
iv
)
?
Cipher
.
getInstance
(
CBC
)
:
Cipher
.
getInstance
(
ECB
);
if
(
StringUtils
.
hasText
(
iv
)){
cipher
.
init
(
Cipher
.
ENCRYPT_MODE
,
new
SecretKeySpec
(
key
.
getBytes
(),
"AES"
),
new
IvParameterSpec
(
iv
.
getBytes
()));
}
else
{
cipher
.
init
(
Cipher
.
ENCRYPT_MODE
,
new
SecretKeySpec
(
key
.
getBytes
(),
"AES"
));
}
return
cipher
.
doFinal
(
bytes
);
}
catch
(
Exception
e
){
throw
new
RuntimeException
(
e
);
}
}
}
src/main/resources/application.yml
浏览文件 @
e7329a4e
aes
:
key
:
axiwlazlf1456175
\ No newline at end of file
key
:
axiwlazlf1456175
iv
:
114aqws431@#!%_+
\ No newline at end of file
src/main/resources/static/index.html
浏览文件 @
e7329a4e
...
...
@@ -114,7 +114,7 @@
closed
:
false
,
aesKey
:
""
,
aesIv
:
""
,
encryptText
:
""
,
encryptText
:
"
9GVtgT5fzydU1O595W+0fIPRew4IFoRUUijxalwx/pHe8ONGN2qvIIwah9bC0oj7QrcdrGfxO9klqwlc7ntUOantY5vb65DJDolUmX/RyU4A5T9DRD5I3tqn2pmaK3EjsSsba+FScfeLq5HTGM258OW2X0ryyPp7iw2s/anGlzw=
"
,
theme
:
"
default
"
,
output
:
""
,
isJson
:
false
,
...
...
src/test/java/com/lhstack/TemplateApplicationTests.java
0 → 100644
浏览文件 @
e7329a4e
package
com.lhstack
;
import
java.nio.charset.StandardCharsets
;
import
java.util.Arrays
;
import
java.util.Date
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
import
org.bouncycastle.util.encoders.Base64
;
import
org.bouncycastle.util.encoders.Hex
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.test.context.junit4.SpringRunner
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.lhstack.utils.Aes
;
@SpringBootTest
@RunWith
(
SpringRunner
.
class
)
public
class
TemplateApplicationTests
{
@Value
(
"${aes.key:}"
)
private
String
defaultAesKey
;
@Value
(
"${aes.iv:}"
)
private
String
defaultAesIv
;
@Test
public
void
test
()
throws
Exception
{
Map
<
String
,
Object
>
data
=
new
HashMap
<>();
data
.
put
(
"date"
,
new
Date
());
data
.
put
(
"time"
,
System
.
currentTimeMillis
());
data
.
put
(
"msg"
,
"hello world"
);
List
<
Integer
>
list
=
Arrays
.
asList
(
1
,
2
,
3
,
4
,
5
,
6
,
7
);
data
.
put
(
"msg"
,
list
);
data
.
put
(
"class"
,
TemplateApplicationTests
.
class
);
ObjectMapper
objectMapper
=
new
ObjectMapper
();
byte
[]
jsonBytes
=
objectMapper
.
writeValueAsBytes
(
data
);
byte
[]
bytes
=
Aes
.
encrypt
(
defaultAesKey
,
defaultAesIv
,
jsonBytes
);
System
.
out
.
println
(
new
String
(
Base64
.
encode
(
bytes
),
StandardCharsets
.
UTF_8
));
System
.
out
.
println
(
new
String
(
Hex
.
encode
(
bytes
),
StandardCharsets
.
UTF_8
));
}
}
target/classes/application.yml
浏览文件 @
e7329a4e
aes
:
key
:
axiwlazlf1456175
\ No newline at end of file
key
:
axiwlazlf1456175
iv
:
114aqws431@#!%_+
\ No newline at end of file
target/classes/com/lhstack/utils/Aes.class
浏览文件 @
e7329a4e
无法预览此类型文件
target/classes/static/index.html
浏览文件 @
e7329a4e
...
...
@@ -114,7 +114,7 @@
closed
:
false
,
aesKey
:
""
,
aesIv
:
""
,
encryptText
:
""
,
encryptText
:
"
9GVtgT5fzydU1O595W+0fIPRew4IFoRUUijxalwx/pHe8ONGN2qvIIwah9bC0oj7QrcdrGfxO9klqwlc7ntUOantY5vb65DJDolUmX/RyU4A5T9DRD5I3tqn2pmaK3EjsSsba+FScfeLq5HTGM258OW2X0ryyPp7iw2s/anGlzw=
"
,
theme
:
"
default
"
,
output
:
""
,
isJson
:
false
,
...
...
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
0 → 100644
浏览文件 @
e7329a4e
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
0 → 100644
浏览文件 @
e7329a4e
/root/Java/src/test/java/com/lhstack/TemplateApplicationTests.java
target/surefire-reports/TEST-com.lhstack.TemplateApplicationTests.xml
0 → 100644
浏览文件 @
e7329a4e
<?xml version="1.0" encoding="UTF-8"?>
<testsuite
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=
"https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report.xsd"
name=
"com.lhstack.TemplateApplicationTests"
time=
"2.48"
tests=
"1"
errors=
"0"
skipped=
"0"
failures=
"0"
>
<properties>
<property
name=
"awt.toolkit"
value=
"sun.awt.X11.XToolkit"
/>
<property
name=
"file.encoding.pkg"
value=
"sun.io"
/>
<property
name=
"java.specification.version"
value=
"1.8"
/>
<property
name=
"sun.cpu.isalist"
value=
""
/>
<property
name=
"sun.jnu.encoding"
value=
"UTF-8"
/>
<property
name=
"java.class.path"
value=
"/root/Java/target/test-classes:/root/Java/target/classes:/root/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.3.12.RELEASE/spring-boot-starter-web-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter/2.3.12.RELEASE/spring-boot-starter-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot/2.3.12.RELEASE/spring-boot-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.3.12.RELEASE/spring-boot-autoconfigure-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.3.12.RELEASE/spring-boot-starter-logging-2.3.12.RELEASE.jar:/root/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar:/root/.m2/repository/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar:/root/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.13.3/log4j-to-slf4j-2.13.3.jar:/root/.m2/repository/org/apache/logging/log4j/log4j-api/2.13.3/log4j-api-2.13.3.jar:/root/.m2/repository/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.jar:/root/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar:/root/.m2/repository/org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.3.12.RELEASE/spring-boot-starter-json-2.3.12.RELEASE.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.11.4/jackson-databind-2.11.4.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.11.4/jackson-annotations-2.11.4.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.11.4/jackson-core-2.11.4.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.11.4/jackson-datatype-jdk8-2.11.4.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.11.4/jackson-datatype-jsr310-2.11.4.jar:/root/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.11.4/jackson-module-parameter-names-2.11.4.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.3.12.RELEASE/spring-boot-starter-tomcat-2.3.12.RELEASE.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.46/tomcat-embed-core-9.0.46.jar:/root/.m2/repository/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.46/tomcat-embed-websocket-9.0.46.jar:/root/.m2/repository/org/springframework/spring-web/5.2.15.RELEASE/spring-web-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-beans/5.2.15.RELEASE/spring-beans-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-webmvc/5.2.15.RELEASE/spring-webmvc-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-aop/5.2.15.RELEASE/spring-aop-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-context/5.2.15.RELEASE/spring-context-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-expression/5.2.15.RELEASE/spring-expression-5.2.15.RELEASE.jar:/root/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.jar:/root/.m2/repository/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21.jar:/root/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.3.12.RELEASE/spring-boot-starter-test-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test/2.3.12.RELEASE/spring-boot-test-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.3.12.RELEASE/spring-boot-test-autoconfigure-2.3.12.RELEASE.jar:/root/.m2/repository/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar:/root/.m2/repository/net/minidev/json-smart/2.3.1/json-smart-2.3.1.jar:/root/.m2/repository/net/minidev/accessors-smart/2.3.1/accessors-smart-2.3.1.jar:/root/.m2/repository/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar:/root/.m2/repository/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar:/root/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar:/root/.m2/repository/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar:/root/.m2/repository/org/assertj/assertj-core/3.16.1/assertj-core-3.16.1.jar:/root/.m2/repository/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar:/root/.m2/repository/org/junit/jupiter/junit-jupiter/5.6.3/junit-jupiter-5.6.3.jar:/root/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.6.3/junit-jupiter-api-5.6.3.jar:/root/.m2/repository/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar:/root/.m2/repository/org/junit/platform/junit-platform-commons/1.6.3/junit-platform-commons-1.6.3.jar:/root/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.6.3/junit-jupiter-params-5.6.3.jar:/root/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.6.3/junit-jupiter-engine-5.6.3.jar:/root/.m2/repository/org/junit/vintage/junit-vintage-engine/5.6.3/junit-vintage-engine-5.6.3.jar:/root/.m2/repository/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.jar:/root/.m2/repository/org/junit/platform/junit-platform-engine/1.6.3/junit-platform-engine-1.6.3.jar:/root/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/root/.m2/repository/org/mockito/mockito-core/3.3.3/mockito-core-3.3.3.jar:/root/.m2/repository/net/bytebuddy/byte-buddy/1.10.22/byte-buddy-1.10.22.jar:/root/.m2/repository/net/bytebuddy/byte-buddy-agent/1.10.22/byte-buddy-agent-1.10.22.jar:/root/.m2/repository/org/objenesis/objenesis/2.6/objenesis-2.6.jar:/root/.m2/repository/org/mockito/mockito-junit-jupiter/3.3.3/mockito-junit-jupiter-3.3.3.jar:/root/.m2/repository/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar:/root/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar:/root/.m2/repository/org/springframework/spring-core/5.2.15.RELEASE/spring-core-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-jcl/5.2.15.RELEASE/spring-jcl-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-test/5.2.15.RELEASE/spring-test-5.2.15.RELEASE.jar:/root/.m2/repository/org/xmlunit/xmlunit-core/2.7.0/xmlunit-core-2.7.0.jar:"
/>
<property
name=
"java.vm.vendor"
value=
"Private Build"
/>
<property
name=
"sun.arch.data.model"
value=
"64"
/>
<property
name=
"java.vendor.url"
value=
"http://java.oracle.com/"
/>
<property
name=
"user.timezone"
value=
""
/>
<property
name=
"java.vm.specification.version"
value=
"1.8"
/>
<property
name=
"os.name"
value=
"Linux"
/>
<property
name=
"user.country"
value=
"US"
/>
<property
name=
"sun.java.launcher"
value=
"SUN_STANDARD"
/>
<property
name=
"sun.boot.library.path"
value=
"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64"
/>
<property
name=
"sun.java.command"
value=
"/root/Java/target/surefire/surefirebooter8981342861751727056.jar /root/Java/target/surefire 2023-04-21T11-57-08_938-jvmRun1 surefire2909378441835173903tmp surefire_01058452330805304441tmp"
/>
<property
name=
"surefire.test.class.path"
value=
"/root/Java/target/test-classes:/root/Java/target/classes:/root/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.3.12.RELEASE/spring-boot-starter-web-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter/2.3.12.RELEASE/spring-boot-starter-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot/2.3.12.RELEASE/spring-boot-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.3.12.RELEASE/spring-boot-autoconfigure-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.3.12.RELEASE/spring-boot-starter-logging-2.3.12.RELEASE.jar:/root/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar:/root/.m2/repository/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar:/root/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.13.3/log4j-to-slf4j-2.13.3.jar:/root/.m2/repository/org/apache/logging/log4j/log4j-api/2.13.3/log4j-api-2.13.3.jar:/root/.m2/repository/org/slf4j/jul-to-slf4j/1.7.30/jul-to-slf4j-1.7.30.jar:/root/.m2/repository/jakarta/annotation/jakarta.annotation-api/1.3.5/jakarta.annotation-api-1.3.5.jar:/root/.m2/repository/org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.3.12.RELEASE/spring-boot-starter-json-2.3.12.RELEASE.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.11.4/jackson-databind-2.11.4.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.11.4/jackson-annotations-2.11.4.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.11.4/jackson-core-2.11.4.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.11.4/jackson-datatype-jdk8-2.11.4.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.11.4/jackson-datatype-jsr310-2.11.4.jar:/root/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.11.4/jackson-module-parameter-names-2.11.4.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.3.12.RELEASE/spring-boot-starter-tomcat-2.3.12.RELEASE.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/9.0.46/tomcat-embed-core-9.0.46.jar:/root/.m2/repository/org/glassfish/jakarta.el/3.0.3/jakarta.el-3.0.3.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.46/tomcat-embed-websocket-9.0.46.jar:/root/.m2/repository/org/springframework/spring-web/5.2.15.RELEASE/spring-web-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-beans/5.2.15.RELEASE/spring-beans-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-webmvc/5.2.15.RELEASE/spring-webmvc-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-aop/5.2.15.RELEASE/spring-aop-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-context/5.2.15.RELEASE/spring-context-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-expression/5.2.15.RELEASE/spring-expression-5.2.15.RELEASE.jar:/root/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.jar:/root/.m2/repository/io/reactivex/rxjava2/rxjava/2.2.21/rxjava-2.2.21.jar:/root/.m2/repository/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.3.12.RELEASE/spring-boot-starter-test-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test/2.3.12.RELEASE/spring-boot-test-2.3.12.RELEASE.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.3.12.RELEASE/spring-boot-test-autoconfigure-2.3.12.RELEASE.jar:/root/.m2/repository/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar:/root/.m2/repository/net/minidev/json-smart/2.3.1/json-smart-2.3.1.jar:/root/.m2/repository/net/minidev/accessors-smart/2.3.1/accessors-smart-2.3.1.jar:/root/.m2/repository/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar:/root/.m2/repository/org/slf4j/slf4j-api/1.7.30/slf4j-api-1.7.30.jar:/root/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/2.3.3/jakarta.xml.bind-api-2.3.3.jar:/root/.m2/repository/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar:/root/.m2/repository/org/assertj/assertj-core/3.16.1/assertj-core-3.16.1.jar:/root/.m2/repository/org/hamcrest/hamcrest/2.2/hamcrest-2.2.jar:/root/.m2/repository/org/junit/jupiter/junit-jupiter/5.6.3/junit-jupiter-5.6.3.jar:/root/.m2/repository/org/junit/jupiter/junit-jupiter-api/5.6.3/junit-jupiter-api-5.6.3.jar:/root/.m2/repository/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar:/root/.m2/repository/org/junit/platform/junit-platform-commons/1.6.3/junit-platform-commons-1.6.3.jar:/root/.m2/repository/org/junit/jupiter/junit-jupiter-params/5.6.3/junit-jupiter-params-5.6.3.jar:/root/.m2/repository/org/junit/jupiter/junit-jupiter-engine/5.6.3/junit-jupiter-engine-5.6.3.jar:/root/.m2/repository/org/junit/vintage/junit-vintage-engine/5.6.3/junit-vintage-engine-5.6.3.jar:/root/.m2/repository/org/apiguardian/apiguardian-api/1.1.0/apiguardian-api-1.1.0.jar:/root/.m2/repository/org/junit/platform/junit-platform-engine/1.6.3/junit-platform-engine-1.6.3.jar:/root/.m2/repository/junit/junit/4.13.2/junit-4.13.2.jar:/root/.m2/repository/org/mockito/mockito-core/3.3.3/mockito-core-3.3.3.jar:/root/.m2/repository/net/bytebuddy/byte-buddy/1.10.22/byte-buddy-1.10.22.jar:/root/.m2/repository/net/bytebuddy/byte-buddy-agent/1.10.22/byte-buddy-agent-1.10.22.jar:/root/.m2/repository/org/objenesis/objenesis/2.6/objenesis-2.6.jar:/root/.m2/repository/org/mockito/mockito-junit-jupiter/3.3.3/mockito-junit-jupiter-3.3.3.jar:/root/.m2/repository/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar:/root/.m2/repository/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar:/root/.m2/repository/org/springframework/spring-core/5.2.15.RELEASE/spring-core-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-jcl/5.2.15.RELEASE/spring-jcl-5.2.15.RELEASE.jar:/root/.m2/repository/org/springframework/spring-test/5.2.15.RELEASE/spring-test-5.2.15.RELEASE.jar:/root/.m2/repository/org/xmlunit/xmlunit-core/2.7.0/xmlunit-core-2.7.0.jar:"
/>
<property
name=
"sun.cpu.endian"
value=
"little"
/>
<property
name=
"user.home"
value=
"/root"
/>
<property
name=
"user.language"
value=
"en"
/>
<property
name=
"java.specification.vendor"
value=
"Oracle Corporation"
/>
<property
name=
"java.home"
value=
"/usr/lib/jvm/java-8-openjdk-amd64/jre"
/>
<property
name=
"basedir"
value=
"/root/Java"
/>
<property
name=
"file.separator"
value=
"/"
/>
<property
name=
"line.separator"
value=
" "
/>
<property
name=
"java.vm.specification.vendor"
value=
"Oracle Corporation"
/>
<property
name=
"java.specification.name"
value=
"Java Platform API Specification"
/>
<property
name=
"java.awt.graphicsenv"
value=
"sun.awt.X11GraphicsEnvironment"
/>
<property
name=
"surefire.real.class.path"
value=
"/root/Java/target/surefire/surefirebooter8981342861751727056.jar"
/>
<property
name=
"sun.boot.class.path"
value=
"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/resources.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jsse.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jce.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/charsets.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jfr.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/classes"
/>
<property
name=
"sun.management.compiler"
value=
"HotSpot 64-Bit Tiered Compilers"
/>
<property
name=
"java.runtime.version"
value=
"1.8.0_342-8u342-b07-0ubuntu1~20.04-b07"
/>
<property
name=
"user.name"
value=
"root"
/>
<property
name=
"path.separator"
value=
":"
/>
<property
name=
"os.version"
value=
"4.19.126-1.jdcloud.x86_64"
/>
<property
name=
"java.endorsed.dirs"
value=
"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/endorsed"
/>
<property
name=
"java.runtime.name"
value=
"OpenJDK Runtime Environment"
/>
<property
name=
"file.encoding"
value=
"UTF-8"
/>
<property
name=
"java.vm.name"
value=
"OpenJDK 64-Bit Server VM"
/>
<property
name=
"localRepository"
value=
"/root/.m2/repository"
/>
<property
name=
"java.vendor.url.bug"
value=
"http://bugreport.sun.com/bugreport/"
/>
<property
name=
"java.io.tmpdir"
value=
"/tmp"
/>
<property
name=
"java.version"
value=
"1.8.0_342"
/>
<property
name=
"user.dir"
value=
"/root/Java"
/>
<property
name=
"os.arch"
value=
"amd64"
/>
<property
name=
"java.vm.specification.name"
value=
"Java Virtual Machine Specification"
/>
<property
name=
"java.awt.printerjob"
value=
"sun.print.PSPrinterJob"
/>
<property
name=
"sun.os.patch.level"
value=
"unknown"
/>
<property
name=
"java.library.path"
value=
"/usr/java/packages/lib/amd64:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib"
/>
<property
name=
"java.vm.info"
value=
"mixed mode"
/>
<property
name=
"java.vendor"
value=
"Private Build"
/>
<property
name=
"java.vm.version"
value=
"25.342-b07"
/>
<property
name=
"java.ext.dirs"
value=
"/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext:/usr/java/packages/lib/ext"
/>
<property
name=
"sun.io.unicode.encoding"
value=
"UnicodeLittle"
/>
<property
name=
"java.class.version"
value=
"52.0"
/>
</properties>
<testcase
name=
"test"
classname=
"com.lhstack.TemplateApplicationTests"
time=
"0.634"
/>
</testsuite>
\ No newline at end of file
target/surefire-reports/com.lhstack.TemplateApplicationTests.txt
0 → 100644
浏览文件 @
e7329a4e
-------------------------------------------------------------------------------
Test set: com.lhstack.TemplateApplicationTests
-------------------------------------------------------------------------------
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.48 s - in com.lhstack.TemplateApplicationTests
target/test-classes/com/lhstack/TemplateApplicationTests.class
0 → 100644
浏览文件 @
e7329a4e
文件已添加
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录