In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article focuses on "how to use Dockerfile to deploy SpringBoot projects", interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to deploy a SpringBoot project using Dockerfile.
1. Create a springbooot project and package it into a jar package
2. Create a folder in linux to do docker testing
[root@izwz90lvzs7171wgdhul8az ~] # mkdir / root/docker_test
3. Upload the jar package to linux
Create a folder where jar packages are stored
[root@izwz90lvzs7171wgdhul8az docker_test] # mkdir / root/docker_test/jar
Then upload the jar package to the folder above using xshell
4. Write dockerfile files
# create a new image based on java image from java:8# author maintainer howinfun# add the jar package to the container and rename it to app.jaradd jar/app.jar / root/docker_test/app.jar# run the jar package entrypoint ["nohup", "java", "- jar", "/ root/docker_test/app.jar", "&"]
Note: add and copy instructions are used in the same way, except that add supports extracting and decompressing archived files (tar, gzip, bzip2, etc). It is also important to note that the directory that the copy directive needs to copy must be placed in the sibling directory of the dockerfile file.
5. Make an image
[root@izwz90lvzs7171wgdhul8az docker_test] # docker build-t sbdemo.
Command parameters:
-t: specify a new image name
.: indicates that dockfile is in the current path
If our dockerfile file path is not in this directory, or if we have another file name, we can give the path to the dockerfile file separately with the-f option
[root@izwz90lvzs7171wgdhul8az docker_test] # docker build-t sbdemo-f / root/docker_test/dockerfile / root/docker_test/
Command parameters:
-f: the first parameter is the path of dockerfile. The second parameter is to view the image created by us through the docker images command after the folder where dockerfile is created:
[root@izwz90lvzs7171wgdhul8az docker_test] # docker images | grep sbdemosbdemo latest 7efac46ef997 4 hours ago 686mb
6. Start the container
[root@izwz90lvzs7171wgdhul8az docker_test] # docker run-d-p 8888Switzerland 8888-- name mysbdemo sbdemo:latest
Command parameters:
-d: running in the background
-p: expose the specified port number
-- name: name the container
After startup, you can view the running containers through docker ps:
[root@izwz90lvzs7171wgdhul8az docker_test] # docker pscontainer id image command created status ports names5096c8c7b36f sbdemo "nohup java-jar / ro?? 4 seconds ago up 2 seconds 0.0.0.0 purl 8888-> 8888/tcp mysbdemo
7. View the container startup log
We can view the log of the specified container through docker logs:
[root@izwz90lvzs7171wgdhul8az docker_test] # docker logs mysbdemo. _ _ _ / / _ _ _ (() _ _ _ (()\ _ _ _ |'_ | |'_ / _ _ `|\ / _ _ _) | | | (_ | |) '| _ |. _ _ | _ | | _ | _ | | _\ _ _ | | / = | _ | = | _ _ / /:: spring boot:: (v2.1.6.release) 2019-10-11 02 info 46.264 info 1-[main] com.hyf.databaseapplication: starting databaseapplication v0.0.1-snapshot on 6d85ac5d8751 with pid 1 (/ root/docker_test/app.jar started by root in /) 2019-10-11 0215 debug 1-- [main] com.hyf.databaseapplication: running with spring boot v2.1.6.release Spring v5.1.8.release2019-10-11 02 info 10 com.hyf.databaseapplication 46.268 info 1-[main] o.m.s.mapper.classpathmapperscanner: skipping mapperfactorybean with name 'bookmapper' and' com.hyf.mapper.bookmapper' mapperinterface. Bean already defined with the same nameplate 2019-10-11 02 main main o.m.s.mapper.classpathmapperscanner: no mybatis mapper was found in'[com.hyf] 'package. Please check your configuration.2019-10-11 02 main 10 14 49 24 6 info 1-[main] .s.d.r.c.repositoryorganizationdelegate: multiple spring data modules found Entering strict repositoryconfiguration modehorse 2019-10-11 02 info 10 bootstrapping spring data repositories in default mode.2019 49.257 info 1-[main] .s.d.r.c.repositorydelegate: bootstrapping spring data repositories in default mode.2019-10-11 02 main 10 bootstrapping spring data repositories in default mode.2019-10-11 02 Vera 10 Vera 49.328 delegate 1-[main] .d.r.c .repositorydelegate. Found 0 repository interfaces.2019-10-11 02 info 10 main trationdelegate$beanpostprocessorchecker: bean 'org.springframework.transaction.annotation.proxytransactionmanagementconfiguration' of type [org.springframework.transaction.annotation.proxytransactionmanagementconfiguration$$enhancerbyspringcglib$$2c6b335] is not eligible for getting processed by all beanpostprocessors (for example: not eligible for auto-proxying) 2019-10-11 02 info 10 info 1-[main] o.s.b.w.embedded.tomcat.tomcatwebserver: tomcat initialized with port (s) ): 8888 (http) 2019-10-11 02 info 10 o.apache.catalina.core.standardservice: starting service [tomcat] 2019-10-11 02 o.apache.catalina.core.standardservice 10 o.apache.catalina.core.standardservice 51.359 info 1-[main] org.apache.catalina.core.standardengine: starting servlet engine: [apache tomcat/9.0.21] 2019-10-11 02 info 1051.778 info 1-- [main] o .a.c.c.[ tomcat] .[ localhost]. [/]: initializing spring embedded webapplicationcontext2019-10-11 02 o.s.web.context.contextloader 10 o.s.web.context.contextloader 51.779 info 1-[main] o.s.web.context.contextloader: initialization completed in 5104 ms2019-10-11 02 Vista 54.164 info 1-[main] o.s.s.concurrent.threadpooltaskexecutor: initializing executorservice 'applicationtaskexecutor'2019-10-11 02:10:56. 081 info 1-[main] o.s.b.w.embedded.tomcat.tomcatwebserver: tomcat started on port (s): 8888 (http) with context path''2019-10-11 02 Gang 10 info 56.090 info 1-[main] com.hyf.databaseapplication: started databaseapplication in 11.49 seconds (jvm running for 12.624)
8. Access interface
After the container starts, we try to use postman or other http tools to access the application interface deployed in the container.
At this point, I believe you have a deeper understanding of "how to deploy a SpringBoot project using Dockerfile". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.