服务器之家:专注于服务器技术及软件下载分享
分类导航

云服务器|WEB服务器|FTP服务器|邮件服务器|虚拟主机|服务器安全|DNS服务器|服务器知识|Nginx|IIS|Tomcat|

服务器之家 - 服务器技术 - 服务器知识 - 将spring boot应用打入docker中运行的实现方法

将spring boot应用打入docker中运行的实现方法

2021-03-30 18:58叶长风 服务器知识

这篇文章主要介绍了将spring boot应用打入docker中运行的实现方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

这几天研究了一下将spring boot应用打入到docker中运行,先前有一个maven插件,可以直接在src/main中建一个docker文件夹,新建一个dockerfile文件,在进行编译打包之后,可以直接运行docker插件,相当于在对应的docker目录中执行 docker build .命令,会直接将当前应用打成镜像,然后运行,十分方便,但是在个人经过测试后发现,这个插件并不稳定,docker文件夹不一定每次都会打到target文件夹下,因此就会导致这个插件执行起来并没有多大用处。

因此我在后来再将spring boot应用打成镜像的时候,不再使用提供的docker maven插件,而是单独在当前项目的根目录下新建一个dockerfile文件,应用编写完了之后,直接手动执行命令将应用打成镜像,具体如下。

springboot应用

pom.xml

在这里的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
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
<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>cn.com</groupid>
 <artifactid>springbootweb</artifactid>
 <version>1.0-snapshot</version>
 <packaging>jar</packaging>
 
 <name>spring :: boot :: web</name>
 
 <parent>
  <groupid>org.springframework.boot</groupid>
  <artifactid>spring-boot-starter-parent</artifactid>
  <version>1.4.1.release</version>
  <relativepath/>
 </parent>
 
 <properties>
  <project.build.sourceencoding>utf-8</project.build.sourceencoding>
  <docker.image.prefix>springio</docker.image.prefix>
  <docker.version>0.3.8</docker.version>
  <java.version>1.8</java.version>
 </properties>
 
 <dependencies>
  <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-starter-web</artifactid>
  </dependency>
 </dependencies>
 
 
 
 <repositories>
  <repository>
   <id>spring-snapshots</id>
   <url>http://repo.spring.io/snapshot</url>
   <snapshots>
    <enabled>true</enabled>
   </snapshots>
  </repository>
  <repository>
   <id>spring-milestones</id>
   <url>http://repo.spring.io/milestone</url>
   <snapshots>
    <enabled>true</enabled>
   </snapshots>
  </repository>
 </repositories>
 
 <pluginrepositories>
  <pluginrepository>
   <id>spring-snapshots</id>
   <url>http://repo.spring.io/snapshot</url>
  </pluginrepository>
  <pluginrepository>
   <id>spring-milestones</id>
   <url>http://repo.spring.io/milestone</url>
  </pluginrepository>
 </pluginrepositories>
 
 
 <build>
  <plugins>
   <plugin>
    <groupid>org.apache.maven.plugins</groupid>
    <artifactid>maven-compiler-plugin</artifactid>
    <version>3.2</version>
    <configuration>
     <compilerargument>-parameters</compilerargument>
     <source>1.8</source>
     <target>1.8</target>
     <encoding>utf-8</encoding>
    </configuration>
   </plugin>
   <plugin>
    <groupid>org.apache.maven.plugins</groupid>
    <artifactid>maven-surefire-plugin</artifactid>
    <version>2.18.1</version>
    <configuration>
     <skiptests>true</skiptests>
    </configuration>
   </plugin>
 
   <plugin>
    <groupid>org.apache.maven.plugins</groupid>
    <artifactid>maven-resources-plugin</artifactid>
    <version>2.6</version>
    <configuration>
     <encoding>utf-8</encoding>
    </configuration>
   </plugin>
   <plugin>
    <groupid>org.springframework.boot</groupid>
    <artifactid>spring-boot-maven-plugin</artifactid>
    <!--<version>${spring.boot.version}</version>-->
    <configuration>
     <mainclass>cn.com.springbootwebapplication</mainclass>
     <layout>zip</layout>
    </configuration>
    <executions>
     <execution>
      <goals>
       <goal>
        repackage
       </goal>
      </goals>
     </execution>
    </executions>
   </plugin>
  </plugins>
 </build>
 
 <profiles>
  <profile>
   <id>jdk1.8</id>
   <activation>
    <activebydefault>true</activebydefault>
   </activation>
   <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <encoding>utf-8</encoding>
   </properties>
  </profile>
 </profiles>
</project>

这里的提供了几个仓库的地址,原因是因为本文中将springboot应用打进docker的时候,是直接将源码一起打进去,然后在里面进行编译打包之后进行运行,如果不提供仓库地址下载jar包,那么就会从中央仓库拉取依赖,那么速度会非常慢并且会出现拉取超时导致应用使用不了的情况,因此提供几个其他仓库地址下载依赖,另外这里有一个插件,使用这个插件后可以直接以 mvn spring-boot:run的形式运行应用,所以我也就没决定使用java -jar xxx.jar的方式来运行应用。

application和controller

这个springboot应用相当简单,提供一个简单的controller,里面有一个类似与hello world的接口,如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.com.controllers;
 
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.restcontroller;
 
import java.util.hashmap;
import java.util.map;
 
/**
 * created by xiaxuan on 16/11/27.
 */
@restcontroller
public class indexcontroller {
 
  @requestmapping(value = "/index", produces = "application/json;charset=utf-8")
  public object index() {
    map<string, object> result = new hashmap<string, object>();
    result.put("msg", "hello world");
    return result;
  }
}

提供一个简单的helloworl的方法。

以下是application启动类:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cn.com;
 
import org.springframework.boot.springapplication;
import org.springframework.boot.autoconfigure.springbootapplication;
 
/**
 * created by xiaxuan on 16/11/27.
 */
@springbootapplication
public class springbootwebapplication {
 
  public static void main(string[] args) {
    springapplication.run(springbootwebapplication.class, args);
  }
}

正常的spring boot的启动中,相当简单,直接启动springbootwebapplication启动类即可,但是在docker容器中运行的话,则没有这么简单,看下下面的这个dockerfile文件。

dockerfile文件

dockerfile文件也比较简单,如下:

?
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
# base image
from java:8
 
# maintainer
maintainer bingwenwuhen bingwenwuhen@163.com
 
# update packages and install maven
 
run \
 export debian_frontend=noninteractive && \
 sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \
 apt-get update && \
 apt-get -y upgrade && \
 apt-get install -y vim wget curl maven
 
# attach volumes
volume /vol/development
 
 
# create working directory
run mkdir -p /vol/development
run mkdir -p /vol/development/src
workdir /vol/development
 
copy ./src /vol/development/src/
copy ./pom.xml /vol/development/
 
# maven exec
cmd ["mvn", "clean", "install", "spring-boot:run"]

dockerfile中以java8为基础镜像,同时在基础镜像中还需要单独安装maven,因为在我们的dockerfile文件中,是将整个源码都打进镜像之中,在这里没有只将生成的jar打进镜像中,所以这就是之前所说的需要在pom.xml中指定仓库,如果不指定仓库,则在镜像中拉取依赖的时候,会从中央仓库拉取依赖,那么会非常慢,我之前试过几次,基本拉取过程中,都超时失败了,所以在这里指定仓库拉取依赖。

构建镜像

现在在目录下面执行命令,docker build -t="bingwenwuhen/springboot01" .构建镜像,如下:

将spring boot应用打入docker中运行的实现方法

在打成镜像之后,运行
docker run -d --name springboot01 -p 8080:8080 bingwenwuhe/spingboot01
以上命令为运行该镜像生成一个容器,映射端口为8080,名字为springboot01,

现在docker logs xxxxx查看容器日志:

将spring boot应用打入docker中运行的实现方法

现在这个容器已经运行起来了。

请求接口

在请求接口前,需要先查看docker虚拟机的ip为多少,本机为192.168.99.100,请求接口命令为:

?
1
curl http://192.168.99.100:8080/index

响应为:

?
1
2
3
{
  "msg":"hello world"
}

请求成功,以上,springboot应用打进docker中运行也就成功了。

问题

  • 在将源码打进镜像中,mvn clean install 编译运行的时候,下载的jar包实在太多,等的时间太长,很容易中断,所以十分不推荐这种方式的运行。
  • 源码本质上不应该打进镜像之中,只需要将运行的jar包打进镜像之中就可以了。

源码

我将源码上传到github上,有需要的可以自己下载。

源码下载

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/u012734441/article/details/53462308

延伸 · 阅读

精彩推荐