This is an automated email from the ASF dual-hosted git repository.
robertlazarski pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git
from 1686aa33db Merge pull request #1169 from
apache/dependabot/maven/activemq.version-6.2.4
new 2c99971770 Link to Axis2/C parity implementation from Java financial
sample
new a4721f18ee AXIS2-6103 Add streaming JSON message formatters for large
HTTP responses
new 4d4a720e47 AXIS2-6103 Add unit tests for streaming JSON message
formatters
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../axis2/json/streaming/FlushingOutputStream.java | 108 ++++++++
.../streaming/JSONStreamingMessageFormatter.java | 271 +++++++++++++++++++++
.../streaming/MoshiStreamingMessageFormatter.java | 237 ++++++++++++++++++
.../json/streaming/FlushingOutputStreamTest.java | 195 +++++++++++++++
.../JSONStreamingMessageFormatterTest.java | 187 ++++++++++++++
.../MoshiStreamingMessageFormatterTest.java | 205 ++++++++++++++++
.../userguide/springbootdemo-tomcat11/README.md | 42 ++++
.../webservices/FinancialBenchmarkService.java | 3 +
src/site/xdoc/docs/json-streaming-formatter.xml | 170 +++++++++++++
src/site/xdoc/docs/toc.xml | 27 +-
10 files changed, 1437 insertions(+), 8 deletions(-)
create mode 100644
modules/json/src/org/apache/axis2/json/streaming/FlushingOutputStream.java
create mode 100644
modules/json/src/org/apache/axis2/json/streaming/JSONStreamingMessageFormatter.java
create mode 100644
modules/json/src/org/apache/axis2/json/streaming/MoshiStreamingMessageFormatter.java
create mode 100644
modules/json/test/org/apache/axis2/json/streaming/FlushingOutputStreamTest.java
create mode 100644
modules/json/test/org/apache/axis2/json/streaming/JSONStreamingMessageFormatterTest.java
create mode 100644
modules/json/test/org/apache/axis2/json/streaming/MoshiStreamingMessageFormatterTest.java
create mode 100644 src/site/xdoc/docs/json-streaming-formatter.xml