chore: change service name

This commit is contained in:
TakahashiNg
2026-03-18 03:49:12 +00:00
parent c0d61e733d
commit 1816687ec7
14 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ Or, if you don't have GraalVM installed, you can run the native executable build
./mvnw package -Dnative -Dquarkus.native.container-build=true ./mvnw package -Dnative -Dquarkus.native.container-build=true
``` ```
You can then execute your native executable with: `./target/order-service-1.0.0-SNAPSHOT-runner` You can then execute your native executable with: `./target/user-service-1.0.0-SNAPSHOT-runner`
If you want to learn more about building native executables, please consult <https://quarkus.io/guides/maven-tooling>. If you want to learn more about building native executables, please consult <https://quarkus.io/guides/maven-tooling>.
View File
View File
@@ -2,7 +2,7 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.drinkool</groupId> <groupId>com.drinkool</groupId>
<artifactId>order-service</artifactId> <artifactId>user-service</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
<packaging>quarkus</packaging> <packaging>quarkus</packaging>
@@ -7,11 +7,11 @@
# #
# Then, build the image with: # Then, build the image with:
# #
# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/order-service-jvm . # docker build -f src/main/docker/Dockerfile.jvm -t quarkus/user-service-jvm .
# #
# Then run the container using: # Then run the container using:
# #
# docker run -i --rm -p 8080:8080 quarkus/order-service-jvm # docker run -i --rm -p 8080:8080 quarkus/user-service-jvm
# #
# If you want to include the debug port into your docker image # If you want to include the debug port into your docker image
# you will have to expose the debug port (default 5005 being the default) like this : EXPOSE 8080 5005. # you will have to expose the debug port (default 5005 being the default) like this : EXPOSE 8080 5005.
@@ -20,7 +20,7 @@
# #
# Then run the container using : # Then run the container using :
# #
# docker run -i --rm -p 8080:8080 quarkus/order-service-jvm # docker run -i --rm -p 8080:8080 quarkus/user-service-jvm
# #
# This image uses the `run-java.sh` script to run the application. # This image uses the `run-java.sh` script to run the application.
# This scripts computes the command line to execute your Java application, and # This scripts computes the command line to execute your Java application, and
@@ -7,11 +7,11 @@
# #
# Then, build the image with: # Then, build the image with:
# #
# docker build -f src/main/docker/Dockerfile.legacy-jar -t quarkus/order-service-legacy-jar . # docker build -f src/main/docker/Dockerfile.legacy-jar -t quarkus/user-service-legacy-jar .
# #
# Then run the container using: # Then run the container using:
# #
# docker run -i --rm -p 8080:8080 quarkus/order-service-legacy-jar # docker run -i --rm -p 8080:8080 quarkus/user-service-legacy-jar
# #
# If you want to include the debug port into your docker image # If you want to include the debug port into your docker image
# you will have to expose the debug port (default 5005 being the default) like this : EXPOSE 8080 5005. # you will have to expose the debug port (default 5005 being the default) like this : EXPOSE 8080 5005.
@@ -20,7 +20,7 @@
# #
# Then run the container using : # Then run the container using :
# #
# docker run -i --rm -p 8080:8080 quarkus/order-service-legacy-jar # docker run -i --rm -p 8080:8080 quarkus/user-service-legacy-jar
# #
# This image uses the `run-java.sh` script to run the application. # This image uses the `run-java.sh` script to run the application.
# This scripts computes the command line to execute your Java application, and # This scripts computes the command line to execute your Java application, and
@@ -7,11 +7,11 @@
# #
# Then, build the image with: # Then, build the image with:
# #
# docker build -f src/main/docker/Dockerfile.native -t quarkus/order-service . # docker build -f src/main/docker/Dockerfile.native -t quarkus/user-service .
# #
# Then run the container using: # Then run the container using:
# #
# docker run -i --rm -p 8080:8080 quarkus/order-service # docker run -i --rm -p 8080:8080 quarkus/user-service
# #
# The ` registry.access.redhat.com/ubi9/ubi-minimal:9.7` base image is based on UBI 9. # The ` registry.access.redhat.com/ubi9/ubi-minimal:9.7` base image is based on UBI 9.
# To use UBI 8, switch to `quay.io/ubi8/ubi-minimal:8.10`. # To use UBI 8, switch to `quay.io/ubi8/ubi-minimal:8.10`.
@@ -10,11 +10,11 @@
# #
# Then, build the image with: # Then, build the image with:
# #
# docker build -f src/main/docker/Dockerfile.native-micro -t quarkus/order-service . # docker build -f src/main/docker/Dockerfile.native-micro -t quarkus/user-service .
# #
# Then run the container using: # Then run the container using:
# #
# docker run -i --rm -p 8080:8080 quarkus/order-service # docker run -i --rm -p 8080:8080 quarkus/user-service
# #
# The `quay.io/quarkus/ubi9-quarkus-micro-image:2.0` base image is based on UBI 9. # The `quay.io/quarkus/ubi9-quarkus-micro-image:2.0` base image is based on UBI 9.
# To use UBI 8, switch to `quay.io/quarkus/quarkus-micro-image:2.0`. # To use UBI 8, switch to `quay.io/quarkus/quarkus-micro-image:2.0`.