Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-oss
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xingmin
yd-oss
Commits
5424d1b9
Commit
5424d1b9
authored
Oct 13, 2025
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
fa920879
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
6 deletions
+21
-6
yd-oss-api/Dockerfile
+20
-6
yd-oss-service/src/main/java/com/yd/oss/service/service/impl/PdfServiceImpl.java
+1
-0
No files found.
yd-oss-api/Dockerfile
View file @
5424d1b9
# 使用
官方 LibreOffice 镜像作为基础
# 使用
更小的 Alpine 基础镜像
FROM
librepdf/oracle-jdk-8-libreoffice:latest
FROM
openjdk:8-jre-alpine
# 维护人
# 维护人
LABEL
maintainer="zxm<2060197959@qq.com>"
LABEL
maintainer="zxm<2060197959@qq.com>"
...
@@ -7,11 +7,26 @@ LABEL maintainer="zxm<2060197959@qq.com>"
...
@@ -7,11 +7,26 @@ LABEL maintainer="zxm<2060197959@qq.com>"
# 创建目录
# 创建目录
RUN
mkdir
-p
/home/app
RUN
mkdir
-p
/home/app
# 安装 Alpine 版本的 LibreOffice(依赖更少)
RUN
apk add
--no-cache
\
libreoffice
\
libreoffice-writer
\
libreoffice-lang-zh_cn
\
ttf-dejavu
\
ttf-droid
\
ttf-freefont
\
ttf-liberation
\
font-noto-emoji
\
font-noto-cjk
\
&&
fc-cache
-f
-v
# 设置环境变量
ENV
LANG=zh_CN.UTF-8 \
LANGUAGE=zh_CN:zh \
LC_ALL=zh_CN.UTF-8
# 拷贝项目jar
# 拷贝项目jar
COPY
target/yd-oss-api-1.0-SNAPSHOT-exec.jar /home/app/yd-oss-api.jar
COPY
target/yd-oss-api-1.0-SNAPSHOT-exec.jar /home/app/yd-oss-api.jar
# 执行命令启动jar
ENTRYPOINT
["java", "-jar", "/home/app/yd-oss-api.jar"]
ENTRYPOINT
["java", "-jar", "/home/app/yd-oss-api.jar"]
# 暴露端口
EXPOSE
9106
EXPOSE
9106
\ No newline at end of file
yd-oss-service/src/main/java/com/yd/oss/service/service/impl/PdfServiceImpl.java
View file @
5424d1b9
...
@@ -268,6 +268,7 @@ public class PdfServiceImpl<T> implements PdfService<T> {
...
@@ -268,6 +268,7 @@ public class PdfServiceImpl<T> implements PdfService<T> {
String
[]
parts
=
url
.
toString
().
split
(
"\\?"
);
String
[]
parts
=
url
.
toString
().
split
(
"\\?"
);
// 取问号之前的部分
// 取问号之前的部分
String
returnUrl
=
parts
[
0
];
String
returnUrl
=
parts
[
0
];
returnUrl
=
returnUrl
.
replace
(
"http"
,
"https"
);
return
returnUrl
;
return
returnUrl
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment