Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to deploy a SpringBoot application in Docker

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article will explain in detail how to deploy a SpringBoot application in Docker. The content of the article is of high quality, so the editor will share it with you for reference. I hope you will have some understanding of the relevant knowledge after reading this article.

Quickly build a springboot project by entering http://start.spring.io, and using Maven

Create a HelloWorldController to receive requests and return responses

@ RequestMapping (value = "hello") @ RestControllerpublic class HelloWorldController {@ RequestMapping (value = "/ {msg}") public String hello (@ PathVariable String msg) {return "Hello:\ t" + msg;}}

Start the SpringBoot project and send a request 'http://localhost:8080/hello/CainGao', to view the returned result

The construction of the current project is complete. Image name is supported by adding docker to pom.xml

Springboot

Add plug-in

Org.springframework.boot spring-boot-maven-plugin com.spotify docker-maven-plugin 0.4.13 ${docker.image.prefix} / ${project.artifactId} src/main/docker / ${project.build.directory} ${project.build.finalName} .jar

Create Dockerfile

FROM openjdk:11VOLUME / tmpADD demo-0.0.1-SNAPSHOT.jar / demo.jarENTRYPOINT ["java", "- Djava.security.egd=file:/dev/./urandom", "- jar", "/ demo.jar"] about how to deploy a SpringBoot application in Docker is shared here. I hope the above content can be helpful to you and learn more. If you think the article is good, you can share it for more people to see.

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.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report