国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

云服務(wù)器|WEB服務(wù)器|FTP服務(wù)器|郵件服務(wù)器|虛擬主機|服務(wù)器安全|DNS服務(wù)器|服務(wù)器知識|Nginx|IIS|Tomcat|

服務(wù)器之家 - 服務(wù)器技術(shù) - 服務(wù)器知識 - springboot整合docker部署實現(xiàn)兩種構(gòu)建Docker鏡像方式

springboot整合docker部署實現(xiàn)兩種構(gòu)建Docker鏡像方式

2021-03-26 18:15那啥快看 服務(wù)器知識

這篇文章主要介紹了springboot整合docker部署實現(xiàn)兩種構(gòu)建Docker鏡像方式,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

docker是一個開源的引擎,可以輕松的為任何應(yīng)用創(chuàng)建一個輕量級的、可移植的、自給自足的容器。開發(fā)者在筆記本上編譯測試通過的容器可以批量地在生產(chǎn)環(huán)境中部署,包括vms(虛擬機)、bare metal、openstack 集群和其他的基礎(chǔ)應(yīng)用平臺。

docker的應(yīng)用場景

web應(yīng)用的自動化打包和發(fā)布;
自動化測試和持續(xù)集成、發(fā)布;
在服務(wù)型環(huán)境中部署和調(diào)整數(shù)據(jù)庫或其他的后臺應(yīng)用;
從頭編譯或者擴展現(xiàn)有的openshift或cloud foundry平臺來搭建自己的paas環(huán)境。

項目結(jié)構(gòu)

springboot整合docker部署實現(xiàn)兩種構(gòu)建Docker鏡像方式

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package hello;
 
import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.restcontroller;
 
@springbootapplication
@restcontroller
public class application {
 
 @requestmapping("/")
 public string home() {
  return "hello docker world";
 }
 
 public static void main(string[] args) {
  springapplication.run(application.class, args);
 }
 
}
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
server:
 port: 8010
 
#todo: figure out why i need this here and in bootstrap.yml
spring:
 application:
 name: testlatticeapp
 
ribbon:
 serverlistrefreshinterval: 1000
 
endpoints:
 health:
 sensitive: false
 restart:
 enabled: true
 shutdown:
 enabled: true

dockfile

?
1
2
3
4
5
6
from frolvlad/alpine-oraclejdk8:slim
volume /tmp
add gs-spring-boot-docker-master-0.0.1-snapshot.jar app.jar
run sh -c 'touch /app.jar'
env java_opts=""
entrypoint [ "sh", "-c", "java $java_opts -djava.security.egd=file:/dev/./urandom -jar /app.jar" ]

解釋下這個配置文件:

volume 指定了臨時文件目錄為/tmp。其效果是在主機 /var/lib/docker 目錄下創(chuàng)建了一個臨時文件,并鏈接到容器的/tmp。改步驟是可選的,如果涉及到文件系統(tǒng)的應(yīng)用就很有必要了。/tmp目錄用來持久化到 docker 數(shù)據(jù)文件夾,因為 spring boot 使用的內(nèi)嵌 tomcat 容器默認(rèn)使用/tmp作為工作目錄項目的 jar 文件作為 “app.jar” 添加到容器的entrypoint 執(zhí)行項目 app.jar。為了縮短 tomcat 啟動時間,添加一個系統(tǒng)屬性指向 “/dev/urandom” 作為 entropy source

pom.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<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>gs-spring-boot-docker-master</groupid>
 <artifactid>gs-spring-boot-docker-master</artifactid>
 <version>0.0.1-snapshot</version>
 <packaging>jar</packaging>
 
 <parent>
  <groupid>org.springframework.boot</groupid>
  <artifactid>spring-boot-starter-parent</artifactid>
  <version>2.0.2.release</version>
  <relativepath />
 </parent>
 
 <properties>
  <project.build.sourceencoding>utf-8</project.build.sourceencoding>
  <project.reporting.outputencoding>utf-8</project.reporting.outputencoding>
  <!--properties節(jié)點中設(shè)置docker鏡像的前綴“springboot”-->
  <docker.image.prefix>springio</docker.image.prefix>
  <java.version>1.8</java.version>
 </properties>
 
 <build>
  <plugins>
   <plugin>
    <groupid>org.springframework.boot</groupid>
    <artifactid>spring-boot-maven-plugin</artifactid>
   </plugin>
   <!-- tag::plugin[] -->
   <plugin>
    <groupid>com.spotify</groupid>
    <artifactid>docker-maven-plugin</artifactid>
    <version>0.4.13</version>
    <configuration>
     <imagename>${docker.image.prefix}/${project.artifactid}</imagename>
     <dockerdirectory>src/main/docker</dockerdirectory>
     <resources>
      <resource>
       <targetpath>/</targetpath>
       <directory>${project.build.directory}</directory>
       <include>${project.build.finalname}.jar</include>
      </resource>
     </resources>
    </configuration>
   </plugin>
   <!-- end::plugin[] -->
 
  </plugins>
  
  <!--<finalname>gs-spring-boot-docker-master</finalname>-->
 </build>
 
 <dependencies>
  <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-starter-web</artifactid>
  </dependency>
  <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-starter-test</artifactid>
   <scope>test</scope>
  </dependency>
 </dependencies>
 
</project>

dockfile配置文件詳解

  • volume指定了臨時文件目錄為/tmp。其效果是在主機/var/lib/docker目錄下創(chuàng)建了一個臨時文件,并鏈接到容器的/tmp。改步驟是可選的,如果涉及到文件系統(tǒng)的應(yīng)用就很有必要了。/tmp目錄用來持久化到 docker 數(shù)據(jù)文件夾,因為 spring boot 使用的內(nèi)嵌 tomcat 容器默認(rèn)使用/tmp作為工作目錄
  • 項目的 jar 文件作為 “app.jar” 添加到容器的
  • entrypoint執(zhí)行項目 app.jar。為了縮短tomcat 啟動時間,添加一個系統(tǒng)屬性指向 “/dev/urandom” 作為 entropy source

非docker方式運行程序

使用maven命令

?
1
mvn package

運行:java -jar target/lidong-spring-boot-demo-1.0-snapshot.jar

訪問項目

如果程序正確運行,瀏覽器訪問http://localhost:8081/,可以看到頁面 “hello docker world.” 字樣。

在docker開始部署springboot項目(方法一)

1.在centos7 ~ 創(chuàng)建一個文件夾docker 里面放置 上面的dockerfile 和 springboot 打包的項目docker_spring_boot.jar

2.

springboot整合docker部署實現(xiàn)兩種構(gòu)建Docker鏡像方式

在該docker文件下 指令:docker build -t docker .

執(zhí)行docker build命令,docker就會根據(jù)dockerfile里你定義好的命令進行構(gòu)建新的鏡像。

-t代表要構(gòu)建的鏡像的tag,.代表當(dāng)前目錄,也就是dockerfile所在的目錄。然后就可以看到在下載各種依賴的maven、各種jar,構(gòu)建完畢后,啟動項目。

springboot整合docker部署實現(xiàn)兩種構(gòu)建Docker鏡像方式

在該docker文件下使用 指令:docker run -d -p 8080:8080 docker運行該springboot項目,可以看到構(gòu)建完畢的景象docker了訪問ip地址:通過ifconfig查到

springboot整合docker部署實現(xiàn)兩種構(gòu)建Docker鏡像方式

最后,訪問本地瀏覽器:

springboot整合docker部署實現(xiàn)兩種構(gòu)建Docker鏡像方式

在docker開始部署springboot項目(方法二)

把整個工程代碼拷到centos服務(wù)器上

?
1
2
[root@iz2zeh5mjwg5u2vl2fawchz ~]# ls /usr/local/gs-spring-boot-docker-master
pom.xml src target

在/usr/local/gs-spring-boot-docker-master目錄下運行命令:mvn package docker:build

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
[root@iz2zeh5mjwg5u2vl2fawchz gs-spring-boot-docker-master]# mvn package docker:build
[info] scanning for projects...
[info]
[info] ------------------------------------------------------------------------
[info] building gs-spring-boot-docker-master 0.0.1-snapshot
[info] ------------------------------------------------------------------------
[info]
[info] --- maven-resources-plugin:3.0.1:resources (default-resources) @ gs-spring-boot-docker-master ---
[info] using 'utf-8' encoding to copy filtered resources.
[info] copying 1 resource
[info] copying 0 resource
[info]
[info] --- maven-compiler-plugin:3.7.0:compile (default-compile) @ gs-spring-boot-docker-master ---
[info] changes detected - recompiling the module!
[info] compiling 1 source file to /usr/local/gs-spring-boot-docker-master/target/classes
[info]
[info] --- maven-resources-plugin:3.0.1:testresources (default-testresources) @ gs-spring-boot-docker-master ---
[info] using 'utf-8' encoding to copy filtered resources.
[info] copying 0 resource
[info]
[info] --- maven-compiler-plugin:3.7.0:testcompile (default-testcompile) @ gs-spring-boot-docker-master ---
[info] changes detected - recompiling the module!
[info] compiling 1 source file to /usr/local/gs-spring-boot-docker-master/target/test-classes
[info]
[info] --- maven-surefire-plugin:2.21.0:test (default-test) @ gs-spring-boot-docker-master ---
[info]
[info] -------------------------------------------------------
[info] t e s t s
[info] -------------------------------------------------------
[info] running hello.helloworldconfigurationtests
10:29:05.887 [main] debug org.springframework.test.context.junit4.springjunit4classrunner - springjunit4classrunner constructor called with [class hello.helloworldconfigurationtests]
10:29:05.905 [main] debug org.springframework.test.context.bootstraputils - instantiating cacheawarecontextloaderdelegate from class [org.springframework.test.context.cache.defaultcacheawarecontextloaderdelegate]
10:29:05.912 [main] debug org.springframework.test.context.bootstraputils - instantiating bootstrapcontext using constructor [public org.springframework.test.context.support.defaultbootstrapcontext(java.lang.class,org.springframework.test.context.cacheawarecontextloaderdelegate)]
10:29:05.940 [main] debug org.springframework.test.context.bootstraputils - instantiating testcontextbootstrapper for test class [hello.helloworldconfigurationtests] from class [org.springframework.boot.test.context.springboottestcontextbootstrapper]
10:29:05.960 [main] info org.springframework.boot.test.context.springboottestcontextbootstrapper - neither @contextconfiguration nor @contexthierarchy found for test class [hello.helloworldconfigurationtests], using springbootcontextloader
10:29:05.963 [main] debug org.springframework.test.context.support.abstractcontextloader - did not detect default resource location for test class [hello.helloworldconfigurationtests]: class path resource [hello/helloworldconfigurationtests-context.xml] does not exist
10:29:05.963 [main] debug org.springframework.test.context.support.abstractcontextloader - did not detect default resource location for test class [hello.helloworldconfigurationtests]: class path resource [hello/helloworldconfigurationtestscontext.groovy] does not exist
10:29:05.963 [main] info org.springframework.test.context.support.abstractcontextloader - could not detect default resource locations for test class [hello.helloworldconfigurationtests]: no resource found for suffixes {-context.xml, context.groovy}.
10:29:05.964 [main] info org.springframework.test.context.support.annotationconfigcontextloaderutils - could not detect default configuration classes for test class [hello.helloworldconfigurationtests]: helloworldconfigurationtests does not declare any static, non-private, non-final, nested classes annotated with @configuration.
10:29:06.047 [main] debug org.springframework.test.context.support.activeprofilesutils - could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.activeprofiles] and class [hello.helloworldconfigurationtests]
10:29:06.057 [main] debug org.springframework.core.env.standardenvironment - adding propertysource 'systemproperties' with lowest search precedence
10:29:06.057 [main] debug org.springframework.core.env.standardenvironment - adding propertysource 'systemenvironment' with lowest search precedence
10:29:06.057 [main] debug org.springframework.core.env.standardenvironment - initialized standardenvironment with propertysources [mappropertysource@1270144618 {name='systemproperties', properties={java.runtime.name=openjdk runtime environment, sun.boot.library.path=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/amd64, java.vm.version=25.171-b10, java.vm.vendor=oracle corporation, java.vendor.url=http://java.oracle.com/, path.separator=:, java.vm.name=openjdk 64-bit server vm, file.encoding.pkg=sun.io, user.country=us, sun.java.launcher=sun_standard, sun.os.patch.level=unknown, java.vm.specification.name=java virtual machine specification, user.dir=/usr/local/gs-spring-boot-docker-master, java.runtime.version=1.8.0_171-b10, basedir=/usr/local/gs-spring-boot-docker-master, java.awt.graphicsenv=sun.awt.x11graphicsenvironment, java.endorsed.dirs=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/endorsed, os.arch=amd64, surefire.real.class.path=/usr/local/gs-spring-boot-docker-master/target/surefire/surefirebooter4703757062554335800.jar, java.io.tmpdir=/tmp, line.separator=
, java.vm.specification.vendor=oracle corporation, os.name=linux, sun.jnu.encoding=utf-8, java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, surefire.test.class.path=/usr/local/gs-spring-boot-docker-master/target/test-classes:/usr/local/gs-spring-boot-docker-master/target/classes:/root/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.0.2.release/spring-boot-starter-web-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter/2.0.2.release/spring-boot-starter-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot/2.0.2.release/spring-boot-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.0.2.release/spring-boot-autoconfigure-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.0.2.release/spring-boot-starter-logging-2.0.2.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.10.0/log4j-to-slf4j-2.10.0.jar:/root/.m2/repository/org/apache/logging/log4j/log4j-api/2.10.0/log4j-api-2.10.0.jar:/root/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/root/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/root/.m2/repository/org/yaml/snakeyaml/1.19/snakeyaml-1.19.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.0.2.release/spring-boot-starter-json-2.0.2.release.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.5/jackson-core-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.5/jackson-datatype-jdk8-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.5/jackson-datatype-jsr310-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.5/jackson-module-parameter-names-2.9.5.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.0.2.release/spring-boot-starter-tomcat-2.0.2.release.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.31/tomcat-embed-core-8.5.31.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.5.31/tomcat-embed-el-8.5.31.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.31/tomcat-embed-websocket-8.5.31.jar:/root/.m2/repository/org/hibernate/validator/hibernate-validator/6.0.9.final/hibernate-validator-6.0.9.final.jar:/root/.m2/repository/javax/validation/validation-api/2.0.1.final/validation-api-2.0.1.final.jar:/root/.m2/repository/org/jboss/logging/jboss-logging/3.3.2.final/jboss-logging-3.3.2.final.jar:/root/.m2/repository/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/root/.m2/repository/org/springframework/spring-web/5.0.6.release/spring-web-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-beans/5.0.6.release/spring-beans-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-webmvc/5.0.6.release/spring-webmvc-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-aop/5.0.6.release/spring-aop-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-context/5.0.6.release/spring-context-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-expression/5.0.6.release/spring-expression-5.0.6.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.0.2.release/spring-boot-starter-test-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test/2.0.2.release/spring-boot-test-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.0.2.release/spring-boot-test-autoconfigure-2.0.2.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/json-smart-2.3.jar:/root/.m2/repository/net/minidev/accessors-smart/1.2/accessors-smart-1.2.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.25/slf4j-api-1.7.25.jar:/root/.m2/repository/junit/junit/4.12/junit-4.12.jar:/root/.m2/repository/org/assertj/assertj-core/3.9.1/assertj-core-3.9.1.jar:/root/.m2/repository/org/mockito/mockito-core/2.15.0/mockito-core-2.15.0.jar:/root/.m2/repository/net/bytebuddy/byte-buddy/1.7.11/byte-buddy-1.7.11.jar:/root/.m2/repository/net/bytebuddy/byte-buddy-agent/1.7.11/byte-buddy-agent-1.7.11.jar:/root/.m2/repository/org/objenesis/objenesis/2.6/objenesis-2.6.jar:/root/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/root/.m2/repository/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.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.0.6.release/spring-core-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-jcl/5.0.6.release/spring-jcl-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-test/5.0.6.release/spring-test-5.0.6.release.jar:/root/.m2/repository/org/xmlunit/xmlunit-core/2.5.1/xmlunit-core-2.5.1.jar:, java.specification.name=java platform api specification, java.class.version=52.0, sun.management.compiler=hotspot 64-bit tiered compilers, os.version=3.10.0-693.2.2.el7.x86_64, user.home=/root, user.timezone=asia/shanghai, java.awt.printerjob=sun.print.psprinterjob, file.encoding=utf-8, java.specification.version=1.8, java.class.path=/usr/local/gs-spring-boot-docker-master/target/test-classes:/usr/local/gs-spring-boot-docker-master/target/classes:/root/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.0.2.release/spring-boot-starter-web-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter/2.0.2.release/spring-boot-starter-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot/2.0.2.release/spring-boot-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.0.2.release/spring-boot-autoconfigure-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.0.2.release/spring-boot-starter-logging-2.0.2.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.10.0/log4j-to-slf4j-2.10.0.jar:/root/.m2/repository/org/apache/logging/log4j/log4j-api/2.10.0/log4j-api-2.10.0.jar:/root/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/root/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/root/.m2/repository/org/yaml/snakeyaml/1.19/snakeyaml-1.19.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.0.2.release/spring-boot-starter-json-2.0.2.release.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.5/jackson-core-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.5/jackson-datatype-jdk8-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.5/jackson-datatype-jsr310-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.5/jackson-module-parameter-names-2.9.5.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.0.2.release/spring-boot-starter-tomcat-2.0.2.release.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.31/tomcat-embed-core-8.5.31.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.5.31/tomcat-embed-el-8.5.31.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.31/tomcat-embed-websocket-8.5.31.jar:/root/.m2/repository/org/hibernate/validator/hibernate-validator/6.0.9.final/hibernate-validator-6.0.9.final.jar:/root/.m2/repository/javax/validation/validation-api/2.0.1.final/validation-api-2.0.1.final.jar:/root/.m2/repository/org/jboss/logging/jboss-logging/3.3.2.final/jboss-logging-3.3.2.final.jar:/root/.m2/repository/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/root/.m2/repository/org/springframework/spring-web/5.0.6.release/spring-web-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-beans/5.0.6.release/spring-beans-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-webmvc/5.0.6.release/spring-webmvc-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-aop/5.0.6.release/spring-aop-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-context/5.0.6.release/spring-context-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-expression/5.0.6.release/spring-expression-5.0.6.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.0.2.release/spring-boot-starter-test-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test/2.0.2.release/spring-boot-test-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.0.2.release/spring-boot-test-autoconfigure-2.0.2.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/json-smart-2.3.jar:/root/.m2/repository/net/minidev/accessors-smart/1.2/accessors-smart-1.2.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.25/slf4j-api-1.7.25.jar:/root/.m2/repository/junit/junit/4.12/junit-4.12.jar:/root/.m2/repository/org/assertj/assertj-core/3.9.1/assertj-core-3.9.1.jar:/root/.m2/repository/org/mockito/mockito-core/2.15.0/mockito-core-2.15.0.jar:/root/.m2/repository/net/bytebuddy/byte-buddy/1.7.11/byte-buddy-1.7.11.jar:/root/.m2/repository/net/bytebuddy/byte-buddy-agent/1.7.11/byte-buddy-agent-1.7.11.jar:/root/.m2/repository/org/objenesis/objenesis/2.6/objenesis-2.6.jar:/root/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/root/.m2/repository/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.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.0.6.release/spring-core-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-jcl/5.0.6.release/spring-jcl-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-test/5.0.6.release/spring-test-5.0.6.release.jar:/root/.m2/repository/org/xmlunit/xmlunit-core/2.5.1/xmlunit-core-2.5.1.jar:, user.name=root, java.vm.specification.version=1.8, sun.java.command=/usr/local/gs-spring-boot-docker-master/target/surefire/surefirebooter4703757062554335800.jar /usr/local/gs-spring-boot-docker-master/target/surefire 2018-06-21t10-29-04_776-jvmrun1 surefire2306677988440424207tmp surefire_06445366462775442424tmp, java.home=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre, sun.arch.data.model=64, user.language=en, java.specification.vendor=oracle corporation, awt.toolkit=sun.awt.x11.xtoolkit, java.vm.info=mixed mode, java.version=1.8.0_171, java.ext.dirs=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/ext:/usr/java/packages/lib/ext, sun.boot.class.path=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/resources.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/rt.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/jsse.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/jce.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/charsets.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/jfr.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/classes, java.vendor=oracle corporation, localrepository=/root/.m2/repository, file.separator=/, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, sun.io.unicode.encoding=unicodelittle, sun.cpu.endian=little, sun.cpu.isalist=}}, systemenvironmentpropertysource@2074185499 {name='systemenvironment', properties={path=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin, histcontrol=ignoredups, lessopen=||/usr/bin/lesspipe.sh %s, shell=/bin/bash, histsize=1000, java_home=/usr/lib/jvm/java, ssh_tty=/dev/pts/0, ssh_client=49.66.150.128 7775 22, oldpwd=/usr/local/gs-spring-boot-docker-master, term=xterm, user=root, lang=en_us.utf-8, xdg_session_id=1180, ssh_connection=49.66.150.128 7775 172.17.69.217 22, mail=/var/spool/mail/root, hostname=iz2zeh5mjwg5u2vl2fawchz, m2_home=/usr/share/maven, logname=root, xdg_runtime_dir=/run/user/0, pwd=/usr/local/gs-spring-boot-docker-master, ls_colors=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:, home=/root, shlvl=3, _=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/bin/java}}]
10:29:06.069 [main] debug org.springframework.core.io.support.pathmatchingresourcepatternresolver - resolved classpath location [hello/] to resources [url [file:/usr/local/gs-spring-boot-docker-master/target/test-classes/hello/], url [file:/usr/local/gs-spring-boot-docker-master/target/classes/hello/]]
10:29:06.069 [main] debug org.springframework.core.io.support.pathmatchingresourcepatternresolver - looking for matching resources in directory tree [/usr/local/gs-spring-boot-docker-master/target/test-classes/hello]
10:29:06.069 [main] debug org.springframework.core.io.support.pathmatchingresourcepatternresolver - searching directory [/usr/local/gs-spring-boot-docker-master/target/test-classes/hello] for files matching pattern [/usr/local/gs-spring-boot-docker-master/target/test-classes/hello/*.class]
10:29:06.081 [main] debug org.springframework.core.io.support.pathmatchingresourcepatternresolver - looking for matching resources in directory tree [/usr/local/gs-spring-boot-docker-master/target/classes/hello]
10:29:06.081 [main] debug org.springframework.core.io.support.pathmatchingresourcepatternresolver - searching directory [/usr/local/gs-spring-boot-docker-master/target/classes/hello] for files matching pattern [/usr/local/gs-spring-boot-docker-master/target/classes/hello/*.class]
10:29:06.081 [main] debug org.springframework.core.io.support.pathmatchingresourcepatternresolver - resolved location pattern [classpath*:hello/*.class] to resources [file [/usr/local/gs-spring-boot-docker-master/target/test-classes/hello/helloworldconfigurationtests.class], file [/usr/local/gs-spring-boot-docker-master/target/classes/hello/application.class]]
10:29:06.197 [main] debug org.springframework.context.annotation.classpathscanningcandidatecomponentprovider - identified candidate component class: file [/usr/local/gs-spring-boot-docker-master/target/classes/hello/application.class]
10:29:06.198 [main] info org.springframework.boot.test.context.springboottestcontextbootstrapper - found @springbootconfiguration hello.application for test class hello.helloworldconfigurationtests
10:29:06.397 [main] debug org.springframework.boot.test.context.springboottestcontextbootstrapper - @testexecutionlisteners is not present for class [hello.helloworldconfigurationtests]: using defaults.
10:29:06.398 [main] info org.springframework.boot.test.context.springboottestcontextbootstrapper - loaded default testexecutionlistener class names from location [meta-inf/spring.factories]: [org.springframework.boot.test.mock.mockito.mockitotestexecutionlistener, org.springframework.boot.test.mock.mockito.resetmockstestexecutionlistener, org.springframework.boot.test.autoconfigure.restdocs.restdocstestexecutionlistener, org.springframework.boot.test.autoconfigure.web.client.mockrestserviceserverresettestexecutionlistener, org.springframework.boot.test.autoconfigure.web.servlet.mockmvcprintonlyonfailuretestexecutionlistener, org.springframework.boot.test.autoconfigure.web.servlet.webdrivertestexecutionlistener, org.springframework.test.context.web.servlettestexecutionlistener, org.springframework.test.context.support.dirtiescontextbeforemodestestexecutionlistener, org.springframework.test.context.support.dependencyinjectiontestexecutionlistener, org.springframework.test.context.support.dirtiescontexttestexecutionlistener, org.springframework.test.context.transaction.transactionaltestexecutionlistener, org.springframework.test.context.jdbc.sqlscriptstestexecutionlistener]
10:29:06.414 [main] debug org.springframework.boot.test.context.springboottestcontextbootstrapper - skipping candidate testexecutionlistener [org.springframework.test.context.transaction.transactionaltestexecutionlistener] due to a missing dependency. specify custom listener classes or make the default listener classes and their required dependencies available. offending class: [org/springframework/transaction/transactiondefinition]
10:29:06.414 [main] debug org.springframework.boot.test.context.springboottestcontextbootstrapper - skipping candidate testexecutionlistener [org.springframework.test.context.jdbc.sqlscriptstestexecutionlistener] due to a missing dependency. specify custom listener classes or make the default listener classes and their required dependencies available. offending class: [org/springframework/transaction/interceptor/transactionattribute]
10:29:06.414 [main] info org.springframework.boot.test.context.springboottestcontextbootstrapper - using testexecutionlisteners: [org.springframework.test.context.web.servlettestexecutionlistener@443118b0, org.springframework.test.context.support.dirtiescontextbeforemodestestexecutionlistener@765d7657, org.springframework.boot.test.mock.mockito.mockitotestexecutionlistener@74235045, org.springframework.boot.test.autoconfigure.springbootdependencyinjectiontestexecutionlistener@618b19ad, org.springframework.test.context.support.dirtiescontexttestexecutionlistener@2d3379b4, org.springframework.boot.test.mock.mockito.resetmockstestexecutionlistener@30c15d8b, org.springframework.boot.test.autoconfigure.restdocs.restdocstestexecutionlistener@5e0e82ae, org.springframework.boot.test.autoconfigure.web.client.mockrestserviceserverresettestexecutionlistener@6771beb3, org.springframework.boot.test.autoconfigure.web.servlet.mockmvcprintonlyonfailuretestexecutionlistener@51399530, org.springframework.boot.test.autoconfigure.web.servlet.webdrivertestexecutionlistener@6b2ea799]
10:29:06.415 [main] debug org.springframework.test.annotation.profilevalueutils - retrieved @profilevaluesourceconfiguration [null] for test class [hello.helloworldconfigurationtests]
10:29:06.416 [main] debug org.springframework.test.annotation.profilevalueutils - retrieved profilevaluesource type [class org.springframework.test.annotation.systemprofilevaluesource] for class [hello.helloworldconfigurationtests]
10:29:06.417 [main] debug org.springframework.test.annotation.profilevalueutils - retrieved @profilevaluesourceconfiguration [null] for test class [hello.helloworldconfigurationtests]
10:29:06.417 [main] debug org.springframework.test.annotation.profilevalueutils - retrieved profilevaluesource type [class org.springframework.test.annotation.systemprofilevaluesource] for class [hello.helloworldconfigurationtests]
10:29:06.417 [main] debug org.springframework.test.annotation.profilevalueutils - retrieved @profilevaluesourceconfiguration [null] for test class [hello.helloworldconfigurationtests]
10:29:06.417 [main] debug org.springframework.test.annotation.profilevalueutils - retrieved profilevaluesource type [class org.springframework.test.annotation.systemprofilevaluesource] for class [hello.helloworldconfigurationtests]
10:29:06.420 [main] debug org.springframework.test.context.support.abstractdirtiescontexttestexecutionlistener - before test class: context [defaulttestcontext@6a6cb05c testclass = helloworldconfigurationtests, testinstance = [null], testmethod = [null], testexception = [null], mergedcontextconfiguration = [webmergedcontextconfiguration@40a4337a testclass = helloworldconfigurationtests, locations = '{}', classes = '{class hello.application}', contextinitializerclasses = '[]', activeprofiles = '{}', propertysourcelocations = '{}', propertysourceproperties = '{org.springframework.boot.test.context.springboottestcontextbootstrapper=true, server.port=0}', contextcustomizers = set[org.springframework.boot.test.context.filter.excludefiltercontextcustomizer@6950e31, org.springframework.boot.test.json.duplicatejsonobjectcontextcustomizerfactory$duplicatejsonobjectcontextcustomizer@52f759d7, org.springframework.boot.test.mock.mockito.mockitocontextcustomizer@0, org.springframework.boot.test.web.client.testresttemplatecontextcustomizer@396e2f39, org.springframework.boot.test.autoconfigure.properties.propertymappingcontextcustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.webdrivercontextcustomizerfactory$customizer@67b467e9], resourcebasepath = 'src/main/webapp', contextloader = 'org.springframework.boot.test.context.springbootcontextloader', parent = [null]], attributes = map['org.springframework.test.context.web.servlettestexecutionlistener.activatelistener' -> false]], class annotated with @dirtiescontext [true] with mode [after_class].
10:29:06.420 [main] debug org.springframework.test.annotation.profilevalueutils - retrieved @profilevaluesourceconfiguration [null] for test class [hello.helloworldconfigurationtests]
10:29:06.420 [main] debug org.springframework.test.annotation.profilevalueutils - retrieved profilevaluesource type [class org.springframework.test.annotation.systemprofilevaluesource] for class [hello.helloworldconfigurationtests]
10:29:06.428 [main] debug org.springframework.test.context.support.dependencyinjectiontestexecutionlistener - performing dependency injection for test context [[defaulttestcontext@6a6cb05c testclass = helloworldconfigurationtests, testinstance = hello.helloworldconfigurationtests@217ed35e, testmethod = [null], testexception = [null], mergedcontextconfiguration = [webmergedcontextconfiguration@40a4337a testclass = helloworldconfigurationtests, locations = '{}', classes = '{class hello.application}', contextinitializerclasses = '[]', activeprofiles = '{}', propertysourcelocations = '{}', propertysourceproperties = '{org.springframework.boot.test.context.springboottestcontextbootstrapper=true, server.port=0}', contextcustomizers = set[org.springframework.boot.test.context.filter.excludefiltercontextcustomizer@6950e31, org.springframework.boot.test.json.duplicatejsonobjectcontextcustomizerfactory$duplicatejsonobjectcontextcustomizer@52f759d7, org.springframework.boot.test.mock.mockito.mockitocontextcustomizer@0, org.springframework.boot.test.web.client.testresttemplatecontextcustomizer@396e2f39, org.springframework.boot.test.autoconfigure.properties.propertymappingcontextcustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.webdrivercontextcustomizerfactory$customizer@67b467e9], resourcebasepath = 'src/main/webapp', contextloader = 'org.springframework.boot.test.context.springbootcontextloader', parent = [null]], attributes = map['org.springframework.test.context.web.servlettestexecutionlistener.activatelistener' -> false]]].
10:29:06.456 [main] debug org.springframework.core.env.standardenvironment - adding propertysource 'systemproperties' with lowest search precedence
10:29:06.456 [main] debug org.springframework.core.env.standardenvironment - adding propertysource 'systemenvironment' with lowest search precedence
10:29:06.457 [main] debug org.springframework.core.env.standardenvironment - initialized standardenvironment with propertysources [mappropertysource@1644231115 {name='systemproperties', properties={java.runtime.name=openjdk runtime environment, sun.boot.library.path=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/amd64, java.vm.version=25.171-b10, java.vm.vendor=oracle corporation, java.vendor.url=http://java.oracle.com/, path.separator=:, java.vm.name=openjdk 64-bit server vm, file.encoding.pkg=sun.io, user.country=us, sun.java.launcher=sun_standard, sun.os.patch.level=unknown, java.vm.specification.name=java virtual machine specification, user.dir=/usr/local/gs-spring-boot-docker-master, java.runtime.version=1.8.0_171-b10, basedir=/usr/local/gs-spring-boot-docker-master, java.awt.graphicsenv=sun.awt.x11graphicsenvironment, java.endorsed.dirs=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/endorsed, os.arch=amd64, surefire.real.class.path=/usr/local/gs-spring-boot-docker-master/target/surefire/surefirebooter4703757062554335800.jar, java.io.tmpdir=/tmp, line.separator=
, java.vm.specification.vendor=oracle corporation, os.name=linux, sun.jnu.encoding=utf-8, java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib, surefire.test.class.path=/usr/local/gs-spring-boot-docker-master/target/test-classes:/usr/local/gs-spring-boot-docker-master/target/classes:/root/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.0.2.release/spring-boot-starter-web-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter/2.0.2.release/spring-boot-starter-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot/2.0.2.release/spring-boot-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.0.2.release/spring-boot-autoconfigure-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.0.2.release/spring-boot-starter-logging-2.0.2.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.10.0/log4j-to-slf4j-2.10.0.jar:/root/.m2/repository/org/apache/logging/log4j/log4j-api/2.10.0/log4j-api-2.10.0.jar:/root/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/root/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/root/.m2/repository/org/yaml/snakeyaml/1.19/snakeyaml-1.19.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.0.2.release/spring-boot-starter-json-2.0.2.release.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.5/jackson-core-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.5/jackson-datatype-jdk8-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.5/jackson-datatype-jsr310-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.5/jackson-module-parameter-names-2.9.5.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.0.2.release/spring-boot-starter-tomcat-2.0.2.release.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.31/tomcat-embed-core-8.5.31.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.5.31/tomcat-embed-el-8.5.31.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.31/tomcat-embed-websocket-8.5.31.jar:/root/.m2/repository/org/hibernate/validator/hibernate-validator/6.0.9.final/hibernate-validator-6.0.9.final.jar:/root/.m2/repository/javax/validation/validation-api/2.0.1.final/validation-api-2.0.1.final.jar:/root/.m2/repository/org/jboss/logging/jboss-logging/3.3.2.final/jboss-logging-3.3.2.final.jar:/root/.m2/repository/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/root/.m2/repository/org/springframework/spring-web/5.0.6.release/spring-web-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-beans/5.0.6.release/spring-beans-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-webmvc/5.0.6.release/spring-webmvc-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-aop/5.0.6.release/spring-aop-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-context/5.0.6.release/spring-context-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-expression/5.0.6.release/spring-expression-5.0.6.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.0.2.release/spring-boot-starter-test-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test/2.0.2.release/spring-boot-test-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.0.2.release/spring-boot-test-autoconfigure-2.0.2.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/json-smart-2.3.jar:/root/.m2/repository/net/minidev/accessors-smart/1.2/accessors-smart-1.2.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.25/slf4j-api-1.7.25.jar:/root/.m2/repository/junit/junit/4.12/junit-4.12.jar:/root/.m2/repository/org/assertj/assertj-core/3.9.1/assertj-core-3.9.1.jar:/root/.m2/repository/org/mockito/mockito-core/2.15.0/mockito-core-2.15.0.jar:/root/.m2/repository/net/bytebuddy/byte-buddy/1.7.11/byte-buddy-1.7.11.jar:/root/.m2/repository/net/bytebuddy/byte-buddy-agent/1.7.11/byte-buddy-agent-1.7.11.jar:/root/.m2/repository/org/objenesis/objenesis/2.6/objenesis-2.6.jar:/root/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/root/.m2/repository/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.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.0.6.release/spring-core-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-jcl/5.0.6.release/spring-jcl-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-test/5.0.6.release/spring-test-5.0.6.release.jar:/root/.m2/repository/org/xmlunit/xmlunit-core/2.5.1/xmlunit-core-2.5.1.jar:, java.specification.name=java platform api specification, java.class.version=52.0, sun.management.compiler=hotspot 64-bit tiered compilers, os.version=3.10.0-693.2.2.el7.x86_64, user.home=/root, user.timezone=asia/shanghai, java.awt.printerjob=sun.print.psprinterjob, file.encoding=utf-8, java.specification.version=1.8, java.class.path=/usr/local/gs-spring-boot-docker-master/target/test-classes:/usr/local/gs-spring-boot-docker-master/target/classes:/root/.m2/repository/org/springframework/boot/spring-boot-starter-web/2.0.2.release/spring-boot-starter-web-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter/2.0.2.release/spring-boot-starter-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot/2.0.2.release/spring-boot-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/2.0.2.release/spring-boot-autoconfigure-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-logging/2.0.2.release/spring-boot-starter-logging-2.0.2.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.10.0/log4j-to-slf4j-2.10.0.jar:/root/.m2/repository/org/apache/logging/log4j/log4j-api/2.10.0/log4j-api-2.10.0.jar:/root/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/root/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/root/.m2/repository/org/yaml/snakeyaml/1.19/snakeyaml-1.19.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-json/2.0.2.release/spring-boot-starter-json-2.0.2.release.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.5/jackson-databind-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/root/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.5/jackson-core-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.5/jackson-datatype-jdk8-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.5/jackson-datatype-jsr310-2.9.5.jar:/root/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.5/jackson-module-parameter-names-2.9.5.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-tomcat/2.0.2.release/spring-boot-starter-tomcat-2.0.2.release.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/8.5.31/tomcat-embed-core-8.5.31.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/8.5.31/tomcat-embed-el-8.5.31.jar:/root/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.31/tomcat-embed-websocket-8.5.31.jar:/root/.m2/repository/org/hibernate/validator/hibernate-validator/6.0.9.final/hibernate-validator-6.0.9.final.jar:/root/.m2/repository/javax/validation/validation-api/2.0.1.final/validation-api-2.0.1.final.jar:/root/.m2/repository/org/jboss/logging/jboss-logging/3.3.2.final/jboss-logging-3.3.2.final.jar:/root/.m2/repository/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/root/.m2/repository/org/springframework/spring-web/5.0.6.release/spring-web-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-beans/5.0.6.release/spring-beans-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-webmvc/5.0.6.release/spring-webmvc-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-aop/5.0.6.release/spring-aop-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-context/5.0.6.release/spring-context-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-expression/5.0.6.release/spring-expression-5.0.6.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-starter-test/2.0.2.release/spring-boot-starter-test-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test/2.0.2.release/spring-boot-test-2.0.2.release.jar:/root/.m2/repository/org/springframework/boot/spring-boot-test-autoconfigure/2.0.2.release/spring-boot-test-autoconfigure-2.0.2.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/json-smart-2.3.jar:/root/.m2/repository/net/minidev/accessors-smart/1.2/accessors-smart-1.2.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.25/slf4j-api-1.7.25.jar:/root/.m2/repository/junit/junit/4.12/junit-4.12.jar:/root/.m2/repository/org/assertj/assertj-core/3.9.1/assertj-core-3.9.1.jar:/root/.m2/repository/org/mockito/mockito-core/2.15.0/mockito-core-2.15.0.jar:/root/.m2/repository/net/bytebuddy/byte-buddy/1.7.11/byte-buddy-1.7.11.jar:/root/.m2/repository/net/bytebuddy/byte-buddy-agent/1.7.11/byte-buddy-agent-1.7.11.jar:/root/.m2/repository/org/objenesis/objenesis/2.6/objenesis-2.6.jar:/root/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/root/.m2/repository/org/hamcrest/hamcrest-library/1.3/hamcrest-library-1.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.0.6.release/spring-core-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-jcl/5.0.6.release/spring-jcl-5.0.6.release.jar:/root/.m2/repository/org/springframework/spring-test/5.0.6.release/spring-test-5.0.6.release.jar:/root/.m2/repository/org/xmlunit/xmlunit-core/2.5.1/xmlunit-core-2.5.1.jar:, user.name=root, java.vm.specification.version=1.8, sun.java.command=/usr/local/gs-spring-boot-docker-master/target/surefire/surefirebooter4703757062554335800.jar /usr/local/gs-spring-boot-docker-master/target/surefire 2018-06-21t10-29-04_776-jvmrun1 surefire2306677988440424207tmp surefire_06445366462775442424tmp, java.home=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre, sun.arch.data.model=64, user.language=en, java.specification.vendor=oracle corporation, awt.toolkit=sun.awt.x11.xtoolkit, java.vm.info=mixed mode, java.version=1.8.0_171, java.ext.dirs=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/ext:/usr/java/packages/lib/ext, sun.boot.class.path=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/resources.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/rt.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/jsse.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/jce.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/charsets.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/lib/jfr.jar:/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/classes, java.vendor=oracle corporation, localrepository=/root/.m2/repository, file.separator=/, java.vendor.url.bug=http://bugreport.sun.com/bugreport/, sun.io.unicode.encoding=unicodelittle, sun.cpu.endian=little, sun.cpu.isalist=}}, systemenvironmentpropertysource@537066525 {name='systemenvironment', properties={path=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin, histcontrol=ignoredups, lessopen=||/usr/bin/lesspipe.sh %s, shell=/bin/bash, histsize=1000, java_home=/usr/lib/jvm/java, ssh_tty=/dev/pts/0, ssh_client=49.66.150.128 7775 22, oldpwd=/usr/local/gs-spring-boot-docker-master, term=xterm, user=root, lang=en_us.utf-8, xdg_session_id=1180, ssh_connection=49.66.150.128 7775 172.17.69.217 22, mail=/var/spool/mail/root, hostname=iz2zeh5mjwg5u2vl2fawchz, m2_home=/usr/share/maven, logname=root, xdg_runtime_dir=/run/user/0, pwd=/usr/local/gs-spring-boot-docker-master, ls_colors=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:, home=/root, shlvl=3, _=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64/jre/bin/java}}]
10:29:06.458 [main] debug org.springframework.test.context.support.testpropertysourceutils - adding inlined properties to environment: {spring.jmx.enabled=false, org.springframework.boot.test.context.springboottestcontextbootstrapper=true, server.port=0}
10:29:06.458 [main] debug org.springframework.core.env.standardenvironment - adding propertysource 'inlined test properties' with highest search precedence
 
 . ____   _   __ _ _
 /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/ ___)| |_)| | | | | || (_| | ) ) ) )
 ' |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: spring boot ::  (v2.0.2.release)
 
2018-06-21 10:29:07.584 info 2207 --- [   main] hello.helloworldconfigurationtests  : starting helloworldconfigurationtests on iz2zeh5mjwg5u2vl2fawchz with pid 2207 (started by root in /usr/local/gs-spring-boot-docker-master)
2018-06-21 10:29:07.585 info 2207 --- [   main] hello.helloworldconfigurationtests  : no active profile set, falling back to default profiles: default
2018-06-21 10:29:07.677 info 2207 --- [   main] configservletwebserverapplicationcontext : refreshing org.springframework.boot.web.servlet.context.annotationconfigservletwebserverapplicationcontext@46d59067: startup date [thu jun 21 10:29:07 cst 2018]; root of context hierarchy
2018-06-21 10:29:10.849 info 2207 --- [   main] o.s.b.w.embedded.tomcat.tomcatwebserver : tomcat initialized with port(s): 0 (http)
2018-06-21 10:29:10.897 info 2207 --- [   main] o.apache.catalina.core.standardservice : starting service [tomcat]
2018-06-21 10:29:10.897 info 2207 --- [   main] org.apache.catalina.core.standardengine : starting servlet engine: apache tomcat/8.5.31
2018-06-21 10:29:10.912 info 2207 --- [ost-startstop-1] o.a.catalina.core.aprlifecyclelistener : the apr based apache tomcat native library which allows optimal performance in production environments was not found on the java.library.path: [/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib]
2018-06-21 10:29:11.108 info 2207 --- [ost-startstop-1] o.a.c.c.c.[tomcat].[localhost].[/]  : initializing spring embedded webapplicationcontext
2018-06-21 10:29:11.109 info 2207 --- [ost-startstop-1] o.s.web.context.contextloader   : root webapplicationcontext: initialization completed in 3448 ms
2018-06-21 10:29:11.319 info 2207 --- [ost-startstop-1] o.s.b.w.servlet.servletregistrationbean : servlet dispatcherservlet mapped to [/]
2018-06-21 10:29:11.322 info 2207 --- [ost-startstop-1] o.s.b.w.servlet.filterregistrationbean : mapping filter: 'characterencodingfilter' to: [/*]
2018-06-21 10:29:11.322 info 2207 --- [ost-startstop-1] o.s.b.w.servlet.filterregistrationbean : mapping filter: 'hiddenhttpmethodfilter' to: [/*]
2018-06-21 10:29:11.322 info 2207 --- [ost-startstop-1] o.s.b.w.servlet.filterregistrationbean : mapping filter: 'httpputformcontentfilter' to: [/*]
2018-06-21 10:29:11.322 info 2207 --- [ost-startstop-1] o.s.b.w.servlet.filterregistrationbean : mapping filter: 'requestcontextfilter' to: [/*]
2018-06-21 10:29:11.537 info 2207 --- [   main] o.s.w.s.handler.simpleurlhandlermapping : mapped url path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.resourcehttprequesthandler]
2018-06-21 10:29:12.139 info 2207 --- [   main] s.w.s.m.m.a.requestmappinghandleradapter : looking for @controlleradvice: org.springframework.boot.web.servlet.context.annotationconfigservletwebserverapplicationcontext@46d59067: startup date [thu jun 21 10:29:07 cst 2018]; root of context hierarchy
2018-06-21 10:29:12.280 info 2207 --- [   main] s.w.s.m.m.a.requestmappinghandlermapping : mapped "{[/]}" onto public java.lang.string hello.application.home()
2018-06-21 10:29:12.283 info 2207 --- [   main] s.w.s.m.m.a.requestmappinghandlermapping : mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.modelandview org.springframework.boot.autoconfigure.web.servlet.error.basicerrorcontroller.errorhtml(javax.servlet.http.httpservletrequest,javax.servlet.http.httpservletresponse)
2018-06-21 10:29:12.283 info 2207 --- [   main] s.w.s.m.m.a.requestmappinghandlermapping : mapped "{[/error]}" onto public org.springframework.http.responseentity<java.util.map<java.lang.string, java.lang.object>> org.springframework.boot.autoconfigure.web.servlet.error.basicerrorcontroller.error(javax.servlet.http.httpservletrequest)
2018-06-21 10:29:12.329 info 2207 --- [   main] o.s.w.s.handler.simpleurlhandlermapping : mapped url path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.resourcehttprequesthandler]
2018-06-21 10:29:12.329 info 2207 --- [   main] o.s.w.s.handler.simpleurlhandlermapping : mapped url path [/**] onto handler of type [class org.springframework.web.servlet.resource.resourcehttprequesthandler]
2018-06-21 10:29:12.888 info 2207 --- [   main] o.s.b.w.embedded.tomcat.tomcatwebserver : tomcat started on port(s): 38552 (http) with context path ''
2018-06-21 10:29:12.896 info 2207 --- [   main] hello.helloworldconfigurationtests  : started helloworldconfigurationtests in 6.436 seconds (jvm running for 7.787)
2018-06-21 10:29:13.443 info 2207 --- [o-auto-1-exec-1] o.a.c.c.c.[tomcat].[localhost].[/]  : initializing spring frameworkservlet 'dispatcherservlet'
2018-06-21 10:29:13.444 info 2207 --- [o-auto-1-exec-1] o.s.web.servlet.dispatcherservlet  : frameworkservlet 'dispatcherservlet': initialization started
2018-06-21 10:29:13.461 info 2207 --- [o-auto-1-exec-1] o.s.web.servlet.dispatcherservlet  : frameworkservlet 'dispatcherservlet': initialization completed in 17 ms
2018-06-21 10:29:13.522 info 2207 --- [   main] configservletwebserverapplicationcontext : closing org.springframework.boot.web.servlet.context.annotationconfigservletwebserverapplicationcontext@46d59067: startup date [thu jun 21 10:29:07 cst 2018]; root of context hierarchy
[info] tests run: 1, failures: 0, errors: 0, skipped: 0, time elapsed: 8.124 s - in hello.helloworldconfigurationtests
[info]
[info] results:
[info]
[info] tests run: 1, failures: 0, errors: 0, skipped: 0
[info]
[info]
[info] --- maven-jar-plugin:3.0.2:jar (default-jar) @ gs-spring-boot-docker-master ---
[info] building jar: /usr/local/gs-spring-boot-docker-master/target/gs-spring-boot-docker-master-0.0.1-snapshot.jar
[info]
[info] --- spring-boot-maven-plugin:2.0.2.release:repackage (default) @ gs-spring-boot-docker-master ---
[info]
[info] --- docker-maven-plugin:0.4.13:build (default-cli) @ gs-spring-boot-docker-master ---
slf4j: failed to load class "org.slf4j.impl.staticloggerbinder".
slf4j: defaulting to no-operation (nop) logger implementation
slf4j: see http://www.slf4j.org/codes.html#staticloggerbinder for further details.
[info] copying /usr/local/gs-spring-boot-docker-master/target/gs-spring-boot-docker-master-0.0.1-snapshot.jar -> /usr/local/gs-spring-boot-docker-master/target/docker/gs-spring-boot-docker-master-0.0.1-snapshot.jar
[info] copying src/main/docker/dockerfile -> /usr/local/gs-spring-boot-docker-master/target/docker/dockerfile
[info] building image springio/gs-spring-boot-docker-master
step 1/6 : from frolvlad/alpine-oraclejdk8:slim
 ---> d181699b91d1
step 2/6 : volume /tmp
 ---> using cache
 ---> b286013f5637
step 3/6 : add gs-spring-boot-docker-master-0.0.1-snapshot.jar app.jar
 ---> fa57b59bd6ce
removing intermediate container 5e8f920aaf0b
step 4/6 : run sh -c 'touch /app.jar'
 ---> running in 262ca4a9b39d
progressmessage{id=null, status=null, stream=null, error=null, progress=null, progressdetail=null}
 
 ---> 8b562204cb2c
removing intermediate container 262ca4a9b39d
step 5/6 : env java_opts ""
 ---> running in 19a713bcc1fa
 ---> 772752e84c58
removing intermediate container 19a713bcc1fa
step 6/6 : entrypoint sh -c java $java_opts -djava.security.egd=file:/dev/./urandom -jar /app.jar
 ---> running in e43743f6b521
 ---> 831237777bc5
removing intermediate container e43743f6b521
successfully built 831237777bc5
[info] built springio/gs-spring-boot-docker-master
[info] ------------------------------------------------------------------------
[info] build success
[info] ------------------------------------------------------------------------
[info] total time: 32.046s
[info] finished at: thu jun 21 10:29:30 cst 2018
[info] final memory: 34m/83m
[info] ------------------------------------------------------------------------

看到build success說明該項目的鏡像創(chuàng)建成功,查看一下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[root@iz2zeh5mjwg5u2vl2fawchz gs-spring-boot-docker-master]# docker images
repository           tag     image id   created    size
springio/gs-spring-boot-docker-master    latest    ab5a39fb7e76  12 minutes ago  200 mb
hello_springboot          0.0.1    bfda58a07fad  about an hour ago 184 mb
hello_springboot          latest    6f7ebf23d1d8  about an hour ago 184 mb
xbf/hello-nginx          latest    2230ac934a5f  2 days ago   179 mb
hello_docker           latest    65d690c9d782  2 days ago   4.15 mb
docker.io/openjdk         8-jdk-alpine  6a6a75aac6c9  3 days ago   102 mb
docker.io/ubuntu          latest    113a43faa138  13 days ago   81.2 mb
docker.io/nginx          latest    cd5239a0906a  13 days ago   109 mb
docker.io/centos          latest    49f7960eb7e4  2 weeks ago   200 mb
docker.io/frolvlad/alpine-oraclejdk8     slim    d181699b91d1  4 weeks ago   168 mb
docker.io/stephenreed/jenkins-java8-maven-git  latest    3670d4afa617  2 months ago  682 mb
docker.io/alpine          latest    3fd9065eaf02  5 months ago  4.15 mb
docker.io/stephenreed/java8-jenkins-maven-git-nano latest    508ef553bf1a  3 years ago   1.5 gb

第一行就是的,運行該鏡像

?
1
[root@iz2zeh5mjwg5u2vl2fawchz gs-spring-boot-docker-master]# docker run -p 8010:8010 -t springio/gs-spring-boot-docker-master
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
. ____   _   __ _ _
 /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/ ___)| |_)| | | | | || (_| | ) ) ) )
 ' |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: spring boot ::  (v2.0.2.release)
 
2018-06-21 02:29:59.049 info 5 --- [   main] hello.application      : starting application v0.0.1-snapshot on f4e12d5ec4dc with pid 5 (/app.jar started by root in /)
2018-06-21 02:29:59.052 info 5 --- [   main] hello.application      : no active profile set, falling back to default profiles: default
2018-06-21 02:29:59.217 info 5 --- [   main] configservletwebserverapplicationcontext : refreshing org.springframework.boot.web.servlet.context.annotationconfigservletwebserverapplicationcontext@42f30e0a: startup date [thu jun 21 02:29:59 gmt 2018]; root of context hierarchy
2018-06-21 02:30:02.453 info 5 --- [   main] o.s.b.w.embedded.tomcat.tomcatwebserver : tomcat initialized with port(s): 8010 (http)
2018-06-21 02:30:02.520 info 5 --- [   main] o.apache.catalina.core.standardservice : starting service [tomcat]
2018-06-21 02:30:02.521 info 5 --- [   main] org.apache.catalina.core.standardengine : starting servlet engine: apache tomcat/8.5.31
2018-06-21 02:30:02.555 info 5 --- [ost-startstop-1] o.a.catalina.core.aprlifecyclelistener : the apr based apache tomcat native library which allows optimal performance in production environments was not found on the java.library.path: [/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib]
2018-06-21 02:30:02.759 info 5 --- [ost-startstop-1] o.a.c.c.c.[tomcat].[localhost].[/]  : initializing spring embedded webapplicationcontext
2018-06-21 02:30:02.760 info 5 --- [ost-startstop-1] o.s.web.context.contextloader   : root webapplicationcontext: initialization completed in 3545 ms
2018-06-21 02:30:02.978 info 5 --- [ost-startstop-1] o.s.b.w.servlet.servletregistrationbean : servlet dispatcherservlet mapped to [/]
2018-06-21 02:30:02.992 info 5 --- [ost-startstop-1] o.s.b.w.servlet.filterregistrationbean : mapping filter: 'characterencodingfilter' to: [/*]
2018-06-21 02:30:02.993 info 5 --- [ost-startstop-1] o.s.b.w.servlet.filterregistrationbean : mapping filter: 'hiddenhttpmethodfilter' to: [/*]
2018-06-21 02:30:02.993 info 5 --- [ost-startstop-1] o.s.b.w.servlet.filterregistrationbean : mapping filter: 'httpputformcontentfilter' to: [/*]
2018-06-21 02:30:02.993 info 5 --- [ost-startstop-1] o.s.b.w.servlet.filterregistrationbean : mapping filter: 'requestcontextfilter' to: [/*]
2018-06-21 02:30:03.249 info 5 --- [   main] o.s.w.s.handler.simpleurlhandlermapping : mapped url path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.resourcehttprequesthandler]
2018-06-21 02:30:03.735 info 5 --- [   main] s.w.s.m.m.a.requestmappinghandleradapter : looking for @controlleradvice: org.springframework.boot.web.servlet.context.annotationconfigservletwebserverapplicationcontext@42f30e0a: startup date [thu jun 21 02:29:59 gmt 2018]; root of context hierarchy
2018-06-21 02:30:03.904 info 5 --- [   main] s.w.s.m.m.a.requestmappinghandlermapping : mapped "{[/]}" onto public java.lang.string hello.application.home()
2018-06-21 02:30:03.920 info 5 --- [   main] s.w.s.m.m.a.requestmappinghandlermapping : mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.modelandview org.springframework.boot.autoconfigure.web.servlet.error.basicerrorcontroller.errorhtml(javax.servlet.http.httpservletrequest,javax.servlet.http.httpservletresponse)
2018-06-21 02:30:03.921 info 5 --- [   main] s.w.s.m.m.a.requestmappinghandlermapping : mapped "{[/error]}" onto public org.springframework.http.responseentity<java.util.map<java.lang.string, java.lang.object>> org.springframework.boot.autoconfigure.web.servlet.error.basicerrorcontroller.error(javax.servlet.http.httpservletrequest)
2018-06-21 02:30:03.952 info 5 --- [   main] o.s.w.s.handler.simpleurlhandlermapping : mapped url path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.resourcehttprequesthandler]
2018-06-21 02:30:03.953 info 5 --- [   main] o.s.w.s.handler.simpleurlhandlermapping : mapped url path [/**] onto handler of type [class org.springframework.web.servlet.resource.resourcehttprequesthandler]
2018-06-21 02:30:04.240 info 5 --- [   main] o.s.j.e.a.annotationmbeanexporter  : registering beans for jmx exposure on startup
2018-06-21 02:30:04.323 info 5 --- [   main] o.s.b.w.embedded.tomcat.tomcatwebserver : tomcat started on port(s): 8010 (http) with context path ''
2018-06-21 02:30:04.332 info 5 --- [   main] hello.application      : started application in 6.932 seconds (jvm running for 8.504)
2018-06-21 02:33:15.269 info 5 --- [nio-8010-exec-1] o.a.c.c.c.[tomcat].[localhost].[/]  : initializing spring frameworkservlet 'dispatcherservlet'
2018-06-21 02:33:15.269 info 5 --- [nio-8010-exec-1] o.s.web.servlet.dispatcherservlet  : frameworkservlet 'dispatcherservlet': initialization started
2018-06-21 02:33:15.321 info 5 --- [nio-8010-exec-1] o.s.web.servlet.dispatcherservlet  : frameworkservlet 'dispatcherservlet': initialization completed in 52 ms

看到這個spring的圖標(biāo)。就以為這我們在docker 上發(fā)布spring boot 程序已經(jīng)完成。

接下來去訪問在瀏覽器訪問,可以看到頁面 “hello docker world.” 字樣。

springboot整合docker部署實現(xiàn)兩種構(gòu)建Docker鏡像方式

參考文檔:

http://www.jfrwli.cn/article/140437.html

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持服務(wù)器之家。

原文鏈接:https://www.cnblogs.com/shamo89/p/9201513.html

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 中文av一区 | 麻豆产精国品免费 | 久久加勒比 | 狠狠干2024 | 黄篇免费观看 | www久久精品 | 男人久久天堂 | 久草热在线 | 超碰中文字幕 | 深夜精品 | 国产超碰人人爽人人做人人爱 | 亚洲va欧美va人人爽成人影院 | 国产在线一区不卡 | 91精品国产乱码久久久久久久久 | 久久av综合 | 欧美伦理电影一区二区 | 国产一区二区三区在线视频 | av看片网站 | 久久波多野结衣 | 黄色网页大全 | 一级看片 | 99精品电影 | 韩日中文字幕 | 亚洲国产精品久久久久 | 欧美日韩在线视频观看 | 欧美成人a∨高清免费观看 国产99久久 | 韩日一区二区 | av在线一区二区 | 日韩视频精品 | 91精品久久久久久久久久久久久久久 | 色中色av| 亚洲自拍小视频 | 不卡免费视频 | 免费在线观看黄色网址 | 91原创国产 | 欧美日韩中文字幕在线 | 91成人免费看| 国产精品久久久 | 日韩精品在线观看中文字幕 | 丁香综合 | 国产精品免费自拍 |