Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 530533d

Browse files
committedApr 1, 2024
fix: refactor JSON serialization after jackosn upgrade
1 parent 4ed3d6c commit 530533d

File tree

76 files changed

+528
-517
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+528
-517
lines changed
 

‎deploy/docker/Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ RUN --mount=type=cache,target=/root/.m2 mvn -f pom.xml clean package -DskipTests
1212
RUN mkdir -p /lowcoder/api-service/config /lowcoder/api-service/logs /lowcoder/plugins
1313

1414
# Copy lowcoder server configuration
15-
COPY server/api-service/lowcoder-server/src/main/resources/selfhost/ce/application.yml /lowcoder/api-service/config/
16-
COPY server/api-service/lowcoder-server/src/main/resources/selfhost/ce/application-selfhost.yml /lowcoder/api-service/config/
15+
COPY server/api-service/lowcoder-server/src/main/resources/application.yaml /lowcoder/api-service/config/
1716

1817
# Add bootstrapfile
1918
COPY deploy/docker/api-service/entrypoint.sh /lowcoder/api-service/entrypoint.sh

‎deploy/docker/api-service/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ exec gosu ${USER_ID}:${GROUP_ID} ${JAVA_HOME}/bin/java \
3434
-Djava.security.egd=file:/dev/./urandom \
3535
-Dhttps.protocols=TLSv1.1,TLSv1.2 \
3636
-Dlog4j2.formatMsgNoLookups=true \
37-
-Dspring.config.location="file:///lowcoder/api-service/config/application.yml,file:///lowcoder/api-service/config/application-selfhost.yml" \
37+
-Dspring.config.location="file:///lowcoder/api-service/config/application.yaml" \
3838
--add-opens java.base/java.nio=ALL-UNNAMED \
3939
-cp "${LOWCODER_CLASSPATH:=.}" \
4040
${JAVA_OPTS} \

0 commit comments

Comments
 (0)
Please sign in to comment.