The official Spring Boot docker image.
Maintained by: openEuler CloudNative SIG.
Where to get help: openEuler CloudNative SIG, openEuler.
Current Spring Boot docker images are built on the openEuler. This repository is free to use and exempted from per-user rate limits.
Spring Boot is an open-source, opinionated Java framework designed to simplify the development of standalone, production-grade Spring-based applications. It extends the Spring Framework by providing features that streamline and accelerate the development process, particularly for microservices and web application
Learn more on Spring Boot Website.
The tag of each spring-boot docker image is consist of the version of spring-boot and the version of basic image. The details are as follows
| Tag | Currently | Architectures |
|---|---|---|
| 4.0.2-oe2403sp4 | spring 4.0.2 on openEuler 24.03-LTS-SP4 | amd64, arm64 |
| 4.0.2-oe2403sp3 | spring 4.0.2 on openEuler 24.03-LTS-SP3 | amd64, arm64 |
| 3.5.7-oe2403sp2 | spring 3.5.7 on openEuler 24.03-LTS-SP2 | amd64, arm64 |
| 3.4.4-oe2403sp1 | Spring Boot 3.4.4 on openEuler 24.03-LTS-SP1 | amd64, arm64 |
| 3.5.4-oe2403sp2 | Spring Boot 3.5.4 on openEuler 24.03-LTS-SP2 | amd64, arm64 |
In this usage, users can select the corresponding {Version} based on their requirements.
Add Spring Boot to your project
Using Maven:
Add the spring-boot-starter-parent and a starter dependency to your pom.xml:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>${Version}</version> <!-- Replace with latest -->
</parent>
<dependencies>
<!-- Spring Boot Web Starter -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
Using Gradle:
plugins {
id 'org.springframework.boot' version '${Version}'
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
}
Create an Application class
Create a simple application class with a main method:
package com.example;
import org.spring-boot.*;
import org.spring-boot.impl.StdSchedulerFactory;
package com.spring.boot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.*;
@SpringBootApplication
@RestController
public class Application {
@RequestMapping("/")
public String home() {
return "Hello World!";
}
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
Run the application
Run your application from your IDE or with maven:
./mvnw spring-boot:run
Or with Gradle:
./gradlew bootRun
Open your website and visit: http://localhost:8080/, you should see:
Hello World!
If you have any questions or want to use some special features, please submit an issue or a pull request on openeuler-docker-images.
Content type
Image
Digest
sha256:7b8b5b67a…
Size
281.4 MB
Last updated
2 months ago
docker pull openeuler/spring-bootPulls:
11
Sep 7 to Sep 13