使用 jBPM single zip distribution,我如何上传一个带有依赖关系的大 jar 到 Artifacts?

Using jBPM single zip distribution, how do I upload a large jar with dependencies to Artifacts?

我正在使用 jbpm-server-7.33。0.Final-dist.zip 我有一个生成 PDF 文件等的 maven WorkItemHandler 项目。它有一个内置的 jar-with-dependencies.jar,即 52 mb。

我尝试将 jar 上传到 Business Central Artifacts,但我得到

Caused by: io.undertow.server.RequestTooBigException: 
    UT000020: Connection terminated as request was larger than 10485760

我尝试将这些文件中的 10485760 更改为 90485760

domain/configuration/domain.xml
standalone/configuration/standalone-full-ha.xml
standalone/configuration/standalone_xml_history/standalone.last.xml
standalone/configuration/standalone_xml_history/standalone.boot.xml
standalone/configuration/standalone.xml
standalone/configuration/standalone-full.xml

但是在进行这些更改并重新启动服务器后,一切都没有改变。

我不知道如何减少我的依赖,我只有 org.jbpm.jbpm-test 和 org.apache.pdfbox.pdfbox。没有依赖项,我的 jar 只有 ~5K。

增加配置文件中undertow子系统的max-post大小,如

<server name="default-server">
    <http-listener name="default" max-post-size="1000" socket-binding="http" redirect-socket="https"/>

此外,您不应该在 project/jar 上添加 org.jbpm:jbpm-test 工件的依赖性,您将在其他地方部署它。您应该仅将此工件用于编写 junit 测试。