Skip to content

Commit 6fa159b

Browse files
author
Amran Hossain
committed
Dockerfile file add and others issue fix
1 parent f0dd3db commit 6fa159b

File tree

4 files changed

+69
-44
lines changed

4 files changed

+69
-44
lines changed

Dockerfile

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#MAVN Config
2+
FROM maven:3.9.9-eclipse-temurin-23-alpine AS build
3+
ENV HOME=/usr/app
4+
RUN mkdir -p $HOME
5+
WORKDIR $HOME
6+
ADD pom.xml $HOME
7+
RUN mvn verify --fail-never
8+
ADD . $HOME
9+
RUN mvn package
10+
11+
12+
FROM eclipse-temurin:23-jre AS builder
13+
WORKDIR application
14+
COPY --from=build /usr/app/target/async-api-async-db-0.0.1-SNAPSHOT.jar application.jar
15+
#Expose Port
16+
EXPOSE 8080
17+
RUN java -Djarmode=layertools -jar application.jar extract
18+
19+
FROM eclipse-temurin:23
20+
#Copy layers from build
21+
WORKDIR application
22+
23+
COPY --from=builder application/dependencies/ ./
24+
COPY --from=builder application/spring-boot-loader/ ./
25+
COPY --from=builder application/snapshot-dependencies/ ./
26+
COPY --from=builder application/application/ ./
27+
# set entrypoint layeres spring boot application
28+
ENTRYPOINT ["java", "org.springframework.boot.loader.launch.JarLauncher"]

pom.xml

+25-28
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,8 @@
1212
<artifactId>async-api-async-db</artifactId>
1313
<version>0.0.1-SNAPSHOT</version>
1414
<name>async-api-async-db</name>
15-
<description>async-api-async-db</description>
16-
<url/>
17-
<licenses>
18-
<license/>
19-
</licenses>
20-
<developers>
21-
<developer/>
22-
</developers>
23-
<scm>
24-
<connection/>
25-
<developerConnection/>
26-
<tag/>
27-
<url/>
28-
</scm>
15+
<packaging>jar</packaging>
16+
2917
<properties>
3018
<java.version>23</java.version>
3119
</properties>
@@ -56,6 +44,8 @@
5644
<dependency>
5745
<groupId>org.projectlombok</groupId>
5846
<artifactId>lombok</artifactId>
47+
<version>1.18.34</version>
48+
<scope>provided</scope>
5949
<optional>true</optional>
6050
</dependency>
6151
<dependency>
@@ -85,30 +75,37 @@
8575
<artifactId>r2dbc-mysql</artifactId>
8676
<scope>runtime</scope>
8777
</dependency>
88-
<dependency>
89-
<groupId>org.springframework.boot</groupId>
90-
<artifactId>spring-boot-starter-test</artifactId>
91-
<scope>test</scope>
92-
</dependency>
93-
<dependency>
94-
<groupId>io.projectreactor</groupId>
95-
<artifactId>reactor-test</artifactId>
96-
<scope>test</scope>
97-
</dependency>
78+
<!-- <dependency>-->
79+
<!-- <groupId>org.springframework.boot</groupId>-->
80+
<!-- <artifactId>spring-boot-starter-test</artifactId>-->
81+
<!-- <scope>test</scope>-->
82+
<!-- </dependency>-->
83+
<!-- <dependency>-->
84+
<!-- <groupId>io.projectreactor</groupId>-->
85+
<!-- <artifactId>reactor-test</artifactId>-->
86+
<!-- <scope>test</scope>-->
87+
<!-- </dependency>-->
9888
</dependencies>
9989

10090
<build>
10191
<plugins>
10292
<plugin>
10393
<groupId>org.springframework.boot</groupId>
10494
<artifactId>spring-boot-maven-plugin</artifactId>
95+
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-compiler-plugin</artifactId>
99+
<version>3.13.0</version>
105100
<configuration>
106-
<excludes>
107-
<exclude>
101+
<encoding>UTF-8</encoding>
102+
<annotationProcessorPaths>
103+
<path>
108104
<groupId>org.projectlombok</groupId>
109105
<artifactId>lombok</artifactId>
110-
</exclude>
111-
</excludes>
106+
<version>1.18.34</version>
107+
</path>
108+
</annotationProcessorPaths>
112109
</configuration>
113110
</plugin>
114111
</plugins>

src/main/java/com/amran/async/controller/ProductController.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,19 @@ public Mono<Product> getProductById(@PathVariable("id") Long id) {
4343

4444
@PostMapping("/product")
4545
@ResponseStatus(HttpStatus.CREATED)
46-
public Mono<Product> createTutorial(@RequestBody Product product) {
46+
public Mono<Product> createProduct(@RequestBody Product product) {
4747
return productService.addProduct(product);
4848
}
4949

5050
@PutMapping("/product/{id}")
5151
@ResponseStatus(HttpStatus.OK)
52-
public Mono<Product> updateTutorial(@PathVariable("id") Long id, @RequestBody Product product) {
52+
public Mono<Product> updateProduct(@PathVariable("id") Long id, @RequestBody Product product) {
5353
return productService.updateProduct(product, id);
5454
}
5555

5656
@DeleteMapping("/product/{id}")
5757
@ResponseStatus(HttpStatus.NO_CONTENT)
58-
public Mono<Void> deleteTutorial(@PathVariable("id") Long id) {
58+
public Mono<Void> deleteProduct(@PathVariable("id") Long id) {
5959
return productService.deleteProduct(id);
6060
}
6161
}
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
package com.amran.async;
2-
3-
import org.junit.jupiter.api.Test;
4-
import org.springframework.boot.test.context.SpringBootTest;
5-
6-
@SpringBootTest
7-
class AsyncApiAsyncDbApplicationTests {
8-
9-
@Test
10-
void contextLoads() {
11-
}
12-
13-
}
1+
//package com.amran.async;
2+
//
3+
//import org.junit.jupiter.api.Test;
4+
//import org.springframework.boot.test.context.SpringBootTest;
5+
//
6+
//@SpringBootTest
7+
//class AsyncApiAsyncDbApplicationTests {
8+
//
9+
// @Test
10+
// void contextLoads() {
11+
// }
12+
//
13+
//}

0 commit comments

Comments
 (0)