-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
308f42f
commit 28b8965
Showing
146 changed files
with
7,461 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
java -Dfile.encoding=UTF8 -jar ../target/nop-cli-2.0.0-BETA.1.jar gen -t=v:/nop/templates/orm ../../nop-demo/nop-ddd-demo/model/demo-ddd.orm.xlsx -o=target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
java -Dfile.encoding=UTF8 -Dnop.orm.check-entity-loop-dependency=false -jar ../target/nop-cli-2.0.0-BETA.1.jar reverse-db ddd -c=com.mysql.cj.jdbc.Driver --username=nop --password=nop-test --jdbcUrl="jdbc:mysql://127.0.0.1:3306/ddd?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
* | ||
!target/*-runner | ||
!target/*-runner.jar | ||
!target/lib/* | ||
!target/quarkus-app/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
*.xml text eol=lf | ||
*.yaml text eol=lf | ||
*.xlib text eol=lf | ||
*.xdef text eol=lf | ||
*.xmeta text eol=lf | ||
*.java text eol=lf | ||
*.xwf text eol=lf | ||
*.xgen text eol=lf | ||
*.xrun text eol=lf | ||
*.xtask text eol=lf | ||
*.sql text eol=lf | ||
*.json text eol=lf | ||
*.json5 text eol=lf | ||
*.xbiz text eol=lf | ||
*.interp text eol=lf | ||
*.tokens text eol=lf | ||
*.xpl text eol=lf | ||
*.md text eol=lf | ||
*.csv text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#Maven | ||
target/ | ||
pom.xml.tag | ||
pom.xml.releaseBackup | ||
pom.xml.versionsBackup | ||
release.properties | ||
.flattened-pom.xml | ||
|
||
# Eclipse | ||
.project | ||
.classpath | ||
.settings/ | ||
bin/ | ||
|
||
# IntelliJ | ||
.idea | ||
*.ipr | ||
*.iml | ||
*.iws | ||
|
||
# NetBeans | ||
nb-configuration.xml | ||
|
||
# Visual Studio Code | ||
.vscode | ||
.factorypath | ||
|
||
# OSX | ||
.DS_Store | ||
|
||
# Vim | ||
*.swp | ||
*.swo | ||
|
||
# patch | ||
*.orig | ||
*.rej | ||
|
||
# Plugin directory | ||
/.quarkus/cli/plugins/ | ||
|
||
_dump | ||
/db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# 说明 | ||
|
||
dddsample项目由DDD原书作者Eric Evans的公司Domain Language与瑞典软件咨询公司Citerus共同合作完成的DDD原理演示项目。 | ||
|
||
github地址:[https://github.com/citerus/dddsample-core](https://github.com/citerus/dddsample-core) | ||
|
||
该项目模拟了一个货运管理系统,用于处理货物(Cargo)的预订、路线安排、跟踪等活动。详细介绍可以参见[解读DDD原书配套的项目示例(一): 代码结构](https://zhuanlan.zhihu.com/p/721441909) | ||
|
||
`nop-ddd-demo`基于Nop平台的基础设施实现了同样的业务功能,可以和dddsample的实现对比来感受Nop平台的不同之处。 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>app.demo</groupId> | ||
|
||
<artifactId>demo-ddd-api</artifactId> | ||
|
||
<version>1.0.0-SNAPSHOT</version> | ||
|
||
<properties> | ||
<nop-entropy.version>2.0.0-SNAPSHOT</nop-entropy.version> | ||
<java.version>11</java.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<maven.compiler.source>${java.version}</maven.compiler.source> | ||
<maven.compiler.target>${java.version}</maven.compiler.target> | ||
<maven.compiler.release>${java.version}</maven.compiler.release> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.github.entropy-cloud</groupId> | ||
<artifactId>nop-api-core</artifactId> | ||
<version>${nop-entropy.version}</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<version>4.0.0-M2</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-project-info-reports-plugin</artifactId> | ||
<version>3.3.0</version> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
|
||
<parent> | ||
<artifactId>demo-ddd</artifactId> | ||
<groupId>app.demo</groupId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>demo-ddd-app</artifactId> | ||
|
||
<properties> | ||
<maven.deploy.skip>true</maven.deploy.skip> | ||
<maven.install.skip>true</maven.install.skip> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.github.entropy-cloud</groupId> | ||
<artifactId>nop-quarkus-web-orm-starter</artifactId> | ||
</dependency> | ||
<dependency> | ||
<artifactId>demo-ddd-service</artifactId> | ||
<groupId>app.demo</groupId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<artifactId>demo-ddd-web</artifactId> | ||
<groupId>app.demo</groupId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.github.entropy-cloud</groupId> | ||
<artifactId>nop-auth-web</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.github.entropy-cloud</groupId> | ||
<artifactId>nop-auth-service</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.github.entropy-cloud</groupId> | ||
<artifactId>nop-web-amis-editor</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.github.entropy-cloud</groupId> | ||
<artifactId>nop-web-site</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-jdbc-mysql</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-jdbc-h2</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>${surefire-plugin.version}</version> | ||
<configuration> | ||
<systemPropertyVariables> | ||
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> | ||
<maven.home>${maven.home}</maven.home> | ||
</systemPropertyVariables> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>io.quarkus</groupId> | ||
<artifactId>quarkus-maven-plugin</artifactId> | ||
<version>${quarkus.platform.version}</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>build</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>exec-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<profiles> | ||
<profile> | ||
<id>native</id> | ||
<activation> | ||
<property> | ||
<name>native</name> | ||
</property> | ||
</activation> | ||
<properties> | ||
<quarkus.package.type>native</quarkus.package.type> | ||
</properties> | ||
</profile> | ||
</profiles> | ||
</project> |
97 changes: 97 additions & 0 deletions
97
nop-demo/nop-ddd-demo/demo-ddd-app/src/main/docker/Dockerfile.jvm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
#### | ||
# This Dockerfile is used in order to build a container that runs the Quarkus application in JVM mode | ||
# | ||
# Before building the container image run: | ||
# | ||
# ./mvnw package | ||
# | ||
# Then, build the image with: | ||
# | ||
# docker build . -f=src/main/docker/Dockerfile.jvm -t=nop/demo-ddd-app | ||
# | ||
# Then run the container using: | ||
# | ||
# docker run -i --rm -p 8080:8080 nop/demo-ddd-app | ||
# | ||
# 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. | ||
# Additionally you will have to set -e JAVA_DEBUG=true and -e JAVA_DEBUG_PORT=*:5005 | ||
# when running the container | ||
# | ||
# Then run the container using : | ||
# | ||
# docker run -i --rm -p 8080:8080 nop/demo-ddd-app | ||
# | ||
# This image uses the `run-java.sh` script to run the application. | ||
# This scripts computes the command line to execute your Java application, and | ||
# includes memory/GC tuning. | ||
# You can configure the behavior using the following environment properties: | ||
# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class") | ||
# - JAVA_OPTS_APPEND: User specified Java options to be appended to generated options | ||
# in JAVA_OPTS (example: "-Dsome.property=foo") | ||
# - JAVA_MAX_MEM_RATIO: Is used when no `-Xmx` option is given in JAVA_OPTS. This is | ||
# used to calculate a default maximal heap memory based on a containers restriction. | ||
# If used in a container without any memory constraints for the container then this | ||
# option has no effect. If there is a memory constraint then `-Xmx` is set to a ratio | ||
# of the container available memory as set here. The default is `50` which means 50% | ||
# of the available memory is used as an upper boundary. You can skip this mechanism by | ||
# setting this value to `0` in which case no `-Xmx` option is added. | ||
# - JAVA_INITIAL_MEM_RATIO: Is used when no `-Xms` option is given in JAVA_OPTS. This | ||
# is used to calculate a default initial heap memory based on the maximum heap memory. | ||
# If used in a container without any memory constraints for the container then this | ||
# option has no effect. If there is a memory constraint then `-Xms` is set to a ratio | ||
# of the `-Xmx` memory as set here. The default is `25` which means 25% of the `-Xmx` | ||
# is used as the initial heap size. You can skip this mechanism by setting this value | ||
# to `0` in which case no `-Xms` option is added (example: "25") | ||
# - JAVA_MAX_INITIAL_MEM: Is used when no `-Xms` option is given in JAVA_OPTS. | ||
# This is used to calculate the maximum value of the initial heap memory. If used in | ||
# a container without any memory constraints for the container then this option has | ||
# no effect. If there is a memory constraint then `-Xms` is limited to the value set | ||
# here. The default is 4096MB which means the calculated value of `-Xms` never will | ||
# be greater than 4096MB. The value of this variable is expressed in MB (example: "4096") | ||
# - JAVA_DIAGNOSTICS: Set this to get some diagnostics information to standard output | ||
# when things are happening. This option, if set to true, will set | ||
# `-XX:+UnlockDiagnosticVMOptions`. Disabled by default (example: "true"). | ||
# - JAVA_DEBUG: If set remote debugging will be switched on. Disabled by default (example: | ||
# true"). | ||
# - JAVA_DEBUG_PORT: Port used for remote debugging. Defaults to 5005 (example: "8787"). | ||
# - CONTAINER_CORE_LIMIT: A calculated core limit as described in | ||
# https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt. (example: "2") | ||
# - CONTAINER_MAX_MEMORY: Memory limit given to the container (example: "1024"). | ||
# - GC_MIN_HEAP_FREE_RATIO: Minimum percentage of heap free after GC to avoid expansion. | ||
# (example: "20") | ||
# - GC_MAX_HEAP_FREE_RATIO: Maximum percentage of heap free after GC to avoid shrinking. | ||
# (example: "40") | ||
# - GC_TIME_RATIO: Specifies the ratio of the time spent outside the garbage collection. | ||
# (example: "4") | ||
# - GC_ADAPTIVE_SIZE_POLICY_WEIGHT: The weighting given to the current GC time versus | ||
# previous GC times. (example: "90") | ||
# - GC_METASPACE_SIZE: The initial metaspace size. (example: "20") | ||
# - GC_MAX_METASPACE_SIZE: The maximum metaspace size. (example: "100") | ||
# - GC_CONTAINER_OPTIONS: Specify Java GC to use. The value of this variable should | ||
# contain the necessary JRE command-line options to specify the required GC, which | ||
# will override the default of `-XX:+UseParallelGC` (example: -XX:+UseG1GC). | ||
# - HTTPS_PROXY: The location of the https proxy. (example: "[email protected]:8080") | ||
# - HTTP_PROXY: The location of the http proxy. (example: "[email protected]:8080") | ||
# - NO_PROXY: A comma separated lists of hosts, IP addresses or domains that can be | ||
# accessed directly. (example: "foo.example.com,bar.example.com") | ||
# | ||
### | ||
FROM registry.access.redhat.com/ubi8/openjdk-17:1.16 | ||
|
||
ENV LANGUAGE='en_US:en' | ||
|
||
|
||
# We make four distinct layers so if there are application changes the library layers can be re-used | ||
COPY --chown=185 target/quarkus-app/lib/ /deployments/lib/ | ||
COPY --chown=185 target/quarkus-app/*.jar /deployments/ | ||
COPY --chown=185 target/quarkus-app/app/ /deployments/app/ | ||
COPY --chown=185 target/quarkus-app/quarkus/ /deployments/quarkus/ | ||
|
||
EXPOSE 8080 | ||
USER 185 | ||
ENV JAVA_OPTS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager" | ||
ENV JAVA_APP_JAR="/deployments/quarkus-run.jar" | ||
|
||
ENTRYPOINT [ "/opt/jboss/container/java/run/run-java.sh" ] | ||
|
Oops, something went wrong.