Compare commits
17
Commits
v2.0.0
...
d7f36a7aea
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d7f36a7aea | ||
|
|
8ece9975de | ||
|
|
fa0a2d79b4 | ||
|
|
391ae6778e | ||
|
|
1b48d14b4f | ||
|
|
7cd8b3869c | ||
|
|
9f6808e90c | ||
|
|
bf2d54ca1a | ||
|
|
a037456634 | ||
|
|
524bdeb28b | ||
|
|
c619c17949 | ||
|
|
c368843ad4 | ||
|
|
35293a0a57 | ||
|
|
c514897ffc | ||
|
|
6314bcff5f | ||
|
|
ccc5550598 | ||
|
|
a4a16bdb00 |
@@ -1,7 +1,7 @@
|
|||||||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
|
||||||
http://maven.apache.org/xsd/maven-1.0.0.xsd">
|
http://maven.apache.org/xsd/settings-1.0.0.xsd">
|
||||||
<servers>
|
<servers>
|
||||||
<server>
|
<server>
|
||||||
<id>Personal</id>
|
<id>Personal</id>
|
||||||
|
|||||||
@@ -0,0 +1,348 @@
|
|||||||
|
name: Publish Docs
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
description: 'Docs version to publish (e.g. 2.1.0)'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
description: 'Docs version to publish (e.g. 2.1.0)'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
secrets:
|
||||||
|
MAVEN_USERNAME:
|
||||||
|
required: true
|
||||||
|
MAVEN_PASSWORD:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docs:
|
||||||
|
name: Build JavaDoc & Update gh-pages
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Set up Temurin 21
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
distribution: temurin
|
||||||
|
java-version: 21
|
||||||
|
cache: maven
|
||||||
|
|
||||||
|
- name: Build project (compile + resolve deps, skip tests)
|
||||||
|
run: mvn -B --settings .github/settings.xml clean verify -DskipTests
|
||||||
|
env:
|
||||||
|
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
|
||||||
|
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
|
||||||
|
|
||||||
|
# javadoc:aggregate runs on the reactor root.
|
||||||
|
# With flash + flash-extensions both declared as modules in root pom.xml,
|
||||||
|
# this produces a single aggregated Javadoc covering all modules.
|
||||||
|
# Default output path: target/site/apidocs/ (no custom reportOutputDirectory set).
|
||||||
|
- name: Generate aggregated JavaDoc
|
||||||
|
run: |
|
||||||
|
mvn -B \
|
||||||
|
--settings .github/settings.xml \
|
||||||
|
-DskipTests \
|
||||||
|
org.apache.maven.plugins:maven-javadoc-plugin:3.6.3:aggregate
|
||||||
|
env:
|
||||||
|
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
|
||||||
|
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Verify JavaDoc output exists
|
||||||
|
run: |
|
||||||
|
APIDOCS=""
|
||||||
|
|
||||||
|
if [ -f "target/site/apidocs/index.html" ]; then
|
||||||
|
APIDOCS="target/site/apidocs"
|
||||||
|
elif [ -f "target/reports/apidocs/index.html" ]; then
|
||||||
|
APIDOCS="target/reports/apidocs"
|
||||||
|
else
|
||||||
|
echo "ERROR: JavaDoc output not found."
|
||||||
|
echo
|
||||||
|
echo "Contents of target/:"
|
||||||
|
find target -maxdepth 5 2>/dev/null || echo "(empty)"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "APIDOCS_DIR=$APIDOCS" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
COUNT=$(find "$APIDOCS" -name '*.html' | wc -l)
|
||||||
|
echo "JavaDoc OK — $COUNT HTML files at $APIDOCS"
|
||||||
|
|
||||||
|
- name: Checkout gh-pages
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: gh-pages
|
||||||
|
path: gh-pages-out
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Copy JavaDoc to versioned folder and latest
|
||||||
|
run: |
|
||||||
|
VERSION=${{ inputs.version }}
|
||||||
|
|
||||||
|
mkdir -p gh-pages-out/javadoc/$VERSION
|
||||||
|
cp -r "$APIDOCS_DIR"/. gh-pages-out/javadoc/$VERSION/
|
||||||
|
|
||||||
|
rm -rf gh-pages-out/latest
|
||||||
|
mkdir -p gh-pages-out/latest
|
||||||
|
cp -r "$APIDOCS_DIR"/. gh-pages-out/latest/
|
||||||
|
|
||||||
|
- name: Regenerate index.html
|
||||||
|
run: |
|
||||||
|
cd gh-pages-out
|
||||||
|
python3 - <<'EOF'
|
||||||
|
import os, re
|
||||||
|
|
||||||
|
def version_key(v):
|
||||||
|
parts = re.findall(r'\d+', v)
|
||||||
|
return [int(p) for p in parts] if parts else [0]
|
||||||
|
|
||||||
|
versions = sorted(
|
||||||
|
[d for d in os.listdir("javadoc") if os.path.isdir(f"javadoc/{d}")],
|
||||||
|
key=version_key,
|
||||||
|
reverse=True
|
||||||
|
)
|
||||||
|
|
||||||
|
latest = versions[0] if versions else None
|
||||||
|
|
||||||
|
rows = "\n".join(
|
||||||
|
f'''
|
||||||
|
<div class="release">
|
||||||
|
<div class="release-info">
|
||||||
|
<span class="version">{v}</span>
|
||||||
|
{"<span class='badge'>latest</span>" if v == latest else ""}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a href="javadoc/{v}/index.html">Open</a>
|
||||||
|
</div>
|
||||||
|
'''
|
||||||
|
for v in versions
|
||||||
|
)
|
||||||
|
|
||||||
|
html = """<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Flash — JavaDoc</title>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--bg: #ffffff;
|
||||||
|
--surface: #fafafa;
|
||||||
|
--border: #e5e7eb;
|
||||||
|
|
||||||
|
--text: #111827;
|
||||||
|
--muted: #6b7280;
|
||||||
|
|
||||||
|
--accent: #111827;
|
||||||
|
--accent-hover: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family:
|
||||||
|
Inter,
|
||||||
|
ui-sans-serif,
|
||||||
|
system-ui,
|
||||||
|
-apple-system,
|
||||||
|
BlinkMacSystemFont,
|
||||||
|
"Segoe UI",
|
||||||
|
sans-serif;
|
||||||
|
|
||||||
|
background: var(--bg);
|
||||||
|
color: var(--text);
|
||||||
|
|
||||||
|
min-height: 100vh;
|
||||||
|
padding: 64px 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 760px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header h1 {
|
||||||
|
font-size: 2rem;
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: -0.04em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header p {
|
||||||
|
margin-top: 10px;
|
||||||
|
|
||||||
|
color: var(--muted);
|
||||||
|
font-size: 0.95rem;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.latest {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
margin-top: 20px;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
|
||||||
|
color: var(--accent);
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
font-weight: 500;
|
||||||
|
|
||||||
|
border-bottom: 1px solid transparent;
|
||||||
|
|
||||||
|
transition:
|
||||||
|
border-color 0.15s ease,
|
||||||
|
color 0.15s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.latest:hover {
|
||||||
|
border-color: var(--accent);
|
||||||
|
color: var(--accent-hover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.list {
|
||||||
|
border-top: 1px solid var(--border);
|
||||||
|
}
|
||||||
|
|
||||||
|
.release {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
gap: 16px;
|
||||||
|
|
||||||
|
padding: 18px 0;
|
||||||
|
|
||||||
|
border-bottom: 1px solid var(--border);
|
||||||
|
}
|
||||||
|
|
||||||
|
.release-info {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.version {
|
||||||
|
font-size: 0.96rem;
|
||||||
|
font-weight: 500;
|
||||||
|
letter-spacing: -0.01em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.badge {
|
||||||
|
font-size: 0.72rem;
|
||||||
|
font-weight: 600;
|
||||||
|
|
||||||
|
color: var(--muted);
|
||||||
|
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
padding: 2px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.release a {
|
||||||
|
color: var(--accent);
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 0.92rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.release a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.empty {
|
||||||
|
padding: 32px 0;
|
||||||
|
|
||||||
|
color: var(--muted);
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
body {
|
||||||
|
padding: 40px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header h1 {
|
||||||
|
font-size: 1.7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.release {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
<h1>Flash JavaDoc</h1>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
API documentation for all published Flash releases.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
""" + (
|
||||||
|
f'''
|
||||||
|
<a class="latest" href="latest/index.html">
|
||||||
|
Latest release — {latest}
|
||||||
|
</a>
|
||||||
|
'''
|
||||||
|
if latest else ""
|
||||||
|
) + """
|
||||||
|
</header>
|
||||||
|
|
||||||
|
""" + (
|
||||||
|
f'''
|
||||||
|
<div class="list">
|
||||||
|
{rows}
|
||||||
|
</div>
|
||||||
|
'''
|
||||||
|
if rows else
|
||||||
|
'''
|
||||||
|
<div class="empty">
|
||||||
|
No versions published yet.
|
||||||
|
</div>
|
||||||
|
'''
|
||||||
|
) + """
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>"""
|
||||||
|
|
||||||
|
with open("index.html", "w", encoding="utf-8") as f:
|
||||||
|
f.write(html)
|
||||||
|
|
||||||
|
print(f"index.html generated — {len(versions)} version(s): {versions}")
|
||||||
|
EOF
|
||||||
|
|
||||||
|
- name: Push gh-pages
|
||||||
|
run: |
|
||||||
|
cd gh-pages-out
|
||||||
|
git config user.name "github-actions[bot]"
|
||||||
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
|
git add -A
|
||||||
|
git diff --cached --quiet || git commit -m "docs(javadoc): publish ${{ inputs.version }}"
|
||||||
|
git push origin gh-pages
|
||||||
@@ -6,13 +6,15 @@ on:
|
|||||||
- 'v*'
|
- 'v*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
# ── 1. Build, GPG-sign, deploy to Maven releases ──────────────────────────
|
||||||
release:
|
release:
|
||||||
name: Build, Sign, Deploy & Publish
|
name: Build, Sign & Deploy
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
pages: write
|
|
||||||
id-token: write
|
outputs:
|
||||||
|
version: ${{ steps.version.outputs.VERSION }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
@@ -47,90 +49,22 @@ jobs:
|
|||||||
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
|
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
|
||||||
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
|
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
|
||||||
|
|
||||||
- name: Generate aggregated JavaDoc
|
|
||||||
run: |
|
|
||||||
mvn -B --settings .github/settings.xml \
|
|
||||||
-pl flash,flash-extensions -am \
|
|
||||||
javadoc:aggregate -DskipTests
|
|
||||||
env:
|
|
||||||
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
|
|
||||||
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
|
|
||||||
|
|
||||||
- name: Checkout gh-pages
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: gh-pages
|
|
||||||
path: gh-pages-out
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Copy JavaDoc to versioned folder
|
|
||||||
run: |
|
|
||||||
VERSION=${{ steps.version.outputs.VERSION }}
|
|
||||||
mkdir -p gh-pages-out/javadoc/$VERSION
|
|
||||||
cp -r target/reports/apidocs/. gh-pages-out/javadoc/$VERSION/
|
|
||||||
rm -rf gh-pages-out/latest
|
|
||||||
mkdir -p gh-pages-out/latest
|
|
||||||
cp -r target/reports/apidocs/. gh-pages-out/latest/
|
|
||||||
|
|
||||||
- name: Regenerate index.html
|
|
||||||
run: |
|
|
||||||
cd gh-pages-out
|
|
||||||
python3 - <<'EOF'
|
|
||||||
import os, re
|
|
||||||
|
|
||||||
versions = sorted(
|
|
||||||
[d for d in os.listdir("javadoc") if os.path.isdir(f"javadoc/{d}")],
|
|
||||||
key=lambda v: [int(x) for x in re.sub(r'[^0-9.]', '', v).split('.') if x],
|
|
||||||
reverse=True
|
|
||||||
)
|
|
||||||
|
|
||||||
rows = "\n".join(
|
|
||||||
f' <li><a href="javadoc/{v}/index.html">{v}</a></li>'
|
|
||||||
for v in versions
|
|
||||||
)
|
|
||||||
|
|
||||||
html = f"""<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>Flash JavaDoc</title>
|
|
||||||
<style>
|
|
||||||
body {{ font-family: sans-serif; max-width: 600px; margin: 4rem auto; }}
|
|
||||||
h1 {{ font-size: 1.6rem; }}
|
|
||||||
ul {{ line-height: 2; }}
|
|
||||||
a {{ color: #0070f3; text-decoration: none; }}
|
|
||||||
a:hover {{ text-decoration: underline; }}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Flash — JavaDoc</h1>
|
|
||||||
<p><a href="latest/index.html">→ Latest</a></p>
|
|
||||||
<h2>All versions</h2>
|
|
||||||
<ul>
|
|
||||||
{rows}
|
|
||||||
</ul>
|
|
||||||
</body>
|
|
||||||
</html>"""
|
|
||||||
|
|
||||||
with open("index.html", "w") as f:
|
|
||||||
f.write(html)
|
|
||||||
print(f"index.html generated with {len(versions)} versions: {versions}")
|
|
||||||
EOF
|
|
||||||
|
|
||||||
- name: Push gh-pages
|
|
||||||
run: |
|
|
||||||
cd gh-pages-out
|
|
||||||
git config user.name "github-actions[bot]"
|
|
||||||
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
||||||
git add -A
|
|
||||||
git diff --cached --quiet || git commit -m "docs(javadoc): release ${{ steps.version.outputs.VERSION }}"
|
|
||||||
git push origin gh-pages
|
|
||||||
|
|
||||||
- name: Create GitHub Release
|
- name: Create GitHub Release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
tag_name: v${{ steps.version.outputs.VERSION }}
|
tag_name: ${{ github.ref_name }}
|
||||||
name: v${{ steps.version.outputs.VERSION }}
|
name: ${{ github.ref_name }}
|
||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
|
|
||||||
|
# ── 2. Publish JavaDoc (single source of truth: docs.yml) ─────────────────
|
||||||
|
docs:
|
||||||
|
name: Publish JavaDoc
|
||||||
|
needs: release
|
||||||
|
uses: ./.github/workflows/docs.yml
|
||||||
|
with:
|
||||||
|
version: ${{ needs.release.outputs.version }}
|
||||||
|
secrets:
|
||||||
|
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
|
||||||
|
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
|
||||||
Generated
+72
-283
@@ -4,292 +4,42 @@
|
|||||||
<option name="autoReloadType" value="SELECTIVE" />
|
<option name="autoReloadType" value="SELECTIVE" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ChangeListManager">
|
<component name="ChangeListManager">
|
||||||
<list default="true" id="fc757130-fe3e-4ea9-8d69-c26ffb8545a4" name="Changes" comment="add core view extension with JTE and Thymeleaf support">
|
<list default="true" id="fc757130-fe3e-4ea9-8d69-c26ffb8545a4" name="Changes" comment="feat: introduce WebSocket support with new endpoints and transaction propagation enhancements">
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/pom.xml" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/.github/workflows/release.yml" beforeDir="false" afterPath="$PROJECT_DIR$/.github/workflows/release.yml" afterDir="false" />
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/DataExtension.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/Page.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/Repository.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/ResourceRegistry.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/Sort.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/TransactionIsolation.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/TransactionPropagation.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/Tx.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/TxDefinition.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/TxException.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/TxManager.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/TxOutcome.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/TxResourceKey.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/TxStatus.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-core/src/main/java/dev/relism/flash/ext/data/core/TxSynchronization.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-hibernate/pom.xml" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-hibernate/src/main/java/dev/relism/flash/ext/data/hibernate/HibernateRepository.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-hibernate/src/main/java/dev/relism/flash/ext/data/hibernate/HibernateTxManager.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-hibernate/src/main/java/dev/relism/flash/ext/data/hibernate/HibernateTxStatus.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-hibernate/src/test/java/dev/relism/flash/ext/data/hibernate/HibernateTxManagerTest.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-hibernate/src/test/java/dev/relism/flash/ext/data/hibernate/TestHelper.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-jdbc/pom.xml" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-jdbc/src/main/java/dev/relism/flash/ext/data/jdbc/JdbcRepository.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-jdbc/src/main/java/dev/relism/flash/ext/data/jdbc/JdbcTxManager.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-jdbc/src/main/java/dev/relism/flash/ext/data/jdbc/JdbcTxStatus.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-data-jdbc/src/test/java/dev/relism/flash/ext/data/jdbc/JdbcTxManagerTest.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/flash/ext/view/jte/JteTarget.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/FrontendType.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/Flash.java" afterDir="false" />
|
|
||||||
<change afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/routers/radix/RadixPathRouterImpl.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/.idea/encodings.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/encodings.xml" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/main/java/dev/relism/ext/jackson/JacksonExtension.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/main/java/dev/relism/flash/ext/jackson/JacksonExtension.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/main/java/dev/relism/ext/jackson/JacksonMiddleware.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/main/java/dev/relism/flash/ext/jackson/JacksonMiddleware.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/main/java/dev/relism/ext/jackson/Json.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/main/java/dev/relism/flash/ext/jackson/Json.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/test/java/dev/relism/ext/jackson/JacksonExtensionTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/test/java/dev/relism/flash/ext/jackson/JacksonExtensionTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/test/java/dev/relism/ext/jackson/JacksonMiddlewareTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/test/java/dev/relism/flash/ext/jackson/JacksonMiddlewareTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/test/java/dev/relism/ext/jackson/JsonTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-jackson/src/test/java/dev/relism/flash/ext/jackson/JsonTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/Bucket.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/Bucket.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/BucketStore.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/BucketStore.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/Guard.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/Guard.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/KeyResolver.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/KeyResolver.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/Limit.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/Limit.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/LimitConfig.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/LimitConfig.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/LimitStrategy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/LimitStrategy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/LimiterConfig.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/LimiterConfig.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/LimiterExtension.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/LimiterExtension.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/RateLimitStrategy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/RateLimitStrategy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/strategy/FixedWindowStrategy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/strategy/FixedWindowStrategy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/strategy/SlidingWindowStrategy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/strategy/SlidingWindowStrategy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/ext/limiter/strategy/TokenBucketStrategy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/main/java/dev/relism/flash/ext/limiter/strategy/TokenBucketStrategy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/test/java/dev/relism/ext/limiter/LimiterOpenApiInteropTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-limiter/src/test/java/dev/relism/flash/ext/limiter/LimiterOpenApiInteropTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/Authenticated.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/Authenticated.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/ClaimsHolder.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/ClaimsHolder.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/ClientAuthMethod.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/ClientAuthMethod.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/DiscoveryClient.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/DiscoveryClient.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/InMemoryOidcSessionStore.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/InMemoryOidcSessionStore.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/JwtUtils.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/JwtUtils.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/JwtValidator.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/JwtValidator.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcAuthPolicy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcAuthPolicy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcConfig.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcConfig.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcExtension.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcExtension.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcMiddleware.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcMiddleware.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcProviderMetadata.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcProviderMetadata.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcSession.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcSession.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcSessionStore.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcSessionStore.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcStateStore.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcStateStore.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcTokenResponse.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcTokenResponse.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcUser.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcUser.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/OidcValidationException.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/OidcValidationException.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/PkceUtils.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/PkceUtils.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/RolesAllowed.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/RolesAllowed.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/ScopesAllowed.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/ScopesAllowed.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/ext/oidc/TokenClient.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/main/java/dev/relism/flash/ext/oidc/TokenClient.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/test/java/dev/relism/ext/oidc/OidcAuthPolicyTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/test/java/dev/relism/flash/ext/oidc/OidcAuthPolicyTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/test/java/dev/relism/ext/oidc/OidcMiddlewareAuthzTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/test/java/dev/relism/flash/ext/oidc/OidcMiddlewareAuthzTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/test/java/dev/relism/ext/oidc/OidcOpenApiInteropTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/test/java/dev/relism/flash/ext/oidc/OidcOpenApiInteropTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/test/java/dev/relism/ext/oidc/OidcUserScopesTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-oidc/src/test/java/dev/relism/flash/ext/oidc/OidcUserScopesTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/APIResponse.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/APIResponse.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/APIResponses.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/APIResponses.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/ApiOperation.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/ApiOperation.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/ArraySchema.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/ArraySchema.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/Content.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/Content.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/OpenApiBuilder.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/OpenApiBuilder.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/OpenApiContributor.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/OpenApiContributor.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/OpenApiContributorRegistry.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/OpenApiContributorRegistry.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/OpenApiExtension.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/OpenApiExtension.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/OpenApiOperationContribution.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/OpenApiOperationContribution.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/OpenApiResponseContribution.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/OpenApiResponseContribution.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/Parameter.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/Parameter.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/ParameterIn.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/ParameterIn.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/Parameters.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/Parameters.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/Schema.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/Schema.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/SchemaProperty.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/SchemaProperty.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/ext/openapi/SchemaType.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/main/java/dev/relism/flash/ext/openapi/SchemaType.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/test/java/dev/relism/ext/openapi/OpenApiBuilderTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/test/java/dev/relism/flash/ext/openapi/OpenApiBuilderTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/test/java/dev/relism/ext/openapi/OpenApiExtensionTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-openapi/src/test/java/dev/relism/flash/ext/openapi/OpenApiExtensionTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/ext/routeviewer/GraphSerializer.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/flash/ext/routeviewer/GraphSerializer.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/ext/routeviewer/RouteViewerDataHandler.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/flash/ext/routeviewer/RouteViewerDataHandler.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/ext/routeviewer/RouteViewerExtension.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/flash/ext/routeviewer/RouteViewerExtension.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/ext/routeviewer/RouteViewerHandler.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/flash/ext/routeviewer/RouteViewerHandler.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/ext/routeviewer/RouteViewerStaticHandler.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/flash/ext/routeviewer/RouteViewerStaticHandler.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/ext/routeviewer/model/RouteGraph.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/flash/ext/routeviewer/model/RouteGraph.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/ext/routeviewer/model/RouteRecord.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/flash/ext/routeviewer/model/RouteRecord.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/ext/routeviewer/model/RouterNode.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-routeviewer/src/main/java/dev/relism/flash/ext/routeviewer/model/RouterNode.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/ext/view/core/BaseViewExtension.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/flash/ext/view/core/BaseViewExtension.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/ext/view/core/BaseViewHandler.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/flash/ext/view/core/BaseViewHandler.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/ext/view/core/GlobalValue.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/flash/ext/view/core/GlobalValue.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/ext/view/core/RenderedView.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/flash/ext/view/core/RenderedView.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/ext/view/core/ViewModel.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/flash/ext/view/core/ViewModel.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/ext/view/core/ViewRuntimeBridge.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/main/java/dev/relism/flash/ext/view/core/ViewRuntimeBridge.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/test/java/dev/relism/ext/view/core/ViewModelTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-core/src/test/java/dev/relism/flash/ext/view/core/ViewModelTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/README.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/docs/handlers.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/docs/handlers.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/jte-classes/gg/jte/generated/ondemand/pages/JtehomeGenerated.class" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/jte-classes/gg/jte/generated/ondemand/pages/JtehomeGenerated.class" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/jte-classes/gg/jte/generated/ondemand/pages/JtehomeGenerated.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/jte-classes/gg/jte/generated/ondemand/pages/JtehomeGenerated.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/ext/view/jte/JteExtension.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/flash/ext/view/jte/JteExtension.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/ext/view/jte/JteHandler.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/flash/ext/view/jte/JteHandler.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/ext/view/jte/JteRuntime.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/flash/ext/view/jte/JteRuntime.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/ext/view/jte/JteSettings.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/flash/ext/view/jte/JteSettings.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/ext/view/jte/JteTarget.java" beforeDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/ext/view/jte/JteTargetResolver.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/flash/ext/view/jte/JteTargetResolver.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/ext/view/jte/Template.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/main/java/dev/relism/flash/ext/view/jte/Template.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/java/dev/relism/ext/view/jte/JteExtensionTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/java/dev/relism/flash/ext/view/jte/JteExtensionTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/java/dev/relism/ext/view/jte/JteRuntimeTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/java/dev/relism/flash/ext/view/jte/JteRuntimeTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/java/dev/relism/ext/view/jte/JteSettingsTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/java/dev/relism/flash/ext/view/jte/JteSettingsTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/java/dev/relism/ext/view/jte/JteTargetResolverTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/java/dev/relism/flash/ext/view/jte/JteTargetResolverTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/java/dev/relism/ext/view/jte/model/HomePage.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/java/dev/relism/flash/ext/view/jte/model/HomePage.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/resources/templates/pages/home.jte" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-jte/src/test/resources/templates/pages/home.jte" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/README.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/docs/fragments.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/docs/fragments.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/docs/handlers.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/docs/handlers.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/ext/view/thymeleaf/Fragment.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/flash/ext/view/thymeleaf/Fragment.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/ext/view/thymeleaf/Template.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/flash/ext/view/thymeleaf/Template.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/ext/view/thymeleaf/ThymeleafExtension.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/flash/ext/view/thymeleaf/ThymeleafExtension.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/ext/view/thymeleaf/ThymeleafHandler.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/flash/ext/view/thymeleaf/ThymeleafHandler.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/ext/view/thymeleaf/ThymeleafRuntime.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/flash/ext/view/thymeleaf/ThymeleafRuntime.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/ext/view/thymeleaf/ThymeleafSettings.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/flash/ext/view/thymeleaf/ThymeleafSettings.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/ext/view/thymeleaf/ThymeleafTarget.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/flash/ext/view/thymeleaf/ThymeleafTarget.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/ext/view/thymeleaf/ThymeleafTargetResolver.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/main/java/dev/relism/flash/ext/view/thymeleaf/ThymeleafTargetResolver.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/test/java/dev/relism/ext/view/thymeleaf/ThymeleafExtensionTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/test/java/dev/relism/flash/ext/view/thymeleaf/ThymeleafExtensionTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/test/java/dev/relism/ext/view/thymeleaf/ThymeleafRuntimeTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/test/java/dev/relism/flash/ext/view/thymeleaf/ThymeleafRuntimeTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/test/java/dev/relism/ext/view/thymeleaf/ThymeleafSettingsTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/test/java/dev/relism/flash/ext/view/thymeleaf/ThymeleafSettingsTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/test/java/dev/relism/ext/view/thymeleaf/ThymeleafTargetResolverTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-view-thymeleaf/src/test/java/dev/relism/flash/ext/view/thymeleaf/ThymeleafTargetResolverTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/README.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/asset-sources.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/asset-sources.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/configuration.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/configuration.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/dev-lifecycle.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/dev-lifecycle.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/frontend-selection.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/frontend-selection.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/modes.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/modes.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/package-managers.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/package-managers.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/performance.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/performance.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/prod-serving.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/prod-serving.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/routing-fallback.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/routing-fallback.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/docs/security-policies.md" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/docs/security-policies.md" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/pom.xml" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/pom.xml" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/AssetCatalog.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/AssetCatalog.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/AssetEntry.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/AssetEntry.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/AssetIo.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/AssetIo.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/AssetLoadRequest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/AssetLoadRequest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/AssetMetadata.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/AssetMetadata.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/AssetPaths.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/AssetPaths.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/AssetsSource.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/AssetsSource.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/AssetsSources.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/AssetsSources.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/BasePathEnforcementMode.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/BasePathEnforcementMode.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/ClasspathAssetManifest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/ClasspathAssetManifest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/ClasspathAssetsSource.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/ClasspathAssetsSource.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/CommandOrchestrator.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/CommandOrchestrator.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/CommandSafetyMode.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/CommandSafetyMode.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/CommandSafetyPolicy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/CommandSafetyPolicy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/CommandTokens.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/CommandTokens.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/FilesystemAssetsSource.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/FilesystemAssetsSource.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/FrontendStrategy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/FrontendStrategy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/FrontendType.java" beforeDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/FrontendTypeResolver.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/FrontendTypeResolver.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/InstallCache.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/InstallCache.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/InstallPolicy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/InstallPolicy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/LoggingMode.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/LoggingMode.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/MimeTypes.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/MimeTypes.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/ModeResolver.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/ModeResolver.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/OperationMode.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/OperationMode.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/PackageManager.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/PackageManager.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/PackageManagerAdapter.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/PackageManagerAdapter.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/RuntimeEnvironment.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/RuntimeEnvironment.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/RuntimeMode.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/RuntimeMode.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/SpaFallbackPolicy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/SpaFallbackPolicy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/StaticAssetServingPolicy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/StaticAssetServingPolicy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/ViteFrontendStrategy.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/ViteFrontendStrategy.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/WatchList.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/WatchList.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/WebBundlerConfig.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/WebBundlerConfig.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/WebBundlerExtension.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/WebBundlerExtension.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/main/java/dev/relism/ext/webbundler/WebBundlerRuntime.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/main/java/dev/relism/flash/ext/webbundler/WebBundlerRuntime.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/test/java/dev/relism/ext/webbundler/AssetsSourceTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/test/java/dev/relism/flash/ext/webbundler/AssetsSourceTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/test/java/dev/relism/ext/webbundler/CommandSafetyPolicyTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/test/java/dev/relism/flash/ext/webbundler/CommandSafetyPolicyTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/test/java/dev/relism/ext/webbundler/InstallCacheTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/test/java/dev/relism/flash/ext/webbundler/InstallCacheTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/test/java/dev/relism/ext/webbundler/ModeResolverTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/test/java/dev/relism/flash/ext/webbundler/ModeResolverTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/test/java/dev/relism/ext/webbundler/PackageManagerAdapterTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/test/java/dev/relism/flash/ext/webbundler/PackageManagerAdapterTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/test/java/dev/relism/ext/webbundler/WebBundlerConfigTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/test/java/dev/relism/flash/ext/webbundler/WebBundlerConfigTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/test/java/dev/relism/ext/webbundler/WebBundlerExtensionDevGuardTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/test/java/dev/relism/flash/ext/webbundler/WebBundlerExtensionDevGuardTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/flash-web-bundler/src/test/java/dev/relism/ext/webbundler/WebBundlerExtensionIntegrationTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/flash-ext-web-bundler/src/test/java/dev/relism/flash/ext/webbundler/WebBundlerExtensionIntegrationTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash-extensions/pom.xml" beforeDir="false" afterPath="$PROJECT_DIR$/flash-extensions/pom.xml" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/ChunkedInputStream.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/ChunkedInputStream.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/Flash.java" beforeDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/HttpServer.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/HttpServer.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/RequestParser.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/RequestParser.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/ServerHandle.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/ServerHandle.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/api/multipart/Multipart.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/api/multipart/Multipart.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/api/multipart/Part.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/api/multipart/Part.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/exceptions/HttpException.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/exceptions/HttpException.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/exceptions/InitializationException.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/exceptions/InitializationException.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/AnnotationProcessor.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/AnnotationProcessor.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/ExtensionPhase.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/ExtensionPhase.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/FlashApp.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/FlashApp.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/FlashConfiguration.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/FlashConfiguration.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/FlashContext.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/FlashContext.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/FlashExtension.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/FlashExtension.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/FlashRegistrar.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/FlashRegistrar.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/FlashScope.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/FlashScope.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/PackageScanner.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/PackageScanner.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/RouteDefinition.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/RouteDefinition.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/RouteEvent.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/RouteEvent.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/extension/RouteListener.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/extension/RouteListener.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/http/ContentType.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/http/ContentType.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/http/HttpMethod.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/http/HttpMethod.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/http/HttpStatus.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/http/HttpStatus.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/models/HeaderMap.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/models/HeaderMap.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/models/PathParams.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/models/PathParams.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/models/QueryParams.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/models/QueryParams.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/models/Request.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/models/Request.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/models/RequestBody.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/models/RequestBody.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/models/RequestHandler.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/models/RequestHandler.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/models/RequestHelper.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/models/RequestHelper.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/models/RequestLine.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/models/RequestLine.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/models/Response.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/models/Response.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/models/SimpleHandler.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/models/SimpleHandler.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/AbstractRouter.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/AbstractRouter.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/CONNECT.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/CONNECT.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/DELETE.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/DELETE.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/GET.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/GET.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/HEAD.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/HEAD.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/Middleware.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/Middleware.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/OPTIONS.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/OPTIONS.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/PATCH.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/PATCH.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/POST.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/POST.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/PURGE.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/PURGE.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/PUT.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/PUT.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/PathUtils.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/PathUtils.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/Route.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/Route.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/Routes.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/Routes.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/TRACE.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/TRACE.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/routers/fastpathrouter/FastPathRouterImpl.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/routers/fastpathrouter/FastPathRouterImpl.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/routers/fastpathrouter/FastPathViews.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/routing/routers/fastpathrouter/FastPathViews.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/routing/routers/radix/RadixPathRouterImpl.java" beforeDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/template/ByteTemplate.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/template/ByteTemplate.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/main/java/dev/relism/template/ErrorPages.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/main/java/dev/relism/flash/template/ErrorPages.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/ChunkedInputStreamTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/ChunkedInputStreamTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/HttpServerConcurrencyTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/HttpServerConcurrencyTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/HttpServerTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/HttpServerTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/RequestParserTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/RequestParserTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/api/multipart/MultipartTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/api/multipart/MultipartTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/http/ContentTypeTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/http/ContentTypeTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/http/HttpMethodTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/http/HttpMethodTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/http/HttpStatusTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/http/HttpStatusTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/models/HeaderMapTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/models/HeaderMapTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/models/PathParamsTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/models/PathParamsTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/models/QueryParamsTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/models/QueryParamsTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/models/RequestBodyTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/models/RequestBodyTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/models/RequestLineTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/models/RequestLineTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/models/RequestTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/models/RequestTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/models/ResponseTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/models/ResponseTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/models/SimpleHandlerTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/models/SimpleHandlerTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/routing/AbstractRouterTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/routing/AbstractRouterTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/routing/PathUtilsTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/routing/PathUtilsTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/routing/routers/fastpathrouter/FastPathRouterImplTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/routing/routers/fastpathrouter/FastPathRouterImplTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/routing/routers/fastpathrouter/FastPathViewsTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/routing/routers/fastpathrouter/FastPathViewsTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/template/ByteTemplateTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/template/ByteTemplateTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/flash/src/test/java/dev/relism/template/ErrorPagesTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/flash/src/test/java/dev/relism/flash/template/ErrorPagesTest.java" afterDir="false" />
|
|
||||||
<change beforePath="$PROJECT_DIR$/pom.xml" beforeDir="false" afterPath="$PROJECT_DIR$/pom.xml" afterDir="false" />
|
|
||||||
</list>
|
</list>
|
||||||
<option name="SHOW_DIALOG" value="false" />
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||||
<option name="LAST_RESOLUTION" value="IGNORE" />
|
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||||
</component>
|
</component>
|
||||||
|
<component name="CopilotChats">
|
||||||
|
<option name="panelChat">
|
||||||
|
<chat>
|
||||||
|
<option name="activeSessionId" value="a8d77f48-1eb9-4c5a-961c-1e1452a25ca0" />
|
||||||
|
<option name="sessions">
|
||||||
|
<session>
|
||||||
|
<option name="chatType" value="PANEL" />
|
||||||
|
<option name="id" value="a8d77f48-1eb9-4c5a-961c-1e1452a25ca0" />
|
||||||
|
<option name="modeId" value="Agent" />
|
||||||
|
<option name="modelType" value="builtin_family" />
|
||||||
|
<option name="modelValue" value="auto" />
|
||||||
|
<option name="status" value="Completed" />
|
||||||
|
<option name="targetType" value="LOCAL" />
|
||||||
|
</session>
|
||||||
|
<session>
|
||||||
|
<option name="chatType" value="PANEL" />
|
||||||
|
<option name="id" value="82f48e09-2ca4-4a27-9a04-c65d7a5f0b88" />
|
||||||
|
<option name="modeId" value="Agent" />
|
||||||
|
<option name="modelType" value="builtin_family" />
|
||||||
|
<option name="modelValue" value="auto" />
|
||||||
|
<option name="targetType" value="LOCAL" />
|
||||||
|
</session>
|
||||||
|
</option>
|
||||||
|
<option name="type" value="PANEL" />
|
||||||
|
</chat>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
<component name="CopilotPersistence">
|
<component name="CopilotPersistence">
|
||||||
<persistenceIdMap>
|
<persistenceIdMap>
|
||||||
<entry key="_C:/Users/elorc/Documents/Coding/Java/practice/Flash" value="3Axc6mzLyNvh4TgGFvNSCSq83xw" />
|
<entry key="_C:/Users/elorc/Documents/Coding/Java/practice/Flash" value="3Axc6mzLyNvh4TgGFvNSCSq83xw" />
|
||||||
@@ -298,7 +48,7 @@
|
|||||||
</persistenceIdMap>
|
</persistenceIdMap>
|
||||||
</component>
|
</component>
|
||||||
<component name="EmbeddingIndexingInfo">
|
<component name="EmbeddingIndexingInfo">
|
||||||
<option name="cachedIndexableFilesCount" value="407" />
|
<option name="cachedIndexableFilesCount" value="448" />
|
||||||
<option name="fileBasedEmbeddingIndicesEnabled" value="true" />
|
<option name="fileBasedEmbeddingIndicesEnabled" value="true" />
|
||||||
</component>
|
</component>
|
||||||
<component name="FileTemplateManagerImpl">
|
<component name="FileTemplateManagerImpl">
|
||||||
@@ -534,7 +284,17 @@
|
|||||||
<workItem from="1776931805422" duration="16122000" />
|
<workItem from="1776931805422" duration="16122000" />
|
||||||
<workItem from="1777051880577" duration="2650000" />
|
<workItem from="1777051880577" duration="2650000" />
|
||||||
<workItem from="1777150747725" duration="837000" />
|
<workItem from="1777150747725" duration="837000" />
|
||||||
<workItem from="1777198150359" duration="638000" />
|
<workItem from="1777198150359" duration="5628000" />
|
||||||
|
<workItem from="1777451402985" duration="709000" />
|
||||||
|
<workItem from="1777534738187" duration="13411000" />
|
||||||
|
<workItem from="1777970837797" duration="5042000" />
|
||||||
|
<workItem from="1778160998498" duration="2931000" />
|
||||||
|
<workItem from="1778319397472" duration="5040000" />
|
||||||
|
<workItem from="1778352978922" duration="2169000" />
|
||||||
|
<workItem from="1778414714349" duration="23000" />
|
||||||
|
<workItem from="1778417425077" duration="3241000" />
|
||||||
|
<workItem from="1778489168036" duration="9828000" />
|
||||||
|
<workItem from="1778576795735" duration="5051000" />
|
||||||
</task>
|
</task>
|
||||||
<task id="LOCAL-00001" summary="Initial">
|
<task id="LOCAL-00001" summary="Initial">
|
||||||
<option name="closed" value="true" />
|
<option name="closed" value="true" />
|
||||||
@@ -632,7 +392,31 @@
|
|||||||
<option name="project" value="LOCAL" />
|
<option name="project" value="LOCAL" />
|
||||||
<updated>1776724331443</updated>
|
<updated>1776724331443</updated>
|
||||||
</task>
|
</task>
|
||||||
<option name="localTasksCounter" value="13" />
|
<task id="LOCAL-00013" summary="refactor: rename packages and files to use 'flash' prefix for consistency">
|
||||||
|
<option name="closed" value="true" />
|
||||||
|
<created>1777199691803</created>
|
||||||
|
<option name="number" value="00013" />
|
||||||
|
<option name="presentableId" value="LOCAL-00013" />
|
||||||
|
<option name="project" value="LOCAL" />
|
||||||
|
<updated>1777199691804</updated>
|
||||||
|
</task>
|
||||||
|
<task id="LOCAL-00014" summary="fix: enhance global key validation and update template parameters">
|
||||||
|
<option name="closed" value="true" />
|
||||||
|
<created>1777451475753</created>
|
||||||
|
<option name="number" value="00014" />
|
||||||
|
<option name="presentableId" value="LOCAL-00014" />
|
||||||
|
<option name="project" value="LOCAL" />
|
||||||
|
<updated>1777451475753</updated>
|
||||||
|
</task>
|
||||||
|
<task id="LOCAL-00015" summary="feat: introduce WebSocket support with new endpoints and transaction propagation enhancements">
|
||||||
|
<option name="closed" value="true" />
|
||||||
|
<created>1778508899541</created>
|
||||||
|
<option name="number" value="00015" />
|
||||||
|
<option name="presentableId" value="LOCAL-00015" />
|
||||||
|
<option name="project" value="LOCAL" />
|
||||||
|
<updated>1778508899541</updated>
|
||||||
|
</task>
|
||||||
|
<option name="localTasksCounter" value="16" />
|
||||||
<servers />
|
<servers />
|
||||||
</component>
|
</component>
|
||||||
<component name="TypeScriptGeneratedFilesManager">
|
<component name="TypeScriptGeneratedFilesManager">
|
||||||
@@ -674,7 +458,12 @@
|
|||||||
<MESSAGE value="preparing for another refactoring..." />
|
<MESSAGE value="preparing for another refactoring..." />
|
||||||
<MESSAGE value="implement OpenAPI contributor integration for rate limiting and response headers" />
|
<MESSAGE value="implement OpenAPI contributor integration for rate limiting and response headers" />
|
||||||
<MESSAGE value="add core view extension with JTE and Thymeleaf support" />
|
<MESSAGE value="add core view extension with JTE and Thymeleaf support" />
|
||||||
<option name="LAST_COMMIT_MESSAGE" value="add core view extension with JTE and Thymeleaf support" />
|
<MESSAGE value="refactor: rename packages and files to use 'flash' prefix for consistency" />
|
||||||
|
<MESSAGE value="fix: enhance global key validation and update template parameters" />
|
||||||
|
<MESSAGE value="chore(release): prepare 2.1.0-SNAPSHOT" />
|
||||||
|
<MESSAGE value="feat: introduce Spec and Query interfaces with transaction propagation enhancements" />
|
||||||
|
<MESSAGE value="feat: introduce WebSocket support with new endpoints and transaction propagation enhancements" />
|
||||||
|
<option name="LAST_COMMIT_MESSAGE" value="feat: introduce WebSocket support with new endpoints and transaction propagation enhancements" />
|
||||||
</component>
|
</component>
|
||||||
<component name="XSLT-Support.FileAssociations.UIState">
|
<component name="XSLT-Support.FileAssociations.UIState">
|
||||||
<expand />
|
<expand />
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ Format: `<type>(<scope>): <short description>`
|
|||||||
|
|
||||||
Allowed scopes: `core`, `ext-jackson`, `ext-openapi`, `ext-oidc`, `ext-routeviewer`,
|
Allowed scopes: `core`, `ext-jackson`, `ext-openapi`, `ext-oidc`, `ext-routeviewer`,
|
||||||
`ext-view-core`, `ext-view-jte`, `ext-view-thymeleaf`, `ext-limiter`, `ext-web-bundler`,
|
`ext-view-core`, `ext-view-jte`, `ext-view-thymeleaf`, `ext-limiter`, `ext-web-bundler`,
|
||||||
`ext-data-core`, `ext-data-jdbc`, `ext-data-hibernate`, `release`, `deps`, `ci`.
|
`ext-mcp`, `ext-data-core`, `ext-data-jdbc`, `ext-data-hibernate`, `release`, `deps`, `ci`.
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ A high-performance HTTP/1.1 server library for Java 21, built around virtual thr
|
|||||||
| `flash-extensions/flash-ext-jackson` | Jackson JSON integration |
|
| `flash-extensions/flash-ext-jackson` | Jackson JSON integration |
|
||||||
| `flash-extensions/flash-ext-openapi` | OpenAPI 3.0 spec + Swagger UI |
|
| `flash-extensions/flash-ext-openapi` | OpenAPI 3.0 spec + Swagger UI |
|
||||||
| `flash-extensions/flash-ext-oidc` | OIDC Authorization Code + PKCE flow |
|
| `flash-extensions/flash-ext-oidc` | OIDC Authorization Code + PKCE flow |
|
||||||
|
| `flash-extensions/flash-ext-mcp` | MCP (Model Context Protocol) server — Streamable HTTP, optional OAuth2 via flash-ext-oidc |
|
||||||
| `flash-extensions/flash-ext-view-core` | Minimal shared SSR runtime primitives |
|
| `flash-extensions/flash-ext-view-core` | Minimal shared SSR runtime primitives |
|
||||||
| `flash-extensions/flash-ext-view-jte` | Opinionated jte SSR extension |
|
| `flash-extensions/flash-ext-view-jte` | Opinionated jte SSR extension |
|
||||||
| `flash-extensions/flash-ext-view-thymeleaf` | Opinionated Thymeleaf SSR extension |
|
| `flash-extensions/flash-ext-view-thymeleaf` | Opinionated Thymeleaf SSR extension |
|
||||||
@@ -142,6 +143,7 @@ See extension-specific READMEs for full details:
|
|||||||
- [`flash-ext-jackson`](flash-extensions/flash-ext-jackson/README.md)
|
- [`flash-ext-jackson`](flash-extensions/flash-ext-jackson/README.md)
|
||||||
- [`flash-ext-openapi`](flash-extensions/flash-ext-openapi/README.md)
|
- [`flash-ext-openapi`](flash-extensions/flash-ext-openapi/README.md)
|
||||||
- [`flash-ext-oidc`](flash-extensions/flash-ext-oidc/README.md)
|
- [`flash-ext-oidc`](flash-extensions/flash-ext-oidc/README.md)
|
||||||
|
- [`flash-ext-mcp`](flash-extensions/flash-ext-mcp/docs/README.md)
|
||||||
- [`flash-ext-view-jte`](flash-extensions/flash-ext-view-jte/README.md)
|
- [`flash-ext-view-jte`](flash-extensions/flash-ext-view-jte/README.md)
|
||||||
- [`flash-ext-view-thymeleaf`](flash-extensions/flash-ext-view-thymeleaf/README.md)
|
- [`flash-ext-view-thymeleaf`](flash-extensions/flash-ext-view-thymeleaf/README.md)
|
||||||
|
|
||||||
@@ -163,8 +165,96 @@ app.onException((ex, req, res) -> {
|
|||||||
|---|---|---|
|
|---|---|---|
|
||||||
| `port` | — | TCP port to bind |
|
| `port` | — | TCP port to bind |
|
||||||
| `host` | `"0.0.0.0"` | Bind address |
|
| `host` | `"0.0.0.0"` | Bind address |
|
||||||
|
| `tls` | `null` | TLS for the default listener — see [TLS](#tls) |
|
||||||
|
| `listeners` | `[]` | Multiple bind targets (port + host + optional TLS) on one app — see [TLS](#tls) |
|
||||||
| `maxHeaderBufferSize` | `65536` | Max size of the header buffer (bytes) |
|
| `maxHeaderBufferSize` | `65536` | Max size of the header buffer (bytes) |
|
||||||
|
|
||||||
|
## TLS
|
||||||
|
|
||||||
|
HTTPS and WSS are a transport-layer concern only: once a listener is bound, the accepted
|
||||||
|
`Socket` is either plain or an `SSLSocket` indistinguishably from `HttpServer`'s point of view
|
||||||
|
onward — the request parser, router, and WebSocket upgrade never branch on it. WSS is therefore
|
||||||
|
not a separate feature; it's a WebSocket upgrade running over whatever transport it was handed.
|
||||||
|
|
||||||
|
### Quick start
|
||||||
|
|
||||||
|
```java
|
||||||
|
FlashApp.create(FlashConfiguration.builder()
|
||||||
|
.port(443)
|
||||||
|
.tls(TlsConfig.keystore(Path.of("cert.p12"), "changeit"))
|
||||||
|
.build())
|
||||||
|
.get("/ping", (req, res) -> "pong") // HTTPS
|
||||||
|
.ws("/live", handler) // WSS, same route API
|
||||||
|
.start();
|
||||||
|
```
|
||||||
|
|
||||||
|
### Multiple listeners
|
||||||
|
|
||||||
|
One app can bind any number of ports, each independently plain or TLS:
|
||||||
|
|
||||||
|
```java
|
||||||
|
FlashApp.create(FlashConfiguration.builder()
|
||||||
|
.listener(new FlashConfiguration.Listener(80)) // plain
|
||||||
|
.listener(new FlashConfiguration.Listener(443, TlsConfig.keystore(cert, pass))) // TLS
|
||||||
|
.build());
|
||||||
|
```
|
||||||
|
|
||||||
|
A non-empty `listeners` list takes precedence over the top-level `port`/`host`/`tls` fields.
|
||||||
|
Each listener gets its own accept threads; the router, WS router, and virtual-thread executor
|
||||||
|
are shared by all of them — one app, N ports.
|
||||||
|
|
||||||
|
### `TlsConfig`
|
||||||
|
|
||||||
|
| Factory | Use |
|
||||||
|
|---|---|
|
||||||
|
| `TlsConfig.keystore(Path, String)` | Builds the `SSLContext` from a PKCS12/JKS keystore (type guessed from the extension). Pins `TLSv1.2`/`TLSv1.3` as enabled protocols; cipher suites are left at the JDK's own curated default. |
|
||||||
|
| `TlsConfig.ofContext(SSLContext)` | Escape hatch — the given `SSLContext` is used exactly as built. Flash never calls `setSSLParameters` on this path beyond what you explicitly request via `clientAuth`/`applicationProtocols`, so anything else you configured (custom `KeyManager`, ALPN, cipher suites) is authoritative. |
|
||||||
|
|
||||||
|
Chainable on either factory:
|
||||||
|
|
||||||
|
```java
|
||||||
|
TlsConfig.keystore(cert, pass)
|
||||||
|
.clientAuth(ClientAuth.REQUIRE) // mTLS: NONE (default) | OPTIONAL | REQUIRE
|
||||||
|
.applicationProtocols("acme-tls/1", "http/1.1") // ALPN, in preference order
|
||||||
|
```
|
||||||
|
|
||||||
|
**SNI** falls out of `keystore()` for free: a keystore holding more than one certificate entry
|
||||||
|
is matched against the requested hostname by each certificate's SAN (falling back to CN) — no
|
||||||
|
per-hostname config. The first entry in the keystore is the default when SNI is absent or
|
||||||
|
matches nothing (same convention as nginx/HAProxy's `default_server`).
|
||||||
|
|
||||||
|
**ALPN and custom certificate selection** (e.g. TLS-ALPN-01 / RFC 8737 for on-demand ACME
|
||||||
|
issuance): ALPN is resolved while consuming `ClientHello`/producing `ServerHello`, which always
|
||||||
|
precedes `Certificate` production. A custom `X509ExtendedKeyManager` passed via `ofContext`
|
||||||
|
can therefore read `engine.getHandshakeApplicationProtocol()` (or
|
||||||
|
`((SSLSocket) socket).getHandshakeApplicationProtocol()`) inside
|
||||||
|
`chooseEngineServerAlias`/`chooseServerAlias` — the negotiated protocol is already resolved by
|
||||||
|
then, so the certificate decision can key off it.
|
||||||
|
|
||||||
|
**mTLS with a private CA**: `clientAuth(...)` only requests/requires a client certificate;
|
||||||
|
`keystore()` deliberately doesn't expose a way to configure which CAs are trusted for that
|
||||||
|
certificate (it uses the JDK default trust store). For a private CA, build the `SSLContext`
|
||||||
|
yourself with a `TrustManagerFactory` and use `ofContext(...)`.
|
||||||
|
|
||||||
|
### Reading TLS info from a request
|
||||||
|
|
||||||
|
```java
|
||||||
|
app.get("/whoami", (req, res) -> {
|
||||||
|
if (!req.isSecure()) return "plain";
|
||||||
|
SSLSession session = req.sslSession(); // null iff !isSecure()
|
||||||
|
X509Certificate peer = (X509Certificate) session.getPeerCertificates()[0]; // mTLS only
|
||||||
|
return session.getCipherSuite() + " / " + session.getProtocol();
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
`Request.isSecure()` / `Request.sslSession()` cost nothing extra per request: the `SSLSocket`
|
||||||
|
reference is threaded through once per connection (same mechanism as `remoteAddress()`), and
|
||||||
|
`sslSession()` only calls `SSLSocket#getSession()` — a cached-field read once the handshake
|
||||||
|
that got the request this far has already completed, never a forced handshake.
|
||||||
|
|
||||||
|
`WebSocketSession` mirrors this exactly (`isSecure()`, `sslSession()`) by delegating to the
|
||||||
|
upgrading `Request` — no separate TLS state is tracked for WS.
|
||||||
|
|
||||||
## Architecture
|
## Architecture
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -181,6 +271,7 @@ ServerSocket.accept()
|
|||||||
- **Zero-allocation router** — `FastPathRouterImpl` uses `fpr-core`, a byte-level FSM that matches on `METHOD + path` bytes with no per-request allocation.
|
- **Zero-allocation router** — `FastPathRouterImpl` uses `fpr-core`, a byte-level FSM that matches on `METHOD + path` bytes with no per-request allocation.
|
||||||
- **Keep-alive** — `RequestParser` reuses its header buffer across requests on the same connection.
|
- **Keep-alive** — `RequestParser` reuses its header buffer across requests on the same connection.
|
||||||
- **Chunked transfer** — both chunked request bodies (decoded via `ChunkedInputStream`) and chunked response bodies are supported.
|
- **Chunked transfer** — both chunked request bodies (decoded via `ChunkedInputStream`) and chunked response bodies are supported.
|
||||||
|
- **TLS is transport-only** — see [TLS](#tls). Listeners bind either a plain `ServerSocket` or an `SSLServerSocket`; nothing downstream of `accept()` branches on which.
|
||||||
|
|
||||||
## Build & test
|
## Build & test
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
config:
|
||||||
|
target: "ws://localhost:8080/echo"
|
||||||
|
engines:
|
||||||
|
ws: {}
|
||||||
|
phases:
|
||||||
|
- duration: 30
|
||||||
|
arrivalRate: 50
|
||||||
|
rampTo: 500
|
||||||
|
name: "Riscaldamento progressivo"
|
||||||
|
- duration: 120
|
||||||
|
arrivalRate: 1000 # 1000 nuovi utenti al secondo
|
||||||
|
name: "Carico Estremo"
|
||||||
|
ensure:
|
||||||
|
maxErrorRate: 5
|
||||||
|
p99: 150
|
||||||
|
|
||||||
|
scenarios:
|
||||||
|
- name: "Saturazione Totale"
|
||||||
|
engine: ws
|
||||||
|
flow:
|
||||||
|
- loop:
|
||||||
|
- send: "Benchmark data"
|
||||||
|
# Rimosso il 'think' per eliminare il limite artificiale di 10msg/s per utente
|
||||||
|
count: 100 # Ogni utente spara a raffica 100 messaggi senza pause
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
# flash-ext-data-core
|
||||||
|
|
||||||
|
Core comune per il layer dati di Flash.
|
||||||
|
|
||||||
|
## Scopo
|
||||||
|
|
||||||
|
Questo modulo definisce il contratto transazionale condiviso tra le implementazioni backend.
|
||||||
|
Non parla con Hibernate o JDBC direttamente: espone solo astrazioni e un runtime minimale.
|
||||||
|
|
||||||
|
## Componenti
|
||||||
|
|
||||||
|
- `TxDefinition`: metadata immutabile della transazione.
|
||||||
|
- `TxStatus`: stato runtime restituito dal manager.
|
||||||
|
- `TxManager`: contratto per `begin`, `commit`, `rollback`.
|
||||||
|
- `Tx`: orchestration runtime e stack transazionale per thread.
|
||||||
|
- `ResourceRegistry`: storage thread-local di risorse e synchronizations.
|
||||||
|
- `Repository<T, ID>`: base repository auto-transazionale.
|
||||||
|
- `Spec<T>`: predicato componibile.
|
||||||
|
- `Query<T>`: oggetto query con spec, sort e paging.
|
||||||
|
- `SpecBuilder<T>`: DSL fluente per costruire spec tipizzate.
|
||||||
|
- `RepositorySupport<T, ID>`: helper interno condiviso.
|
||||||
|
- `TransactionPropagation`: semantica di propagazione.
|
||||||
|
- `TransactionIsolation`: livello di isolamento.
|
||||||
|
- `TxSynchronization`: hook lifecycle.
|
||||||
|
|
||||||
|
## Modello di esecuzione
|
||||||
|
|
||||||
|
Il flusso è:
|
||||||
|
|
||||||
|
1. `Tx.call(definition, work)` chiama `TxManager.begin(definition)`.
|
||||||
|
2. Il `TxManager` crea un `TxStatus` backend-specific.
|
||||||
|
3. Lo status viene pushato nello stack thread-local.
|
||||||
|
4. Il lavoro usa `Tx.resource(Class)` per ottenere la risorsa corrente.
|
||||||
|
5. A fine lavoro `Tx` decide tra `commit` e `rollback`.
|
||||||
|
6. Lo stack viene poppato e il thread-local viene pulito se vuoto.
|
||||||
|
|
||||||
|
## Propagation supportata
|
||||||
|
|
||||||
|
- `REQUIRED`: usa la tx attiva oppure ne apre una nuova.
|
||||||
|
- `REQUIRES_NEW`: sospende la tx corrente e apre una nuova tx.
|
||||||
|
- `SUPPORTS`: se esiste una tx attiva si aggancia, altrimenti esegue senza tx.
|
||||||
|
- `NOT_SUPPORTED`: sospende la tx corrente ed esegue senza tx.
|
||||||
|
- `MANDATORY`: richiede una tx attiva.
|
||||||
|
|
||||||
|
## Uso di `Repository`
|
||||||
|
|
||||||
|
`Repository` è la base comune per le repository concrete.
|
||||||
|
Ogni operazione pubblica usa internamente una tx `REQUIRED` o `REQUIRED` read-only.
|
||||||
|
|
||||||
|
Le sottoclassi implementano i metodi `doXxx(...)` del nuovo modello:
|
||||||
|
|
||||||
|
- `doFind(Query<T>)`
|
||||||
|
- `doFindOne(Spec<T>)`
|
||||||
|
- `doFindPage(Query<T>)`
|
||||||
|
- `doDeleteAll(Spec<T>)`
|
||||||
|
- `doUpdateAll(Spec<T>, T)`
|
||||||
|
|
||||||
|
I vecchi overload di `findAll(...)` e `findPage(...)` sono stati ridotti a una combinazione di `Query<T>` e `Spec<T>`.
|
||||||
|
|
||||||
|
```java
|
||||||
|
public abstract class Repository<T, ID> {
|
||||||
|
protected Repository(Tx tx) { ... }
|
||||||
|
protected final <R> R tx(Tx.TxCallable<R> work) { ... }
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Composizione con Flash
|
||||||
|
|
||||||
|
`DataExtension` registra:
|
||||||
|
|
||||||
|
- `Tx` nel `FlashContext`
|
||||||
|
- `TxManager` nel `FlashContext`
|
||||||
|
- un annotation processor per `@Transactional`
|
||||||
|
|
||||||
|
Questo rende il layer dati componibile con il sistema di extension di Flash senza stato globale.
|
||||||
|
|
||||||
|
## Note implementative
|
||||||
|
|
||||||
|
- Lo stack transazionale è thread-local e viene ripulito quando torna vuoto.
|
||||||
|
- Le risorse backend sono sospese e ripristinate per `REQUIRES_NEW` e `NOT_SUPPORTED`.
|
||||||
|
- `TxSynchronization` è il punto di aggancio per hook di commit/rollback/completion.
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-data-core</artifactId>
|
<artifactId>flash-ext-data-core</artifactId>
|
||||||
|
|||||||
+6
-4
@@ -7,7 +7,6 @@ import dev.relism.flash.ext.data.core.TransactionPropagation;
|
|||||||
import dev.relism.flash.extension.ExtensionPhase;
|
import dev.relism.flash.extension.ExtensionPhase;
|
||||||
import dev.relism.flash.extension.FlashContext;
|
import dev.relism.flash.extension.FlashContext;
|
||||||
import dev.relism.flash.extension.FlashExtension;
|
import dev.relism.flash.extension.FlashExtension;
|
||||||
import dev.relism.flash.extension.FlashRegistrar;
|
|
||||||
import dev.relism.flash.routing.Middleware;
|
import dev.relism.flash.routing.Middleware;
|
||||||
import jakarta.transaction.Transactional;
|
import jakarta.transaction.Transactional;
|
||||||
|
|
||||||
@@ -16,14 +15,16 @@ import java.util.Objects;
|
|||||||
|
|
||||||
public final class DataExtension implements FlashExtension {
|
public final class DataExtension implements FlashExtension {
|
||||||
private final TxManager txManager;
|
private final TxManager txManager;
|
||||||
|
private final Tx tx;
|
||||||
|
|
||||||
public DataExtension(TxManager txManager) {
|
public DataExtension(TxManager txManager) {
|
||||||
this.txManager = Objects.requireNonNull(txManager);
|
this.txManager = Objects.requireNonNull(txManager);
|
||||||
|
this.tx = new Tx(txManager);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void provide(FlashContext ctx) {
|
public void provide(FlashContext ctx) {
|
||||||
Tx.init(txManager);
|
ctx.provide(Tx.class, tx);
|
||||||
ctx.provide(TxManager.class, txManager);
|
ctx.provide(TxManager.class, txManager);
|
||||||
ctx.addAnnotationProcessor(handlerClass -> {
|
ctx.addAnnotationProcessor(handlerClass -> {
|
||||||
Transactional ann = handlerClass.getAnnotation(Transactional.class);
|
Transactional ann = handlerClass.getAnnotation(Transactional.class);
|
||||||
@@ -33,7 +34,7 @@ public final class DataExtension implements FlashExtension {
|
|||||||
TxDefinition definition = TxDefinition.DEFAULTS
|
TxDefinition definition = TxDefinition.DEFAULTS
|
||||||
.withPropagation(mapTxType(ann.value()));
|
.withPropagation(mapTxType(ann.value()));
|
||||||
Middleware middleware = next -> (req, res) -> {
|
Middleware middleware = next -> (req, res) -> {
|
||||||
return Tx.call(definition, () -> next.handle(req, res));
|
return tx.call(definition, () -> next.handle(req, res));
|
||||||
};
|
};
|
||||||
return List.of(middleware);
|
return List.of(middleware);
|
||||||
});
|
});
|
||||||
@@ -46,8 +47,9 @@ public final class DataExtension implements FlashExtension {
|
|||||||
|
|
||||||
private TransactionPropagation mapTxType(Transactional.TxType txType) {
|
private TransactionPropagation mapTxType(Transactional.TxType txType) {
|
||||||
return switch (txType) {
|
return switch (txType) {
|
||||||
case REQUIRED, SUPPORTS -> TransactionPropagation.REQUIRED;
|
case REQUIRED -> TransactionPropagation.REQUIRED;
|
||||||
case REQUIRES_NEW -> TransactionPropagation.REQUIRES_NEW;
|
case REQUIRES_NEW -> TransactionPropagation.REQUIRES_NEW;
|
||||||
|
case SUPPORTS -> TransactionPropagation.SUPPORTS;
|
||||||
case MANDATORY -> TransactionPropagation.MANDATORY;
|
case MANDATORY -> TransactionPropagation.MANDATORY;
|
||||||
case NOT_SUPPORTED, NEVER -> TransactionPropagation.NOT_SUPPORTED;
|
case NOT_SUPPORTED, NEVER -> TransactionPropagation.NOT_SUPPORTED;
|
||||||
};
|
};
|
||||||
|
|||||||
+28
@@ -0,0 +1,28 @@
|
|||||||
|
package dev.relism.flash.ext.data.core;
|
||||||
|
|
||||||
|
public record Query<T>(Spec<T> spec, Sort sort, Integer page, Integer size) {
|
||||||
|
public Query {
|
||||||
|
spec = spec == null ? Spec.all() : spec;
|
||||||
|
sort = sort == null ? Sort.unsorted() : sort;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static <T> Query<T> all() {
|
||||||
|
return new Query<>(Spec.all(), Sort.unsorted(), null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Query<T> where(Spec<T> spec) {
|
||||||
|
return new Query<>(spec, sort, page, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Query<T> orderBy(Sort sort) {
|
||||||
|
return new Query<>(spec, sort, page, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Query<T> page(int page, int size) {
|
||||||
|
return new Query<>(spec, sort, page, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isPaged() {
|
||||||
|
return page != null && size != null;
|
||||||
|
}
|
||||||
|
}
|
||||||
+99
-90
@@ -4,109 +4,118 @@ import java.util.ArrayList;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
|
|
||||||
/**
|
public abstract class Repository<T, ID> extends RepositorySupport<T, ID> {
|
||||||
* Base repository. Subclasses only extend this — never HibernateRepository
|
|
||||||
* or JdbcRepository directly. The concrete backing is transparent.
|
|
||||||
*
|
|
||||||
* Every method auto-wraps in REQUIRED transaction — safe to call with or
|
|
||||||
* without an active transaction on the thread.
|
|
||||||
*/
|
|
||||||
public abstract class Repository<T, ID> {
|
|
||||||
|
|
||||||
private final TxDefinition required = TxDefinition.DEFAULTS
|
protected Repository(Tx tx) {
|
||||||
.withPropagation(TransactionPropagation.REQUIRED);
|
super(tx);
|
||||||
|
}
|
||||||
// ── CRUD ──────────────────────────────────────────────────────────────────
|
|
||||||
|
|
||||||
public Optional<T> findById(ID id) {
|
public Optional<T> findById(ID id) {
|
||||||
return tx(() -> doFindById(id));
|
return roQuery(() -> doFindById(id));
|
||||||
}
|
|
||||||
|
|
||||||
public List<T> findAll() {
|
|
||||||
return tx(this::doFindAll);
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<T> findAll(int page, int size) {
|
|
||||||
return tx(() -> doFindAll(page, size));
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<T> findAll(Sort sort) {
|
|
||||||
return tx(() -> doFindAll(sort));
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<T> findAll(int page, int size, Sort sort) {
|
|
||||||
return tx(() -> doFindAll(page, size, sort));
|
|
||||||
}
|
|
||||||
|
|
||||||
public Page<T> findPage(int page, int size) {
|
|
||||||
return tx(() -> doFindPage(page, size));
|
|
||||||
}
|
|
||||||
|
|
||||||
public Page<T> findPage(int page, int size, Sort sort) {
|
|
||||||
return tx(() -> doFindPage(page, size, sort));
|
|
||||||
}
|
|
||||||
|
|
||||||
public T save(T entity) {
|
|
||||||
return tx(() -> doSave(entity));
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<T> saveAll(Iterable<T> entities) {
|
|
||||||
return tx(() -> {
|
|
||||||
List<T> saved = new ArrayList<>();
|
|
||||||
for (T e : entities) saved.add(doSave(e));
|
|
||||||
return saved;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public T update(T entity) {
|
|
||||||
return tx(() -> doUpdate(entity));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void delete(T entity) {
|
|
||||||
tx(() -> { doDelete(entity); return null; });
|
|
||||||
}
|
|
||||||
|
|
||||||
public void deleteById(ID id) {
|
|
||||||
tx(() -> { doDeleteById(id); return null; });
|
|
||||||
}
|
|
||||||
|
|
||||||
public void deleteAll(Iterable<T> entities) {
|
|
||||||
tx(() -> { entities.forEach(this::doDelete); return null; });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean existsById(ID id) {
|
public boolean existsById(ID id) {
|
||||||
return tx(() -> doExistsById(id));
|
return roQuery(() -> doExistsById(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
public long count() {
|
public long count() {
|
||||||
return tx(this::doCount);
|
return roQuery(this::doCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Auto-wrap helper ──────────────────────────────────────────────────────
|
public List<T> findAll() {
|
||||||
|
return findAll(Query.all());
|
||||||
/**
|
|
||||||
* Ensures the work runs inside a transaction.
|
|
||||||
* If one is already active (caller annotated @Transactional or inside Tx.run)
|
|
||||||
* it joins it — no new connection opened.
|
|
||||||
* If none is active it opens one, commits, and closes it transparently.
|
|
||||||
*/
|
|
||||||
protected final <R> R tx(Tx.TxCallable<R> work) {
|
|
||||||
return Tx.call(required, work);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Abstract — implemented by HibernateRepository / JdbcRepository ────────
|
public List<T> findAll(Spec<T> spec) {
|
||||||
|
return findAll(Query.<T>all().where(spec));
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<T> findAll(Query<T> query) {
|
||||||
|
return roQuery(() -> doFind(query));
|
||||||
|
}
|
||||||
|
|
||||||
|
public Page<T> findPage(Query<T> query) {
|
||||||
|
return roQuery(() -> doFindPage(query));
|
||||||
|
}
|
||||||
|
|
||||||
|
public Optional<T> findOne(Spec<T> spec) {
|
||||||
|
return roQuery(() -> doFindOne(spec));
|
||||||
|
}
|
||||||
|
|
||||||
|
public T save(T entity) {
|
||||||
|
return rwQuery(() -> doSave(entity));
|
||||||
|
}
|
||||||
|
|
||||||
|
public T update(T entity) {
|
||||||
|
return rwQuery(() -> doUpdate(entity));
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<T> saveAll(Iterable<T> entities) {
|
||||||
|
return rwQuery(() -> doSaveAll(entities));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void delete(T entity) {
|
||||||
|
rwQuery(() -> {
|
||||||
|
doDelete(entity);
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public void deleteById(ID id) {
|
||||||
|
rwQuery(() -> {
|
||||||
|
doDeleteById(id);
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public int deleteAll(Spec<T> spec) {
|
||||||
|
return rwQuery(() -> doDeleteAll(spec));
|
||||||
|
}
|
||||||
|
|
||||||
|
public int updateAll(Spec<T> spec, T patch) {
|
||||||
|
return rwQuery(() -> doUpdateAll(spec, patch));
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<T> findAll(int page, int size) {
|
||||||
|
return findAll(Query.<T>all().page(page, size));
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<T> findAll(Sort sort) {
|
||||||
|
return findAll(Query.<T>all().orderBy(sort));
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<T> findAll(int page, int size, Sort sort) {
|
||||||
|
return findAll(Query.<T>all().orderBy(sort).page(page, size));
|
||||||
|
}
|
||||||
|
|
||||||
|
public Page<T> findPage(int page, int size) {
|
||||||
|
return findPage(Query.<T>all().page(page, size));
|
||||||
|
}
|
||||||
|
|
||||||
|
public Page<T> findPage(int page, int size, Sort sort) {
|
||||||
|
return findPage(Query.<T>all().orderBy(sort).page(page, size));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void deleteAll(Iterable<T> entities) {
|
||||||
|
rwQuery(() -> {
|
||||||
|
for (T entity : entities) {
|
||||||
|
doDelete(entity);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
protected abstract Optional<T> doFindById(ID id);
|
protected abstract Optional<T> doFindById(ID id);
|
||||||
protected abstract List<T> doFindAll();
|
protected abstract List<T> doFind(Query<T> query);
|
||||||
protected abstract List<T> doFindAll(int page, int size);
|
protected abstract Optional<T> doFindOne(Spec<T> spec);
|
||||||
protected abstract List<T> doFindAll(Sort sort);
|
protected abstract Page<T> doFindPage(Query<T> query);
|
||||||
protected abstract List<T> doFindAll(int page, int size, Sort sort);
|
protected abstract boolean doExistsById(ID id);
|
||||||
protected abstract Page<T> doFindPage(int page, int size);
|
protected abstract long doCount();
|
||||||
protected abstract Page<T> doFindPage(int page, int size, Sort sort);
|
protected abstract T doSave(T entity);
|
||||||
protected abstract T doSave(T entity);
|
protected abstract List<T> doSaveAll(Iterable<T> entities);
|
||||||
protected abstract T doUpdate(T entity);
|
protected abstract T doUpdate(T entity);
|
||||||
protected abstract void doDelete(T entity);
|
protected abstract void doDelete(T entity);
|
||||||
protected abstract void doDeleteById(ID id);
|
protected abstract void doDeleteById(ID id);
|
||||||
protected abstract boolean doExistsById(ID id);
|
protected abstract int doDeleteAll(Spec<T> spec);
|
||||||
protected abstract long doCount();
|
protected abstract int doUpdateAll(Spec<T> spec, T patch);
|
||||||
}
|
}
|
||||||
+24
@@ -0,0 +1,24 @@
|
|||||||
|
package dev.relism.flash.ext.data.core;
|
||||||
|
|
||||||
|
public abstract class RepositorySupport<T, ID> {
|
||||||
|
private final Tx tx;
|
||||||
|
private final TxDefinition rw = TxDefinition.DEFAULTS
|
||||||
|
.withPropagation(TransactionPropagation.REQUIRED);
|
||||||
|
private final TxDefinition ro = rw.asReadOnly();
|
||||||
|
|
||||||
|
protected RepositorySupport(Tx tx) {
|
||||||
|
this.tx = tx;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected final Tx tx() {
|
||||||
|
return tx;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected final <R> R roQuery(Tx.TxCallable<R> work) {
|
||||||
|
return tx.call(ro, work);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected final <R> R rwQuery(Tx.TxCallable<R> work) {
|
||||||
|
return tx.call(rw, work);
|
||||||
|
}
|
||||||
|
}
|
||||||
+5
@@ -31,6 +31,11 @@ public final class ResourceRegistry {
|
|||||||
SYNCHRONIZATIONS.get().clear();
|
SYNCHRONIZATIONS.get().clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void cleanup() {
|
||||||
|
RESOURCES.remove();
|
||||||
|
SYNCHRONIZATIONS.remove();
|
||||||
|
}
|
||||||
|
|
||||||
public static <R> R get(TxResourceKey key, Class<R> type) {
|
public static <R> R get(TxResourceKey key, Class<R> type) {
|
||||||
Object value = RESOURCES.get().get(key);
|
Object value = RESOURCES.get().get(key);
|
||||||
if (value == null) {
|
if (value == null) {
|
||||||
|
|||||||
+4
@@ -7,6 +7,10 @@ public record Sort(List<Column> columns) {
|
|||||||
|
|
||||||
public record Column(String column, boolean asc) {}
|
public record Column(String column, boolean asc) {}
|
||||||
|
|
||||||
|
public static Sort unsorted() { return new Sort(List.of()); }
|
||||||
|
|
||||||
|
public boolean isSorted() { return !columns.isEmpty(); }
|
||||||
|
|
||||||
public static Sort by(String column) { return new Sort(List.of(new Column(column, true))); }
|
public static Sort by(String column) { return new Sort(List.of(new Column(column, true))); }
|
||||||
public static Sort desc(String column) { return new Sort(List.of(new Column(column, false))); }
|
public static Sort desc(String column) { return new Sort(List.of(new Column(column, false))); }
|
||||||
public static Sort by(String col, boolean asc){ return new Sort(List.of(new Column(col, asc))); }
|
public static Sort by(String col, boolean asc){ return new Sort(List.of(new Column(col, asc))); }
|
||||||
|
|||||||
+26
@@ -0,0 +1,26 @@
|
|||||||
|
package dev.relism.flash.ext.data.core;
|
||||||
|
|
||||||
|
@FunctionalInterface
|
||||||
|
public interface Spec<T> {
|
||||||
|
String toFragment(SpecContext ctx);
|
||||||
|
|
||||||
|
default Spec<T> and(Spec<T> other) {
|
||||||
|
return ctx -> "(" + this.toFragment(ctx) + " AND " + other.toFragment(ctx) + ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
default Spec<T> or(Spec<T> other) {
|
||||||
|
return ctx -> "(" + this.toFragment(ctx) + " OR " + other.toFragment(ctx) + ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
default Spec<T> not() {
|
||||||
|
return ctx -> "NOT (" + this.toFragment(ctx) + ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
static <T> Spec<T> all() {
|
||||||
|
return ctx -> "1=1";
|
||||||
|
}
|
||||||
|
|
||||||
|
static <T> Spec<T> none() {
|
||||||
|
return ctx -> "1=0";
|
||||||
|
}
|
||||||
|
}
|
||||||
+37
@@ -0,0 +1,37 @@
|
|||||||
|
package dev.relism.flash.ext.data.core;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Objects;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
public final class SpecBuilder<T> {
|
||||||
|
private SpecBuilder() {}
|
||||||
|
|
||||||
|
public static <T, V> FieldSpec<T, V> field(String column) {
|
||||||
|
return new FieldSpec<>(column);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class FieldSpec<T, V> {
|
||||||
|
private final String column;
|
||||||
|
|
||||||
|
private FieldSpec(String column) {
|
||||||
|
this.column = Objects.requireNonNull(column);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Spec<T> eq(V value) { return ctx -> column + " = " + ctx.bind(value); }
|
||||||
|
public Spec<T> neq(V value) { return ctx -> column + " != " + ctx.bind(value); }
|
||||||
|
public Spec<T> like(String pattern) { return ctx -> column + " like " + ctx.bind(pattern); }
|
||||||
|
public Spec<T> isNull() { return ctx -> column + " is null"; }
|
||||||
|
public Spec<T> isNotNull() { return ctx -> column + " is not null"; }
|
||||||
|
|
||||||
|
public Spec<T> in(Collection<V> values) {
|
||||||
|
return ctx -> column + " in (" + values.stream().map(ctx::bind).collect(Collectors.joining(", ")) + ")";
|
||||||
|
}
|
||||||
|
|
||||||
|
public <C extends Comparable<C>> Spec<T> gt(C value) { return ctx -> column + " > " + ctx.bind(value); }
|
||||||
|
public <C extends Comparable<C>> Spec<T> lt(C value) { return ctx -> column + " < " + ctx.bind(value); }
|
||||||
|
public <C extends Comparable<C>> Spec<T> between(C lo, C hi) {
|
||||||
|
return ctx -> column + " between " + ctx.bind(lo) + " and " + ctx.bind(hi);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+5
@@ -0,0 +1,5 @@
|
|||||||
|
package dev.relism.flash.ext.data.core;
|
||||||
|
|
||||||
|
public interface SpecContext {
|
||||||
|
String bind(Object value);
|
||||||
|
}
|
||||||
+1
@@ -3,6 +3,7 @@ package dev.relism.flash.ext.data.core;
|
|||||||
public enum TransactionPropagation {
|
public enum TransactionPropagation {
|
||||||
REQUIRED,
|
REQUIRED,
|
||||||
REQUIRES_NEW,
|
REQUIRES_NEW,
|
||||||
|
SUPPORTS,
|
||||||
NOT_SUPPORTED,
|
NOT_SUPPORTED,
|
||||||
MANDATORY
|
MANDATORY
|
||||||
}
|
}
|
||||||
|
|||||||
+38
-31
@@ -2,83 +2,78 @@ package dev.relism.flash.ext.data.core;
|
|||||||
|
|
||||||
import java.util.ArrayDeque;
|
import java.util.ArrayDeque;
|
||||||
import java.util.Deque;
|
import java.util.Deque;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
public final class Tx {
|
public final class Tx {
|
||||||
private static final ThreadLocal<Deque<TxStatus>> STATUS_STACK =
|
private static final ThreadLocal<Deque<TxStatus>> STATUS_STACK =
|
||||||
ThreadLocal.withInitial(ArrayDeque::new);
|
ThreadLocal.withInitial(ArrayDeque::new);
|
||||||
private static volatile TxManager manager;
|
private final TxManager manager;
|
||||||
|
|
||||||
private Tx() {}
|
public Tx(TxManager txManager) {
|
||||||
|
this.manager = Objects.requireNonNull(txManager);
|
||||||
public static void init(TxManager txManager) {
|
|
||||||
if (manager != null) {
|
|
||||||
throw new IllegalStateException("TxManager already initialized");
|
|
||||||
}
|
|
||||||
manager = txManager;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void run(TxRunnable work) {
|
public void run(TxRunnable work) {
|
||||||
run(TxDefinition.DEFAULTS, work);
|
run(TxDefinition.DEFAULTS, work);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void run(TxDefinition definition, TxRunnable work) {
|
public void run(TxDefinition definition, TxRunnable work) {
|
||||||
call(definition, () -> {
|
call(definition, () -> {
|
||||||
work.run();
|
work.run();
|
||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public static <T> T call(TxCallable<T> work) {
|
public <T> T call(TxCallable<T> work) {
|
||||||
return call(TxDefinition.DEFAULTS, work);
|
return call(TxDefinition.DEFAULTS, work);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static <T> T call(TxDefinition definition, TxCallable<T> work) {
|
public <T> T call(TxDefinition definition, TxCallable<T> work) {
|
||||||
TxStatus status = manager().begin(definition);
|
TxStatus status = manager.begin(definition);
|
||||||
pushStatus(status);
|
pushStatus(status);
|
||||||
try {
|
try {
|
||||||
T result = work.call();
|
T result = work.call();
|
||||||
if (status.isRollbackOnly()) {
|
if (status.isRollbackOnly()) {
|
||||||
manager().rollback(status);
|
manager.rollback(status);
|
||||||
} else {
|
} else {
|
||||||
manager().commit(status);
|
manager.commit(status);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
manager().rollback(status);
|
silentRollback(status);
|
||||||
throw (e instanceof TxException txException) ? txException : new TxException(e);
|
throw (e instanceof TxException txException) ? txException : new TxException(e);
|
||||||
|
} catch (Throwable t) {
|
||||||
|
silentRollback(status);
|
||||||
|
throw sneakyThrow(t);
|
||||||
} finally {
|
} finally {
|
||||||
popStatus();
|
popStatus();
|
||||||
|
if (STATUS_STACK.get().isEmpty()) {
|
||||||
|
STATUS_STACK.remove();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isActive() {
|
public boolean isActive() {
|
||||||
return !STATUS_STACK.get().isEmpty();
|
return !STATUS_STACK.get().isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setRollbackOnly() {
|
public void setRollbackOnly() {
|
||||||
currentStatus().markRollbackOnly();
|
currentStatus().markRollbackOnly();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static <R> R resource(Class<R> type) {
|
public <R> R resource(Class<R> type) {
|
||||||
return currentStatus().resource(type);
|
return currentStatus().resource(type);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TxDefinition requiresNew() {
|
public TxDefinition requiresNew() {
|
||||||
return TxDefinition.DEFAULTS.withPropagation(TransactionPropagation.REQUIRES_NEW);
|
return TxDefinition.DEFAULTS.withPropagation(TransactionPropagation.REQUIRES_NEW);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TxDefinition readOnly() {
|
public TxDefinition readOnly() {
|
||||||
return TxDefinition.DEFAULTS.asReadOnly();
|
return TxDefinition.DEFAULTS.asReadOnly();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static TxManager manager() {
|
private TxStatus currentStatus() {
|
||||||
if (manager == null) {
|
|
||||||
throw new IllegalStateException("No TxManager installed");
|
|
||||||
}
|
|
||||||
return manager;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static TxStatus currentStatus() {
|
|
||||||
TxStatus status = STATUS_STACK.get().peek();
|
TxStatus status = STATUS_STACK.get().peek();
|
||||||
if (status == null) {
|
if (status == null) {
|
||||||
throw new IllegalStateException("No active transaction");
|
throw new IllegalStateException("No active transaction");
|
||||||
@@ -86,17 +81,29 @@ public final class Tx {
|
|||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void pushStatus(TxStatus status) {
|
private void pushStatus(TxStatus status) {
|
||||||
STATUS_STACK.get().push(status);
|
STATUS_STACK.get().push(status);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void popStatus() {
|
private void popStatus() {
|
||||||
Deque<TxStatus> stack = STATUS_STACK.get();
|
Deque<TxStatus> stack = STATUS_STACK.get();
|
||||||
if (!stack.isEmpty()) {
|
if (!stack.isEmpty()) {
|
||||||
stack.pop();
|
stack.pop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void silentRollback(TxStatus status) {
|
||||||
|
try {
|
||||||
|
manager.rollback(status);
|
||||||
|
} catch (Exception ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
private static <E extends Throwable> RuntimeException sneakyThrow(Throwable t) throws E {
|
||||||
|
throw (E) t;
|
||||||
|
}
|
||||||
|
|
||||||
@FunctionalInterface
|
@FunctionalInterface
|
||||||
public interface TxRunnable {
|
public interface TxRunnable {
|
||||||
void run();
|
void run();
|
||||||
|
|||||||
@@ -0,0 +1,92 @@
|
|||||||
|
# flash-ext-data-hibernate
|
||||||
|
|
||||||
|
Backend Hibernate per `flash-ext-data-core`.
|
||||||
|
|
||||||
|
## Scopo
|
||||||
|
|
||||||
|
Questo modulo implementa `TxManager` sopra `SessionFactory` e fornisce una base repository Hibernate-centric.
|
||||||
|
|
||||||
|
## Come si usa
|
||||||
|
|
||||||
|
### 1. Creare il manager
|
||||||
|
|
||||||
|
```java
|
||||||
|
SessionFactory sessionFactory = ...;
|
||||||
|
HibernateTxManager txManager = new HibernateTxManager(sessionFactory);
|
||||||
|
DataExtension extension = new DataExtension(txManager);
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. Installare l’estensione in Flash
|
||||||
|
|
||||||
|
L’estensione registra `Tx` e `TxManager` nel `FlashContext`.
|
||||||
|
Le handler class-based annotate con `@Transactional` vengono wrappate automaticamente.
|
||||||
|
|
||||||
|
### 3. Definire una repository
|
||||||
|
|
||||||
|
```java
|
||||||
|
public final class UserRepository extends HibernateRepository<User, Long> {
|
||||||
|
public UserRepository(Tx tx) {
|
||||||
|
super(tx, User.class);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Con il nuovo modello query/spec puoi esporre campi riusabili come costanti:
|
||||||
|
|
||||||
|
```java
|
||||||
|
public final class UserRepository extends HibernateRepository<User, Long> {
|
||||||
|
public static final SpecBuilder.FieldSpec<User, String> EMAIL = SpecBuilder.field("u.email");
|
||||||
|
public static final SpecBuilder.FieldSpec<User, Boolean> ACTIVE = SpecBuilder.field("u.active");
|
||||||
|
|
||||||
|
public UserRepository(Tx tx) {
|
||||||
|
super(tx, User.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Optional<User> findByEmail(String email) {
|
||||||
|
return findOne(EMAIL.eq(email));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Le query domain-specific possono usare gli helper della base class:
|
||||||
|
|
||||||
|
```java
|
||||||
|
public List<User> findByEmailDomain(String domain) {
|
||||||
|
return findMany("from User u where u.email like :email", q ->
|
||||||
|
q.setParameter("email", "%@" + domain)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Come funziona sotto
|
||||||
|
|
||||||
|
- La tx corrente è rappresentata da `HibernateTxStatus`.
|
||||||
|
- La risorsa esposta al core è una `Session`.
|
||||||
|
- `Tx.resource(Session.class)` recupera la `Session` dal contesto corrente.
|
||||||
|
- `REQUIRES_NEW` sospende lo status attivo e apre una nuova `Session`.
|
||||||
|
- `NOT_SUPPORTED` sospende la tx attiva e continua senza sessione bindata.
|
||||||
|
|
||||||
|
## Repository base
|
||||||
|
|
||||||
|
`HibernateRepository` fornisce:
|
||||||
|
|
||||||
|
- `findById`, `findAll`, `findPage`, `findOne`
|
||||||
|
- `save`, `update`, `delete`, `saveAll`
|
||||||
|
- bulk `deleteAll(Spec<T>)` e `updateAll(Spec<T>, T)`
|
||||||
|
- helper HQL: `hql(...)`, `hqlMutate(...)`
|
||||||
|
|
||||||
|
Le classi concrete devono solo implementare query di dominio, non il plumbing transazionale.
|
||||||
|
|
||||||
|
## Semantica transazionale
|
||||||
|
|
||||||
|
- `REQUIRED`: join o apertura nuova tx.
|
||||||
|
- `REQUIRES_NEW`: sospensione del contesto corrente.
|
||||||
|
- `SUPPORTS`: join se c’è tx, altrimenti no-op.
|
||||||
|
- `NOT_SUPPORTED`: sospende e prosegue senza tx.
|
||||||
|
- `MANDATORY`: fallisce se non c’è tx.
|
||||||
|
|
||||||
|
## Note
|
||||||
|
|
||||||
|
- `Session` viene chiusa a fine tx nuova.
|
||||||
|
- Le synchronizations vengono eseguite al commit/rollback.
|
||||||
|
- Il backend è pensato per essere usato tramite la base class, non direttamente.
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-data-hibernate</artifactId>
|
<artifactId>flash-ext-data-hibernate</artifactId>
|
||||||
|
|||||||
+76
-86
@@ -1,79 +1,74 @@
|
|||||||
package dev.relism.flash.ext.data.hibernate;
|
package dev.relism.flash.ext.data.hibernate;
|
||||||
|
|
||||||
import dev.relism.flash.ext.data.core.*;
|
import dev.relism.flash.ext.data.core.*;
|
||||||
|
import jakarta.persistence.TypedQuery;
|
||||||
import org.hibernate.Session;
|
import org.hibernate.Session;
|
||||||
import org.hibernate.query.MutationQuery;
|
import org.hibernate.query.MutationQuery;
|
||||||
|
|
||||||
import jakarta.persistence.TypedQuery;
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.*;
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Optional;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
/**
|
public abstract class HibernateRepository<T, ID extends Serializable> extends Repository<T, ID> {
|
||||||
* Hibernate-backed repository base.
|
|
||||||
* Never extend this directly — extend {@link Repository} from the core.
|
|
||||||
* This class is instantiated internally by flash-ext-data-hibernate.
|
|
||||||
*/
|
|
||||||
public abstract class HibernateRepository<T, ID extends Serializable>
|
|
||||||
extends Repository<T, ID> {
|
|
||||||
|
|
||||||
private final Class<T> type;
|
private final Class<T> type;
|
||||||
|
|
||||||
protected HibernateRepository(Class<T> type) {
|
protected HibernateRepository(Tx tx, Class<T> type) {
|
||||||
|
super(tx);
|
||||||
this.type = type;
|
this.type = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Session — always safe, tx() wrapper guarantees active transaction ─────
|
|
||||||
|
|
||||||
protected Session session() {
|
protected Session session() {
|
||||||
return Tx.resource(Session.class);
|
return tx().resource(Session.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Repository abstract impl ──────────────────────────────────────────────
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Optional<T> doFindById(ID id) {
|
protected Optional<T> doFindById(ID id) {
|
||||||
return Optional.ofNullable(session().get(type, id));
|
return Optional.ofNullable(session().get(type, id));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<T> doFindAll() {
|
protected List<T> doFind(Query<T> query) {
|
||||||
return hql("from " + type.getSimpleName()).getResultList();
|
HibernateSpecContext ctx = new HibernateSpecContext();
|
||||||
|
String where = query.spec() != null ? " where " + query.spec().toFragment(ctx) : "";
|
||||||
|
String order = query.sort() != null && query.sort().isSorted() ? " order by " + orderClause(query.sort()) : "";
|
||||||
|
|
||||||
|
TypedQuery<T> q = session().createQuery("from " + type.getSimpleName() + where + order, type);
|
||||||
|
ctx.applyParameters(q);
|
||||||
|
|
||||||
|
if (query.isPaged()) {
|
||||||
|
q.setFirstResult(query.page() * query.size());
|
||||||
|
q.setMaxResults(query.size());
|
||||||
|
}
|
||||||
|
return q.getResultList();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<T> doFindAll(int page, int size) {
|
protected Optional<T> doFindOne(Spec<T> spec) {
|
||||||
return hql("from " + type.getSimpleName())
|
return doFind(Query.<T>all().where(spec).page(0, 1)).stream().findFirst();
|
||||||
.setFirstResult(page * size)
|
|
||||||
.setMaxResults(size)
|
|
||||||
.getResultList();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<T> doFindAll(Sort sort) {
|
protected Page<T> doFindPage(Query<T> query) {
|
||||||
return hql("from " + type.getSimpleName() + orderClause(sort))
|
if (!query.isPaged()) {
|
||||||
.getResultList();
|
throw new IllegalArgumentException("Paged query requires page and size");
|
||||||
|
}
|
||||||
|
long total = countWhere(query.spec());
|
||||||
|
List<T> content = doFind(query);
|
||||||
|
return new Page<>(content, query.page(), query.size(), total);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<T> doFindAll(int page, int size, Sort sort) {
|
protected boolean doExistsById(ID id) {
|
||||||
return hql("from " + type.getSimpleName() + orderClause(sort))
|
return doFindById(id).isPresent();
|
||||||
.setFirstResult(page * size)
|
|
||||||
.setMaxResults(size)
|
|
||||||
.getResultList();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Page<T> doFindPage(int page, int size) {
|
protected long doCount() {
|
||||||
long total = doCount();
|
return countWhere(Spec.all());
|
||||||
return new Page<>(doFindAll(page, size), page, size, total);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected Page<T> doFindPage(int page, int size, Sort sort) {
|
|
||||||
long total = doCount();
|
|
||||||
return new Page<>(doFindAll(page, size, sort), page, size, total);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -82,6 +77,22 @@ public abstract class HibernateRepository<T, ID extends Serializable>
|
|||||||
return entity;
|
return entity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected List<T> doSaveAll(Iterable<T> entities) {
|
||||||
|
List<T> saved = new ArrayList<>();
|
||||||
|
Session s = session();
|
||||||
|
int i = 0;
|
||||||
|
for (T entity : entities) {
|
||||||
|
s.persist(entity);
|
||||||
|
saved.add(entity);
|
||||||
|
if (++i % 50 == 0) {
|
||||||
|
s.flush();
|
||||||
|
s.clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return saved;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected T doUpdate(T entity) {
|
protected T doUpdate(T entity) {
|
||||||
return session().merge(entity);
|
return session().merge(entity);
|
||||||
@@ -99,66 +110,37 @@ public abstract class HibernateRepository<T, ID extends Serializable>
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected boolean doExistsById(ID id) {
|
protected int doDeleteAll(Spec<T> spec) {
|
||||||
return doFindById(id).isPresent();
|
HibernateSpecContext ctx = new HibernateSpecContext();
|
||||||
|
String where = " where " + spec.toFragment(ctx);
|
||||||
|
MutationQuery q = session().createMutationQuery("delete from " + type.getSimpleName() + where);
|
||||||
|
ctx.applyParameters(q);
|
||||||
|
return q.executeUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected long doCount() {
|
protected int doUpdateAll(Spec<T> spec, T patch) {
|
||||||
return session()
|
throw new UnsupportedOperationException("Override doUpdateAll() for bulk UPDATE support");
|
||||||
.createQuery("select count(*) from " + type.getSimpleName(), Long.class)
|
|
||||||
.uniqueResultOptional()
|
|
||||||
.orElse(0L);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Query helpers — usabili nelle sottoclassi domain ─────────────────────
|
protected List<T> hql(String hql, Consumer<TypedQuery<T>> params) {
|
||||||
|
return roQuery(() -> {
|
||||||
protected TypedQuery<T> hql(String hql) {
|
TypedQuery<T> q = session().createQuery(hql, type);
|
||||||
return session().createQuery(hql, type);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected <R> TypedQuery<R> hql(String hql, Class<R> resultType) {
|
|
||||||
return session().createQuery(hql, resultType);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected Optional<T> findOne(String hql, Consumer<TypedQuery<T>> params) {
|
|
||||||
TypedQuery<T> q = hql(hql);
|
|
||||||
params.accept(q);
|
|
||||||
return q.getResultStream().findFirst();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected List<T> findMany(String hql, Consumer<TypedQuery<T>> params) {
|
|
||||||
return tx(() -> {
|
|
||||||
TypedQuery<T> q = hql(hql);
|
|
||||||
params.accept(q);
|
params.accept(q);
|
||||||
return q.getResultList();
|
return q.getResultList();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected List<T> findMany(String hql, Consumer<TypedQuery<T>> params,
|
protected <R> List<R> hql(String hql, Class<R> resultType, Consumer<TypedQuery<R>> params) {
|
||||||
int page, int size) {
|
return roQuery(() -> {
|
||||||
return tx(() -> {
|
TypedQuery<R> q = session().createQuery(hql, resultType);
|
||||||
TypedQuery<T> q = hql(hql);
|
|
||||||
params.accept(q);
|
params.accept(q);
|
||||||
return q.setFirstResult(page * size).setMaxResults(size).getResultList();
|
return q.getResultList();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
protected Page<T> findManyPaged(String hql, String countHql,
|
protected int hqlMutate(String hql, Consumer<MutationQuery> params) {
|
||||||
Consumer<TypedQuery<T>> params,
|
return rwQuery(() -> {
|
||||||
int page, int size) {
|
|
||||||
return tx(() -> {
|
|
||||||
long total = session()
|
|
||||||
.createQuery(countHql, Long.class)
|
|
||||||
.uniqueResultOptional()
|
|
||||||
.orElse(0L);
|
|
||||||
List<T> content = findMany(hql, params, page, size);
|
|
||||||
return new Page<>(content, page, size, total);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
protected int execute(String hql, Consumer<MutationQuery> params) {
|
|
||||||
return tx(() -> {
|
|
||||||
MutationQuery q = session().createMutationQuery(hql);
|
MutationQuery q = session().createMutationQuery(hql);
|
||||||
params.accept(q);
|
params.accept(q);
|
||||||
return q.executeUpdate();
|
return q.executeUpdate();
|
||||||
@@ -169,8 +151,16 @@ public abstract class HibernateRepository<T, ID extends Serializable>
|
|||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private long countWhere(Spec<T> spec) {
|
||||||
|
HibernateSpecContext ctx = new HibernateSpecContext();
|
||||||
|
String where = spec != null ? " where " + spec.toFragment(ctx) : "";
|
||||||
|
TypedQuery<Long> q = session().createQuery("select count(*) from " + type.getSimpleName() + where, Long.class);
|
||||||
|
ctx.applyParameters(q);
|
||||||
|
return q.getResultStream().findFirst().orElse(0L);
|
||||||
|
}
|
||||||
|
|
||||||
private String orderClause(Sort sort) {
|
private String orderClause(Sort sort) {
|
||||||
return " order by " + sort.columns().stream()
|
return sort.columns().stream()
|
||||||
.map(c -> c.column() + (c.asc() ? " ASC" : " DESC"))
|
.map(c -> c.column() + (c.asc() ? " ASC" : " DESC"))
|
||||||
.collect(Collectors.joining(", "));
|
.collect(Collectors.joining(", "));
|
||||||
}
|
}
|
||||||
|
|||||||
+28
@@ -0,0 +1,28 @@
|
|||||||
|
package dev.relism.flash.ext.data.hibernate;
|
||||||
|
|
||||||
|
import dev.relism.flash.ext.data.core.SpecContext;
|
||||||
|
import jakarta.persistence.TypedQuery;
|
||||||
|
import org.hibernate.query.MutationQuery;
|
||||||
|
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
final class HibernateSpecContext implements SpecContext {
|
||||||
|
private final Map<String, Object> params = new LinkedHashMap<>();
|
||||||
|
private int counter;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String bind(Object value) {
|
||||||
|
String name = "p" + (++counter);
|
||||||
|
params.put(name, value);
|
||||||
|
return ":" + name;
|
||||||
|
}
|
||||||
|
|
||||||
|
void applyParameters(TypedQuery<?> query) {
|
||||||
|
params.forEach(query::setParameter);
|
||||||
|
}
|
||||||
|
|
||||||
|
void applyParameters(MutationQuery query) {
|
||||||
|
params.forEach(query::setParameter);
|
||||||
|
}
|
||||||
|
}
|
||||||
+88
-19
@@ -8,6 +8,7 @@ import java.util.Objects;
|
|||||||
|
|
||||||
public class HibernateTxManager implements TxManager {
|
public class HibernateTxManager implements TxManager {
|
||||||
private static final TxResourceKey HIBERNATE_STATUS_KEY = TxResourceKey.of("hibernate.tx.status");
|
private static final TxResourceKey HIBERNATE_STATUS_KEY = TxResourceKey.of("hibernate.tx.status");
|
||||||
|
private static final TxResourceKey HIBERNATE_SUSPENDED_KEY = TxResourceKey.of("hibernate.tx.suspended");
|
||||||
|
|
||||||
private final SessionFactory sf;
|
private final SessionFactory sf;
|
||||||
|
|
||||||
@@ -22,35 +23,56 @@ public class HibernateTxManager implements TxManager {
|
|||||||
? joinExisting(definition)
|
? joinExisting(definition)
|
||||||
: beginNew(definition);
|
: beginNew(definition);
|
||||||
case REQUIRES_NEW -> beginNew(definition);
|
case REQUIRES_NEW -> beginNew(definition);
|
||||||
|
case SUPPORTS -> ResourceRegistry.isBound(HIBERNATE_STATUS_KEY)
|
||||||
|
? joinExisting(definition)
|
||||||
|
: noOp(definition);
|
||||||
case MANDATORY -> {
|
case MANDATORY -> {
|
||||||
if (!ResourceRegistry.isBound(HIBERNATE_STATUS_KEY))
|
if (!ResourceRegistry.isBound(HIBERNATE_STATUS_KEY))
|
||||||
throw new IllegalStateException("MANDATORY: no active transaction");
|
throw new IllegalStateException("MANDATORY: no active transaction");
|
||||||
yield joinExisting(definition);
|
yield joinExisting(definition);
|
||||||
}
|
}
|
||||||
case NOT_SUPPORTED -> throw new UnsupportedOperationException("NOT_SUPPORTED is not implemented");
|
case NOT_SUPPORTED -> {
|
||||||
|
HibernateTxStatus suspended = suspendIfNeeded();
|
||||||
|
yield noOp(definition, suspended);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
private TxStatus beginNew(TxDefinition definition) {
|
private TxStatus beginNew(TxDefinition definition) {
|
||||||
HibernateTxStatus suspended = ResourceRegistry.getOrNull(HIBERNATE_STATUS_KEY, HibernateTxStatus.class);
|
return beginNew(definition, suspendIfNeeded());
|
||||||
if (suspended != null) {
|
}
|
||||||
ResourceRegistry.unbind(HIBERNATE_STATUS_KEY);
|
|
||||||
}
|
private TxStatus beginNew(TxDefinition definition, HibernateTxStatus suspended) {
|
||||||
Session s = sf.openSession();
|
Session s = sf.openSession();
|
||||||
s.beginTransaction();
|
boolean bound = false;
|
||||||
if (definition.readOnly()) s.setDefaultReadOnly(true);
|
try {
|
||||||
if (definition.isolation() != TransactionIsolation.DEFAULT) {
|
s.beginTransaction();
|
||||||
s.doWork(connection -> connection.setTransactionIsolation(definition.isolation().level()));
|
if (definition.readOnly()) s.setDefaultReadOnly(true);
|
||||||
|
if (definition.isolation() != TransactionIsolation.DEFAULT) {
|
||||||
|
s.doWork(connection -> connection.setTransactionIsolation(definition.isolation().level()));
|
||||||
|
}
|
||||||
|
HibernateTxStatus status = new HibernateTxStatus(
|
||||||
|
s,
|
||||||
|
true,
|
||||||
|
definition.readOnly(),
|
||||||
|
suspended,
|
||||||
|
new HibernateTxStatus.RollbackMarker()
|
||||||
|
);
|
||||||
|
ResourceRegistry.bind(HIBERNATE_STATUS_KEY, status);
|
||||||
|
bound = true;
|
||||||
|
return status;
|
||||||
|
} catch (RuntimeException e) {
|
||||||
|
silentClose(s);
|
||||||
|
throw e;
|
||||||
|
} catch (Exception e) {
|
||||||
|
silentClose(s);
|
||||||
|
throw new TxException(e);
|
||||||
|
} finally {
|
||||||
|
if (!bound && suspended != null) {
|
||||||
|
ResourceRegistry.unbind(HIBERNATE_SUSPENDED_KEY);
|
||||||
|
ResourceRegistry.bind(HIBERNATE_STATUS_KEY, suspended);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
HibernateTxStatus status = new HibernateTxStatus(
|
|
||||||
s,
|
|
||||||
true,
|
|
||||||
definition.readOnly(),
|
|
||||||
suspended,
|
|
||||||
new HibernateTxStatus.RollbackMarker()
|
|
||||||
);
|
|
||||||
ResourceRegistry.bind(HIBERNATE_STATUS_KEY, status);
|
|
||||||
return status;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private TxStatus joinExisting(TxDefinition definition) {
|
private TxStatus joinExisting(TxDefinition definition) {
|
||||||
@@ -67,10 +89,29 @@ public class HibernateTxManager implements TxManager {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private TxStatus noOp(TxDefinition definition) {
|
||||||
|
return noOp(definition, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
private TxStatus noOp(TxDefinition definition, HibernateTxStatus suspended) {
|
||||||
|
return new HibernateTxStatus(null, false, definition.readOnly(), suspended, new HibernateTxStatus.RollbackMarker());
|
||||||
|
}
|
||||||
|
|
||||||
|
private HibernateTxStatus suspendIfNeeded() {
|
||||||
|
HibernateTxStatus suspended = ResourceRegistry.getOrNull(HIBERNATE_STATUS_KEY, HibernateTxStatus.class);
|
||||||
|
if (suspended != null) {
|
||||||
|
ResourceRegistry.unbind(HIBERNATE_STATUS_KEY);
|
||||||
|
ResourceRegistry.bind(HIBERNATE_SUSPENDED_KEY, suspended);
|
||||||
|
}
|
||||||
|
return suspended;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void commit(TxStatus status) {
|
public void commit(TxStatus status) {
|
||||||
HibernateTxStatus s = (HibernateTxStatus) status;
|
HibernateTxStatus s = (HibernateTxStatus) status;
|
||||||
if (!s.isNewTransaction()) {
|
if (!s.isNewTransaction()) {
|
||||||
|
resumeIfNeeded(s);
|
||||||
|
cleanupIfIdle();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
@@ -83,6 +124,7 @@ public class HibernateTxManager implements TxManager {
|
|||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
cleanupAndResume(s);
|
cleanupAndResume(s);
|
||||||
|
cleanupIfIdle();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -91,6 +133,8 @@ public class HibernateTxManager implements TxManager {
|
|||||||
HibernateTxStatus s = (HibernateTxStatus) status;
|
HibernateTxStatus s = (HibernateTxStatus) status;
|
||||||
if (!s.isNewTransaction()) {
|
if (!s.isNewTransaction()) {
|
||||||
s.markRollbackOnly();
|
s.markRollbackOnly();
|
||||||
|
resumeIfNeeded(s);
|
||||||
|
cleanupIfIdle();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
@@ -100,15 +144,40 @@ public class HibernateTxManager implements TxManager {
|
|||||||
ResourceRegistry.fireSynchronizations(TxOutcome.ROLLED_BACK);
|
ResourceRegistry.fireSynchronizations(TxOutcome.ROLLED_BACK);
|
||||||
} finally {
|
} finally {
|
||||||
cleanupAndResume(s);
|
cleanupAndResume(s);
|
||||||
|
cleanupIfIdle();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void cleanupAndResume(HibernateTxStatus status) {
|
private void cleanupAndResume(HibernateTxStatus status) {
|
||||||
ResourceRegistry.unbind(HIBERNATE_STATUS_KEY);
|
ResourceRegistry.unbind(HIBERNATE_STATUS_KEY);
|
||||||
status.session().close();
|
silentClose(status.session());
|
||||||
|
resumeIfNeeded(status);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void cleanupIfIdle() {
|
||||||
|
if (!ResourceRegistry.isBound(HIBERNATE_STATUS_KEY) && !ResourceRegistry.isBound(HIBERNATE_SUSPENDED_KEY)) {
|
||||||
|
ResourceRegistry.cleanup();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void resumeIfNeeded(HibernateTxStatus status) {
|
||||||
HibernateTxStatus suspended = status.suspended();
|
HibernateTxStatus suspended = status.suspended();
|
||||||
|
if (suspended == null) {
|
||||||
|
suspended = ResourceRegistry.getOrNull(HIBERNATE_SUSPENDED_KEY, HibernateTxStatus.class);
|
||||||
|
}
|
||||||
if (suspended != null) {
|
if (suspended != null) {
|
||||||
|
ResourceRegistry.unbind(HIBERNATE_SUSPENDED_KEY);
|
||||||
ResourceRegistry.bind(HIBERNATE_STATUS_KEY, suspended);
|
ResourceRegistry.bind(HIBERNATE_STATUS_KEY, suspended);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void silentClose(Session session) {
|
||||||
|
if (session == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
session.close();
|
||||||
|
} catch (Exception ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+3
@@ -35,6 +35,9 @@ class HibernateTxStatus implements TxStatus {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public <R> R resource(Class<R> type) {
|
public <R> R resource(Class<R> type) {
|
||||||
|
if (session == null) {
|
||||||
|
throw new IllegalStateException("No session bound to this transaction status");
|
||||||
|
}
|
||||||
return type.cast(session);
|
return type.cast(session);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,96 @@
|
|||||||
|
# flash-ext-data-jdbc
|
||||||
|
|
||||||
|
Backend JDBC per `flash-ext-data-core`.
|
||||||
|
|
||||||
|
## Scopo
|
||||||
|
|
||||||
|
Questo modulo implementa `TxManager` sopra `DataSource` e fornisce una base repository SQL raw.
|
||||||
|
|
||||||
|
## Come si usa
|
||||||
|
|
||||||
|
### 1. Creare il manager
|
||||||
|
|
||||||
|
```java
|
||||||
|
DataSource dataSource = ...;
|
||||||
|
JdbcTxManager txManager = new JdbcTxManager(dataSource);
|
||||||
|
DataExtension extension = new DataExtension(txManager);
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. Installare l’estensione in Flash
|
||||||
|
|
||||||
|
Come per Hibernate, `DataExtension` registra `Tx` nel `FlashContext` e abilita `@Transactional` sugli handler class-based.
|
||||||
|
|
||||||
|
### 3. Definire una repository
|
||||||
|
|
||||||
|
```java
|
||||||
|
public final class UserRepository extends JdbcRepository<User, Long> {
|
||||||
|
public UserRepository(Tx tx) {
|
||||||
|
super(tx, "users", "id");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected User mapRow(ResultSet rs) throws SQLException {
|
||||||
|
return new User(rs.getLong("id"), rs.getString("name"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Anche qui puoi esporre `Spec` riusabili e comporre query dal service layer:
|
||||||
|
|
||||||
|
```java
|
||||||
|
public final class UserRepository extends JdbcRepository<User, Long> {
|
||||||
|
public static final SpecBuilder.FieldSpec<User, String> EMAIL = SpecBuilder.field("email");
|
||||||
|
|
||||||
|
public UserRepository(Tx tx) {
|
||||||
|
super(tx, "users", "id");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Per il salvataggio e l’update devi fornire il binding esplicito:
|
||||||
|
|
||||||
|
```java
|
||||||
|
@Override
|
||||||
|
protected String insertSql() {
|
||||||
|
return "insert into users(name) values(?)";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void bindInsert(PreparedStatement ps, User entity) throws SQLException {
|
||||||
|
ps.setString(1, entity.name());
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Come funziona sotto
|
||||||
|
|
||||||
|
- La tx corrente espone una `Connection`.
|
||||||
|
- `Tx.resource(Connection.class)` recupera la connessione bindata al thread.
|
||||||
|
- `REQUIRES_NEW` sospende la connessione attiva e ne apre una nuova.
|
||||||
|
- `NOT_SUPPORTED` sospende il contesto e prosegue senza tx.
|
||||||
|
|
||||||
|
## Repository base
|
||||||
|
|
||||||
|
`JdbcRepository` fornisce:
|
||||||
|
|
||||||
|
- query `select` con `queryOne`, `queryMany`
|
||||||
|
- mutation con `mutate`
|
||||||
|
- persistenza con `doSave`, `doUpdate`
|
||||||
|
- paging con `doFindPage`
|
||||||
|
- bulk `deleteAll(Spec<T>)`
|
||||||
|
- helper raw `queryOne(...)`, `queryMany(...)`, `mutate(...)`
|
||||||
|
|
||||||
|
Le repository concrete devono solo tradurre tra `ResultSet` e dominio.
|
||||||
|
|
||||||
|
## Semantica transazionale
|
||||||
|
|
||||||
|
- `REQUIRED`: join o apertura nuova tx.
|
||||||
|
- `REQUIRES_NEW`: sospensione del contesto corrente.
|
||||||
|
- `SUPPORTS`: join se c’è tx, altrimenti no-op.
|
||||||
|
- `NOT_SUPPORTED`: sospende e prosegue senza tx.
|
||||||
|
- `MANDATORY`: fallisce se non c’è tx.
|
||||||
|
|
||||||
|
## Note
|
||||||
|
|
||||||
|
- La `Connection` viene chiusa a fine tx nuova.
|
||||||
|
- Le synchronizations vengono eseguite al commit/rollback.
|
||||||
|
- Se una repository usa `doDelete(T)`, il comportamento predefinito è non supportato: usare `deleteById` o override specifico.
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-data-jdbc</artifactId>
|
<artifactId>flash-ext-data-jdbc</artifactId>
|
||||||
|
|||||||
+94
-62
@@ -3,87 +3,99 @@ package dev.relism.flash.ext.data.jdbc;
|
|||||||
import dev.relism.flash.ext.data.core.*;
|
import dev.relism.flash.ext.data.core.*;
|
||||||
|
|
||||||
import java.sql.*;
|
import java.sql.*;
|
||||||
import java.util.*;
|
import java.util.ArrayList;
|
||||||
import java.util.stream.Collectors;
|
import java.util.List;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
public abstract class JdbcRepository<T, ID> extends Repository<T, ID> {
|
public abstract class JdbcRepository<T, ID> extends Repository<T, ID> {
|
||||||
|
|
||||||
private final String table;
|
private final String table;
|
||||||
private final String idColumn;
|
private final String idColumn;
|
||||||
|
|
||||||
protected JdbcRepository(String table, String idColumn) {
|
protected JdbcRepository(Tx tx, String table, String idColumn) {
|
||||||
this.table = table;
|
super(tx);
|
||||||
|
this.table = table;
|
||||||
this.idColumn = idColumn;
|
this.idColumn = idColumn;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected Connection connection() {
|
protected Connection connection() {
|
||||||
return Tx.resource(Connection.class);
|
return tx().resource(Connection.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Subclass contract ─────────────────────────────────────────────────────
|
protected abstract T mapRow(ResultSet rs) throws SQLException;
|
||||||
|
protected abstract void bindInsert(PreparedStatement ps, T entity) throws SQLException;
|
||||||
protected abstract T mapRow(ResultSet rs) throws SQLException;
|
protected abstract void bindUpdate(PreparedStatement ps, T entity) throws SQLException;
|
||||||
protected abstract void bindInsert(PreparedStatement ps, T entity) throws SQLException;
|
|
||||||
protected abstract void bindUpdate(PreparedStatement ps, T entity) throws SQLException;
|
|
||||||
protected abstract String insertSql();
|
protected abstract String insertSql();
|
||||||
protected abstract String updateSql();
|
protected abstract String updateSql();
|
||||||
|
|
||||||
// ── Repository abstract impl ──────────────────────────────────────────────
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Optional<T> doFindById(ID id) {
|
protected Optional<T> doFindById(ID id) {
|
||||||
return queryOne("select * from " + table + " where " + idColumn + " = ?",
|
return queryOne("select * from " + table + " where " + idColumn + " = ?", ps -> ps.setObject(1, id));
|
||||||
ps -> ps.setObject(1, id));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<T> doFindAll() {
|
protected List<T> doFind(Query<T> query) {
|
||||||
return queryMany("select * from " + table, ps -> {});
|
JdbcSpecContext ctx = new JdbcSpecContext();
|
||||||
}
|
String where = query.spec() != null ? " where " + query.spec().toFragment(ctx) : "";
|
||||||
|
String order = query.sort() != null && query.sort().isSorted() ? " order by " + orderClause(query.sort()) : "";
|
||||||
|
String paging = query.isPaged() ? " limit ? offset ?" : "";
|
||||||
|
|
||||||
@Override
|
return queryMany("select * from " + table + where + order + paging, ps -> {
|
||||||
protected List<T> doFindAll(int page, int size) {
|
if (query.isPaged()) {
|
||||||
return queryMany("select * from " + table + " limit ? offset ?", ps -> {
|
ctx.applyParameters(ps);
|
||||||
ps.setInt(1, size);
|
int base = ctx.size();
|
||||||
ps.setInt(2, page * size);
|
ps.setInt(base + 1, query.size());
|
||||||
|
ps.setInt(base + 2, query.page() * query.size());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
ctx.applyParameters(ps);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<T> doFindAll(Sort sort) {
|
protected Optional<T> doFindOne(Spec<T> spec) {
|
||||||
return queryMany("select * from " + table + orderClause(sort), ps -> {});
|
return doFind(Query.<T>all().where(spec).page(0, 1)).stream().findFirst();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<T> doFindAll(int page, int size, Sort sort) {
|
protected Page<T> doFindPage(Query<T> query) {
|
||||||
return queryMany("select * from " + table + orderClause(sort) + " limit ? offset ?",
|
if (!query.isPaged()) {
|
||||||
ps -> {
|
throw new IllegalArgumentException("Paged query requires page and size");
|
||||||
ps.setInt(1, size);
|
}
|
||||||
ps.setInt(2, page * size);
|
long total = countWhere(query.spec());
|
||||||
});
|
List<T> content = doFind(query);
|
||||||
|
return new Page<>(content, query.page(), query.size(), total);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Page<T> doFindPage(int page, int size) {
|
protected boolean doExistsById(ID id) {
|
||||||
long total = doCount();
|
return queryOne("select 1 from " + table + " where " + idColumn + " = ?", ps -> ps.setObject(1, id), rs -> rs.getInt(1)).isPresent();
|
||||||
return new Page<>(doFindAll(page, size), page, size, total);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Page<T> doFindPage(int page, int size, Sort sort) {
|
protected long doCount() {
|
||||||
long total = doCount();
|
return queryOne("select count(*) from " + table, ps -> {}, rs -> rs.getLong(1)).orElse(0L);
|
||||||
return new Page<>(doFindAll(page, size, sort), page, size, total);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected T doSave(T entity) {
|
protected T doSave(T entity) {
|
||||||
try (PreparedStatement ps = connection().prepareStatement(
|
try (PreparedStatement ps = connection().prepareStatement(insertSql(), Statement.RETURN_GENERATED_KEYS)) {
|
||||||
insertSql(), Statement.RETURN_GENERATED_KEYS)) {
|
|
||||||
bindInsert(ps, entity);
|
bindInsert(ps, entity);
|
||||||
ps.executeUpdate();
|
ps.executeUpdate();
|
||||||
applyGeneratedKey(ps, entity);
|
applyGeneratedKey(ps, entity);
|
||||||
return entity;
|
return entity;
|
||||||
} catch (SQLException e) { throw new TxException(e); }
|
} catch (SQLException e) {
|
||||||
|
throw new TxException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected List<T> doSaveAll(Iterable<T> entities) {
|
||||||
|
List<T> saved = new ArrayList<>();
|
||||||
|
for (T entity : entities) {
|
||||||
|
saved.add(doSave(entity));
|
||||||
|
}
|
||||||
|
return saved;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -92,7 +104,9 @@ public abstract class JdbcRepository<T, ID> extends Repository<T, ID> {
|
|||||||
bindUpdate(ps, entity);
|
bindUpdate(ps, entity);
|
||||||
ps.executeUpdate();
|
ps.executeUpdate();
|
||||||
return entity;
|
return entity;
|
||||||
} catch (SQLException e) { throw new TxException(e); }
|
} catch (SQLException e) {
|
||||||
|
throw new TxException(e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -102,38 +116,35 @@ public abstract class JdbcRepository<T, ID> extends Repository<T, ID> {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void doDeleteById(ID id) {
|
protected void doDeleteById(ID id) {
|
||||||
mutate("delete from " + table + " where " + idColumn + " = ?",
|
mutate("delete from " + table + " where " + idColumn + " = ?", ps -> ps.setObject(1, id));
|
||||||
ps -> ps.setObject(1, id));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected boolean doExistsById(ID id) {
|
protected int doDeleteAll(Spec<T> spec) {
|
||||||
return queryOne("select 1 from " + table + " where " + idColumn + " = ?",
|
JdbcSpecContext ctx = new JdbcSpecContext();
|
||||||
ps -> ps.setObject(1, id),
|
String where = " where " + spec.toFragment(ctx);
|
||||||
rs -> rs.getInt(1)).isPresent();
|
return mutate("delete from " + table + where, ctx::applyParameters);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected long doCount() {
|
protected int doUpdateAll(Spec<T> spec, T patch) {
|
||||||
return queryOne("select count(*) from " + table, ps -> {},
|
throw new UnsupportedOperationException("Override doUpdateAll() for bulk UPDATE support");
|
||||||
rs -> rs.getLong(1)).orElse(0L);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Query helpers ─────────────────────────────────────────────────────────
|
|
||||||
|
|
||||||
protected Optional<T> queryOne(String sql, SqlBinder params) {
|
protected Optional<T> queryOne(String sql, SqlBinder params) {
|
||||||
List<T> r = queryMany(sql, params);
|
List<T> r = queryMany(sql, params);
|
||||||
return r.isEmpty() ? Optional.empty() : Optional.of(r.get(0));
|
return r.isEmpty() ? Optional.empty() : Optional.of(r.get(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
protected <R> Optional<R> queryOne(String sql, SqlBinder params,
|
protected <R> Optional<R> queryOne(String sql, SqlBinder params, SqlMapper<R> mapper) {
|
||||||
SqlMapper<R> mapper) {
|
|
||||||
try (PreparedStatement ps = connection().prepareStatement(sql)) {
|
try (PreparedStatement ps = connection().prepareStatement(sql)) {
|
||||||
params.bind(ps);
|
params.bind(ps);
|
||||||
try (ResultSet rs = ps.executeQuery()) {
|
try (ResultSet rs = ps.executeQuery()) {
|
||||||
return rs.next() ? Optional.of(mapper.map(rs)) : Optional.empty();
|
return rs.next() ? Optional.of(mapper.map(rs)) : Optional.empty();
|
||||||
}
|
}
|
||||||
} catch (SQLException e) { throw new TxException(e); }
|
} catch (SQLException e) {
|
||||||
|
throw new TxException(e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected List<T> queryMany(String sql, SqlBinder params) {
|
protected List<T> queryMany(String sql, SqlBinder params) {
|
||||||
@@ -144,26 +155,47 @@ public abstract class JdbcRepository<T, ID> extends Repository<T, ID> {
|
|||||||
while (rs.next()) results.add(mapRow(rs));
|
while (rs.next()) results.add(mapRow(rs));
|
||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
} catch (SQLException e) { throw new TxException(e); }
|
} catch (SQLException e) {
|
||||||
|
throw new TxException(e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected int mutate(String sql, SqlBinder params) {
|
protected int mutate(String sql, SqlBinder params) {
|
||||||
try (PreparedStatement ps = connection().prepareStatement(sql)) {
|
try (PreparedStatement ps = connection().prepareStatement(sql)) {
|
||||||
params.bind(ps);
|
params.bind(ps);
|
||||||
return ps.executeUpdate();
|
return ps.executeUpdate();
|
||||||
} catch (SQLException e) { throw new TxException(e); }
|
} catch (SQLException e) {
|
||||||
|
throw new TxException(e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void applyGeneratedKey(PreparedStatement ps, T entity) throws SQLException {
|
protected void applyGeneratedKey(PreparedStatement ps, T entity) throws SQLException {
|
||||||
// override when entity has a generated PK
|
// override when entity has a generated PK
|
||||||
}
|
}
|
||||||
|
|
||||||
private String orderClause(Sort sort) {
|
protected Class<T> entityType() {
|
||||||
return " order by " + sort.columns().stream()
|
return null;
|
||||||
.map(c -> c.column() + (c.asc() ? " ASC" : " DESC"))
|
|
||||||
.collect(Collectors.joining(", "));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@FunctionalInterface public interface SqlBinder { void bind(PreparedStatement ps) throws SQLException; }
|
private long countWhere(Spec<T> spec) {
|
||||||
@FunctionalInterface public interface SqlMapper<R> { R map(ResultSet rs) throws SQLException; }
|
JdbcSpecContext ctx = new JdbcSpecContext();
|
||||||
|
String where = spec != null ? " where " + spec.toFragment(ctx) : "";
|
||||||
|
return queryOne("select count(*) from " + table + where, ctx::applyParameters, rs -> rs.getLong(1)).orElse(0L);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String orderClause(Sort sort) {
|
||||||
|
return sort.columns().stream()
|
||||||
|
.map(c -> c.column() + (c.asc() ? " ASC" : " DESC"))
|
||||||
|
.collect(java.util.stream.Collectors.joining(", "));
|
||||||
|
}
|
||||||
|
|
||||||
|
@FunctionalInterface
|
||||||
|
public interface SqlBinder {
|
||||||
|
void bind(PreparedStatement ps) throws SQLException;
|
||||||
|
}
|
||||||
|
|
||||||
|
@FunctionalInterface
|
||||||
|
public interface SqlMapper<R> {
|
||||||
|
R map(ResultSet rs) throws SQLException;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+28
@@ -0,0 +1,28 @@
|
|||||||
|
package dev.relism.flash.ext.data.jdbc;
|
||||||
|
|
||||||
|
import dev.relism.flash.ext.data.core.SpecContext;
|
||||||
|
|
||||||
|
import java.sql.PreparedStatement;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
final class JdbcSpecContext implements SpecContext {
|
||||||
|
private final List<Object> params = new ArrayList<>();
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String bind(Object value) {
|
||||||
|
params.add(value);
|
||||||
|
return "?";
|
||||||
|
}
|
||||||
|
|
||||||
|
void applyParameters(PreparedStatement ps) throws SQLException {
|
||||||
|
for (int i = 0; i < params.size(); i++) {
|
||||||
|
ps.setObject(i + 1, params.get(i));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int size() {
|
||||||
|
return params.size();
|
||||||
|
}
|
||||||
|
}
|
||||||
+69
-7
@@ -9,6 +9,7 @@ import java.util.Objects;
|
|||||||
|
|
||||||
public class JdbcTxManager implements TxManager {
|
public class JdbcTxManager implements TxManager {
|
||||||
private static final TxResourceKey JDBC_STATUS_KEY = TxResourceKey.of("jdbc.tx.status");
|
private static final TxResourceKey JDBC_STATUS_KEY = TxResourceKey.of("jdbc.tx.status");
|
||||||
|
private static final TxResourceKey JDBC_SUSPENDED_KEY = TxResourceKey.of("jdbc.tx.suspended");
|
||||||
|
|
||||||
private final DataSource ds;
|
private final DataSource ds;
|
||||||
|
|
||||||
@@ -23,22 +24,27 @@ public class JdbcTxManager implements TxManager {
|
|||||||
? joinExisting(definition)
|
? joinExisting(definition)
|
||||||
: beginNew(definition);
|
: beginNew(definition);
|
||||||
case REQUIRES_NEW -> beginNew(definition);
|
case REQUIRES_NEW -> beginNew(definition);
|
||||||
|
case SUPPORTS -> ResourceRegistry.isBound(JDBC_STATUS_KEY)
|
||||||
|
? joinExisting(definition)
|
||||||
|
: noOp(definition);
|
||||||
case MANDATORY -> {
|
case MANDATORY -> {
|
||||||
if (!ResourceRegistry.isBound(JDBC_STATUS_KEY))
|
if (!ResourceRegistry.isBound(JDBC_STATUS_KEY))
|
||||||
throw new IllegalStateException("MANDATORY: no active transaction");
|
throw new IllegalStateException("MANDATORY: no active transaction");
|
||||||
yield joinExisting(definition);
|
yield joinExisting(definition);
|
||||||
}
|
}
|
||||||
case NOT_SUPPORTED -> throw new UnsupportedOperationException("NOT_SUPPORTED is not implemented");
|
case NOT_SUPPORTED -> {
|
||||||
|
JdbcTxStatus suspended = suspendIfNeeded();
|
||||||
|
yield noOp(definition, suspended);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
private TxStatus beginNew(TxDefinition definition) {
|
private TxStatus beginNew(TxDefinition definition) {
|
||||||
|
Connection conn = null;
|
||||||
|
JdbcTxStatus suspended = suspendIfNeeded();
|
||||||
|
boolean bound = false;
|
||||||
try {
|
try {
|
||||||
JdbcTxStatus suspended = ResourceRegistry.getOrNull(JDBC_STATUS_KEY, JdbcTxStatus.class);
|
conn = ds.getConnection();
|
||||||
if (suspended != null) {
|
|
||||||
ResourceRegistry.unbind(JDBC_STATUS_KEY);
|
|
||||||
}
|
|
||||||
Connection conn = ds.getConnection();
|
|
||||||
conn.setAutoCommit(false);
|
conn.setAutoCommit(false);
|
||||||
if (definition.readOnly()) conn.setReadOnly(true);
|
if (definition.readOnly()) conn.setReadOnly(true);
|
||||||
if (definition.isolation() != TransactionIsolation.DEFAULT) {
|
if (definition.isolation() != TransactionIsolation.DEFAULT) {
|
||||||
@@ -52,9 +58,16 @@ public class JdbcTxManager implements TxManager {
|
|||||||
new JdbcTxStatus.RollbackMarker()
|
new JdbcTxStatus.RollbackMarker()
|
||||||
);
|
);
|
||||||
ResourceRegistry.bind(JDBC_STATUS_KEY, status);
|
ResourceRegistry.bind(JDBC_STATUS_KEY, status);
|
||||||
|
bound = true;
|
||||||
return status;
|
return status;
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
|
silentClose(conn);
|
||||||
throw new TxException(e);
|
throw new TxException(e);
|
||||||
|
} finally {
|
||||||
|
if (!bound && suspended != null) {
|
||||||
|
ResourceRegistry.unbind(JDBC_SUSPENDED_KEY);
|
||||||
|
ResourceRegistry.bind(JDBC_STATUS_KEY, suspended);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -72,10 +85,29 @@ public class JdbcTxManager implements TxManager {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private TxStatus noOp(TxDefinition definition) {
|
||||||
|
return noOp(definition, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
private TxStatus noOp(TxDefinition definition, JdbcTxStatus suspended) {
|
||||||
|
return new JdbcTxStatus(null, false, definition.readOnly(), suspended, new JdbcTxStatus.RollbackMarker());
|
||||||
|
}
|
||||||
|
|
||||||
|
private JdbcTxStatus suspendIfNeeded() {
|
||||||
|
JdbcTxStatus suspended = ResourceRegistry.getOrNull(JDBC_STATUS_KEY, JdbcTxStatus.class);
|
||||||
|
if (suspended != null) {
|
||||||
|
ResourceRegistry.unbind(JDBC_STATUS_KEY);
|
||||||
|
ResourceRegistry.bind(JDBC_SUSPENDED_KEY, suspended);
|
||||||
|
}
|
||||||
|
return suspended;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void commit(TxStatus status) {
|
public void commit(TxStatus status) {
|
||||||
JdbcTxStatus s = (JdbcTxStatus) status;
|
JdbcTxStatus s = (JdbcTxStatus) status;
|
||||||
if (!s.isNewTransaction()) {
|
if (!s.isNewTransaction()) {
|
||||||
|
resumeIfNeeded(s);
|
||||||
|
cleanupIfIdle();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
@@ -90,6 +122,7 @@ public class JdbcTxManager implements TxManager {
|
|||||||
throw new TxException(e);
|
throw new TxException(e);
|
||||||
} finally {
|
} finally {
|
||||||
cleanupAndResume(s);
|
cleanupAndResume(s);
|
||||||
|
cleanupIfIdle();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -98,6 +131,8 @@ public class JdbcTxManager implements TxManager {
|
|||||||
JdbcTxStatus s = (JdbcTxStatus) status;
|
JdbcTxStatus s = (JdbcTxStatus) status;
|
||||||
if (!s.isNewTransaction()) {
|
if (!s.isNewTransaction()) {
|
||||||
s.markRollbackOnly();
|
s.markRollbackOnly();
|
||||||
|
resumeIfNeeded(s);
|
||||||
|
cleanupIfIdle();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
@@ -107,18 +142,45 @@ public class JdbcTxManager implements TxManager {
|
|||||||
throw new TxException(e);
|
throw new TxException(e);
|
||||||
} finally {
|
} finally {
|
||||||
cleanupAndResume(s);
|
cleanupAndResume(s);
|
||||||
|
cleanupIfIdle();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void cleanupAndResume(JdbcTxStatus status) {
|
private void cleanupAndResume(JdbcTxStatus status) {
|
||||||
ResourceRegistry.unbind(JDBC_STATUS_KEY);
|
ResourceRegistry.unbind(JDBC_STATUS_KEY);
|
||||||
try {
|
try {
|
||||||
status.connection().close();
|
if (status.connection() != null) {
|
||||||
|
status.connection().close();
|
||||||
|
}
|
||||||
} catch (SQLException ignored) {
|
} catch (SQLException ignored) {
|
||||||
}
|
}
|
||||||
|
resumeIfNeeded(status);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void cleanupIfIdle() {
|
||||||
|
if (!ResourceRegistry.isBound(JDBC_STATUS_KEY) && !ResourceRegistry.isBound(JDBC_SUSPENDED_KEY)) {
|
||||||
|
ResourceRegistry.cleanup();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void resumeIfNeeded(JdbcTxStatus status) {
|
||||||
JdbcTxStatus suspended = status.suspended();
|
JdbcTxStatus suspended = status.suspended();
|
||||||
|
if (suspended == null) {
|
||||||
|
suspended = ResourceRegistry.getOrNull(JDBC_SUSPENDED_KEY, JdbcTxStatus.class);
|
||||||
|
}
|
||||||
if (suspended != null) {
|
if (suspended != null) {
|
||||||
|
ResourceRegistry.unbind(JDBC_SUSPENDED_KEY);
|
||||||
ResourceRegistry.bind(JDBC_STATUS_KEY, suspended);
|
ResourceRegistry.bind(JDBC_STATUS_KEY, suspended);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void silentClose(Connection connection) {
|
||||||
|
if (connection == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
connection.close();
|
||||||
|
} catch (SQLException ignored) {
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+3
@@ -37,6 +37,9 @@ class JdbcTxStatus implements TxStatus {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public <R> R resource(Class<R> type) {
|
public <R> R resource(Class<R> type) {
|
||||||
|
if (connection == null) {
|
||||||
|
throw new IllegalStateException("No connection bound to this transaction status");
|
||||||
|
}
|
||||||
return type.cast(connection);
|
return type.cast(connection);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-jackson</artifactId>
|
<artifactId>flash-ext-jackson</artifactId>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-limiter</artifactId>
|
<artifactId>flash-ext-limiter</artifactId>
|
||||||
|
|||||||
@@ -0,0 +1,56 @@
|
|||||||
|
# flash-ext-mcp
|
||||||
|
|
||||||
|
`flash-ext-mcp` turns a Flash5 app into an [MCP](https://modelcontextprotocol.io) (Model Context
|
||||||
|
Protocol) server: JSON-RPC 2.0 over the Streamable HTTP transport, tools/resources/prompts
|
||||||
|
declared as plain classes and discovered at boot, optional OAuth2 protection built on
|
||||||
|
`flash-ext-oidc`.
|
||||||
|
|
||||||
|
## Quick Start
|
||||||
|
|
||||||
|
```java
|
||||||
|
FlashApp.create(8080)
|
||||||
|
.install(new McpExtension(McpConfig.builder("my-mcp-server")
|
||||||
|
.toolsPackage("com.example.tools")
|
||||||
|
.build()))
|
||||||
|
.start();
|
||||||
|
```
|
||||||
|
|
||||||
|
```java
|
||||||
|
@Tool(name = "get_weather", description = "Get current weather for a city",
|
||||||
|
args = @ToolArg(name = "city", description = "City name", required = true))
|
||||||
|
public class GetWeatherTool extends McpTool {
|
||||||
|
|
||||||
|
private WeatherService weatherService;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onInit() {
|
||||||
|
weatherService = require(WeatherService.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ToolResponse call(ToolArguments args) {
|
||||||
|
return ToolResponse.success(new TextContent(weatherService.fetch(args.getString("city"))));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Operating Model
|
||||||
|
|
||||||
|
- **One class per tool/resource/prompt** — mirrors `RequestHandler`: a no-arg constructor,
|
||||||
|
`onInit()` to cache services from `FlashContext`, one hot-path method
|
||||||
|
(`call`/`read`/`render`). No CDI, no field injection, no reflection on the hot path.
|
||||||
|
- **Boot-time precompilation** — `tools/list`/`resources/list`/`prompts/list` JSON payloads
|
||||||
|
(including JSON Schema) are built once at boot and spliced verbatim into responses. See
|
||||||
|
`tools-resources-prompts.md`.
|
||||||
|
- **Transport**: Streamable HTTP, `POST`-only, stateless in this revision — see `transport.md`
|
||||||
|
for exactly what that means and why.
|
||||||
|
- **Security**: optional, policy-driven OAuth2 via `flash-ext-oidc` — see `security.md`.
|
||||||
|
- **JSON**: this extension owns its JSON handling independently of `flash-ext-jackson` — see
|
||||||
|
`jackson-interop.md` for why, and how a future opt-in reuse could work.
|
||||||
|
|
||||||
|
## Documents
|
||||||
|
|
||||||
|
- [`tools-resources-prompts.md`](tools-resources-prompts.md) — defining tools, resources, prompts
|
||||||
|
- [`transport.md`](transport.md) — Streamable HTTP scope, session/SSE limitations, Origin validation
|
||||||
|
- [`security.md`](security.md) — `McpSecurity` policy, OAuth2 resolution, RFC 9728 / RFC 8707
|
||||||
|
- [`jackson-interop.md`](jackson-interop.md) — why this extension does not depend on `flash-ext-jackson`
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
# Why no `flash-ext-jackson` interop (yet)
|
||||||
|
|
||||||
|
## The decision
|
||||||
|
|
||||||
|
`flash-ext-mcp` does not depend on, or integrate with, `flash-ext-jackson`. It brings its own
|
||||||
|
JSON handling (`jackson-databind`/`jackson-core` as a plain library dependency, wrapped by the
|
||||||
|
internal `McpJson` utility) and never touches `flash-ext-jackson`'s `Json`/`JacksonMiddleware`/
|
||||||
|
shared `ObjectMapper`, even if the host app has `flash-ext-jackson` installed. This was a
|
||||||
|
deliberate choice, discussed and made explicitly — not an oversight — and is written down here
|
||||||
|
so it isn't accidentally "fixed" later without re-litigating the trade-off.
|
||||||
|
|
||||||
|
## Why
|
||||||
|
|
||||||
|
`flash-ext-jackson`'s `Json` class is built around full databinding:
|
||||||
|
`mapper.readValue(bytes, SomeDto.class)` / `mapper.writeValueAsBytes(obj)` — reflection-driven
|
||||||
|
property matching in both directions. The MCP JSON-RPC envelope has a **fixed, known shape**
|
||||||
|
(`{jsonrpc, id, method, params}` in, `{jsonrpc, id, result|error}` out) defined by a spec, not by
|
||||||
|
application DTOs. Given that, hand-writing it with `JsonGenerator` directly is both simpler and
|
||||||
|
strictly cheaper than round-tripping through databinding: no property-name matching, no
|
||||||
|
reflection, no intermediate POJO graph for the parts of the response this extension controls
|
||||||
|
(the envelope itself, `tools/list`/`resources/list`/`prompts/list` — precompiled once at boot,
|
||||||
|
see `tools-resources-prompts.md` — and the fixed `TextContent`/`TextResourceContents`/
|
||||||
|
`PromptMessage` shapes). `ToolArguments`/`PromptArguments` read the incoming `arguments` object
|
||||||
|
as a `JsonNode` tree, not as a databound class, for the same reason — a JSON-RPC tool call's
|
||||||
|
arguments aren't a DTO with getters/setters, they're a dynamic, per-tool-defined bag of values.
|
||||||
|
|
||||||
|
This mirrors how `flash-ext-oidc` already handles its own internal JSON needs (`json-smart` for
|
||||||
|
token-endpoint responses) independently of `flash-ext-jackson` — extensions with protocol-level
|
||||||
|
JSON needs that are shaped by a spec, not by user code, own that JSON handling themselves rather
|
||||||
|
than routing it through the app's general-purpose JSON extension.
|
||||||
|
|
||||||
|
## What this means practically
|
||||||
|
|
||||||
|
- Installing `flash-ext-mcp` never requires installing `flash-ext-jackson`. A pure MCP server
|
||||||
|
with no other JSON REST routes has zero unrelated dependencies to configure.
|
||||||
|
- If the host app *does* have `flash-ext-jackson` installed for its own REST routes, that
|
||||||
|
`ObjectMapper`'s configuration (custom modules, date formatting, naming strategy, etc.) is
|
||||||
|
**not** consulted by `flash-ext-mcp` — the two JSON paths are entirely independent today.
|
||||||
|
|
||||||
|
## What a future opt-in reuse could look like
|
||||||
|
|
||||||
|
Nothing here rules out a later, additive convenience layer: `McpExtension.routes()` could check
|
||||||
|
`ctx.find(ObjectMapper.class)` (populated by `JacksonExtension.provide()`) and, if present, use
|
||||||
|
that shared mapper as the backing for an escape hatch such as `ToolArguments.as(Class<T>)` or
|
||||||
|
for a tool that wants to `ToolResponse.success(someRecord)` and have it serialized with the
|
||||||
|
app's own conventions — falling back to a locally-constructed default `ObjectMapper` when
|
||||||
|
`flash-ext-jackson` isn't installed, the same "prefer shared, degrade to sane default" shape
|
||||||
|
already used for `McpSecurity.AUTO`. That would be purely additive on top of the
|
||||||
|
`JsonGenerator`-based envelope/content writing described above, not a replacement for it — the
|
||||||
|
fixed-shape protocol plumbing has no reason to ever go through databinding, regardless of what
|
||||||
|
convenience layer gets added around it.
|
||||||
@@ -0,0 +1,89 @@
|
|||||||
|
# Security
|
||||||
|
|
||||||
|
## `McpSecurity`
|
||||||
|
|
||||||
|
`McpConfig.security(...)` controls how the MCP endpoint reacts to `flash-ext-oidc` being
|
||||||
|
installed (`ctx.find(OidcMiddleware.class)`), resolved once at boot in `McpExtension.routes()`:
|
||||||
|
|
||||||
|
| Policy | `flash-ext-oidc` installed | `flash-ext-oidc` absent |
|
||||||
|
|---|---|---|
|
||||||
|
| `REQUIRED` | protected | **boot fails** (`IllegalStateException`) |
|
||||||
|
| `AUTO` (default) | protected | runs unprotected, logs a warning |
|
||||||
|
| `NONE` | never protected, even if oidc is installed elsewhere in the app | runs unprotected |
|
||||||
|
|
||||||
|
Use `REQUIRED` for anything you intend to run in production reachable over the network — it
|
||||||
|
turns "someone forgot to wire up OAuth2" into a startup crash instead of a silently open
|
||||||
|
endpoint. `AUTO` is meant for local development, where spinning up a real identity provider is
|
||||||
|
friction you don't want yet.
|
||||||
|
|
||||||
|
## Why `flash-ext-oidc` is an *optional* Maven dependency, concretely
|
||||||
|
|
||||||
|
Maven's `<optional>true</optional>` only affects **transitive** propagation: consumers of
|
||||||
|
`flash-ext-mcp` don't get `flash-ext-oidc` pulled in automatically unless they add it themselves.
|
||||||
|
Within `flash-ext-mcp` itself, `flash-ext-oidc`'s classes are on the compile/test classpath as
|
||||||
|
normal — this extension can (and does) reference `OidcMiddleware`/`ClaimsHolder` directly in
|
||||||
|
source.
|
||||||
|
|
||||||
|
That reference is isolated in its own class, `McpOidcIntegration`, invoked only from inside a
|
||||||
|
`catch (NoClassDefFoundError)` block. A bare class-literal like `OidcMiddleware.class` (which
|
||||||
|
`ctx.find(OidcMiddleware.class)` needs) forces the JVM to resolve that type the moment it's
|
||||||
|
evaluated — if `flash-ext-oidc` is not on the *runtime* classpath at all (a genuinely
|
||||||
|
MCP-only install, no OAuth2 anywhere in the app), the first such reference throws
|
||||||
|
`NoClassDefFoundError`. Keeping that reference inside a separate, lazily-loaded class means
|
||||||
|
`McpExtension` itself loads and works fine standalone; only the attempt to actually use OIDC
|
||||||
|
fails, and only when there's something to fail. This mirrors `OidcExtension`'s own lazy bridge to
|
||||||
|
`flash-ext-openapi` — same technique, same reason.
|
||||||
|
|
||||||
|
## OAuth2 resolution details
|
||||||
|
|
||||||
|
When oidc is available and `security() != NONE`:
|
||||||
|
|
||||||
|
1. The MCP route is wrapped with `flash-ext-oidc`'s own `OidcMiddleware.protect()` — the same
|
||||||
|
Bearer-token/JWKS validation path used everywhere else in Flash5. No JWT parsing or JWKS
|
||||||
|
handling is reimplemented here.
|
||||||
|
2. If `McpConfig.resourceIdentifier(...)` is set, an additional audience guard runs after
|
||||||
|
`protect()`: it reads the validated claims from `ClaimsHolder` and rejects (`403`) any token
|
||||||
|
whose `aud` claim does not include the configured resource identifier — **RFC 8707 Resource
|
||||||
|
Indicators / audience binding**. This is genuinely new behavior, not something
|
||||||
|
`flash-ext-oidc` does on its own: `OidcMiddleware` validates `aud` against its own
|
||||||
|
`clientId` for ID tokens, but deliberately does not enforce audience on access tokens (it
|
||||||
|
varies by provider) — the MCP extension adds that check on top, scoped to its own resource
|
||||||
|
identifier.
|
||||||
|
3. If `resourceIdentifier(...)` is left unset, only standard bearer validation runs — no
|
||||||
|
audience binding. Fine for a first integration; RFC 8707 becomes meaningful once you have
|
||||||
|
more than one resource server sharing the same authorization server.
|
||||||
|
|
||||||
|
## RFC 9728 Protected Resource Metadata
|
||||||
|
|
||||||
|
If both `resourceIdentifier(...)` and `authorizationServerIssuer(...)` are set (and the endpoint
|
||||||
|
ends up protected), `flash-ext-mcp` publishes a Protected Resource Metadata document at
|
||||||
|
`/.well-known/oauth-protected-resource{rootPath}`:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "resource": "https://mcp.example.com/mcp", "authorization_servers": ["https://auth.example.com/realms/myrealm"] }
|
||||||
|
```
|
||||||
|
|
||||||
|
This lets a spec-compliant MCP client discover which authorization server to use without
|
||||||
|
out-of-band configuration. `authorizationServerIssuer` has to be supplied explicitly because
|
||||||
|
`flash-ext-oidc` does not expose its resolved issuer/discovery metadata through `FlashContext` —
|
||||||
|
only `OidcMiddleware` and `JwtValidator` are registered there. Passing it separately avoids
|
||||||
|
reaching into `flash-ext-oidc` internals for a value the app owner already has at hand (it's the
|
||||||
|
same issuer they configured `OidcExtension` with).
|
||||||
|
|
||||||
|
Without an issuer configured, bearer validation still works exactly the same — the client just
|
||||||
|
needs the authorization server configured out-of-band instead of discovering it automatically.
|
||||||
|
|
||||||
|
## The `HttpException` safety net
|
||||||
|
|
||||||
|
`flash-ext-oidc`'s middleware throws `HttpException.unauthorized()`/`forbidden()` on auth
|
||||||
|
failure. Flash5's core does **not** special-case `HttpException` in the default exception
|
||||||
|
handler — the out-of-the-box `AbstractRouter` default always returns a generic `500`, regardless
|
||||||
|
of the thrown exception's embedded status code; only an app that explicitly calls
|
||||||
|
`FlashApp#onException(...)` (or installs something that does) gets `HttpException.status()`
|
||||||
|
honored.
|
||||||
|
|
||||||
|
To keep the MCP endpoint correct regardless of what the rest of the app configures,
|
||||||
|
`McpTransportGuards.httpExceptionGuard()` wraps the whole route and translates `HttpException`
|
||||||
|
into the right HTTP status itself, rather than letting it fall through to the app's (possibly
|
||||||
|
unconfigured) global handler. This is scoped entirely to the MCP route — it does not touch or
|
||||||
|
override the app's `onException` for any other route.
|
||||||
@@ -0,0 +1,107 @@
|
|||||||
|
# Tools, Resources, Prompts
|
||||||
|
|
||||||
|
## One class per feature
|
||||||
|
|
||||||
|
Every tool, resource, and prompt is its own class — the same shape as a Flash `RequestHandler`,
|
||||||
|
minus the HTTP-specific bits:
|
||||||
|
|
||||||
|
```java
|
||||||
|
public abstract class McpTool {
|
||||||
|
protected void onInit() {} // cache services here, once, at boot
|
||||||
|
protected <T> T require(Class<T> type) { ... } // FlashContext lookup
|
||||||
|
public abstract ToolResponse call(ToolArguments args) throws Exception; // hot path
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
`McpResource` (`read()`) and `McpPrompt` (`render(PromptArguments)`) follow the exact same
|
||||||
|
shape. There is deliberately no CDI-style `@Inject` and no method-per-tool bean class — Flash5
|
||||||
|
handlers are classes, and MCP features follow that convention.
|
||||||
|
|
||||||
|
## Declaring metadata
|
||||||
|
|
||||||
|
Metadata (name, description, input schema) lives entirely in the annotation, not in reflected
|
||||||
|
method signatures — the whole JSON Schema is known at scan time and compiled once:
|
||||||
|
|
||||||
|
```java
|
||||||
|
@Tool(
|
||||||
|
name = "get_weather",
|
||||||
|
description = "Get current weather for a city",
|
||||||
|
args = {
|
||||||
|
@ToolArg(name = "city", description = "City name", required = true),
|
||||||
|
@ToolArg(name = "days", type = ToolArgType.INTEGER, description = "Forecast horizon")
|
||||||
|
}
|
||||||
|
)
|
||||||
|
public class GetWeatherTool extends McpTool {
|
||||||
|
@Override
|
||||||
|
public ToolResponse call(ToolArguments args) {
|
||||||
|
String city = args.getString("city");
|
||||||
|
int days = args.getInt("days", 1);
|
||||||
|
...
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
`ToolArgType` maps directly to JSON Schema primitive types: `STRING`, `INTEGER`, `NUMBER`,
|
||||||
|
`BOOLEAN`, `OBJECT`, `ARRAY`. Nested object/array schemas beyond the primitive type keyword are
|
||||||
|
not modeled in this revision — declare those tools with a looser `OBJECT`/`ARRAY` type and parse
|
||||||
|
the raw shape via `ToolArguments.raw(name)`.
|
||||||
|
|
||||||
|
`ToolArguments`/`PromptArguments` are thin typed accessors over the already-parsed JSON — no
|
||||||
|
databinding, no reflection, no intermediate DTO:
|
||||||
|
|
||||||
|
```java
|
||||||
|
args.getString("city");
|
||||||
|
args.getInt("days", 1);
|
||||||
|
args.getBoolean("metric", true);
|
||||||
|
args.raw("filters"); // escape hatch: JsonNode for nested/array arguments
|
||||||
|
```
|
||||||
|
|
||||||
|
## Discovery
|
||||||
|
|
||||||
|
`McpConfig.toolsPackage("com.example.tools")` scans that package (and subpackages) for concrete
|
||||||
|
`McpTool`/`McpResource`/`McpPrompt` subclasses carrying `@Tool`/`@Resource`/`@Prompt`. Same
|
||||||
|
fail-fast contract as `FlashApp.scan()`: missing package, missing no-arg constructor, or a class
|
||||||
|
that fails to load aborts startup immediately with a clear message. Duplicate names/URIs also
|
||||||
|
fail fast at boot.
|
||||||
|
|
||||||
|
## Resources and Prompts
|
||||||
|
|
||||||
|
```java
|
||||||
|
@Resource(uri = "config://app-settings", description = "Application settings", mimeType = "application/json")
|
||||||
|
public class AppSettingsResource extends McpResource {
|
||||||
|
@Override
|
||||||
|
public ResourceContents read() {
|
||||||
|
return TextResourceContents.of(uri(), "application/json", settingsJson());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Prompt(name = "summarize", args = @PromptArg(name = "text", required = true))
|
||||||
|
public class SummarizePrompt extends McpPrompt {
|
||||||
|
@Override
|
||||||
|
public PromptMessage render(PromptArguments args) {
|
||||||
|
return PromptMessage.withUserRole(new TextContent("Summarize: " + args.getString("text")));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
`McpResource.uri()` returns the URI declared on `@Resource`, cached at bind time — no repeated
|
||||||
|
annotation lookups on the hot path.
|
||||||
|
|
||||||
|
## Content types
|
||||||
|
|
||||||
|
`Content` and `ResourceContents` are `sealed`, currently permitting only `TextContent` and
|
||||||
|
`TextResourceContents` respectively. This is a deliberate v1 scope cut, not an oversight — image
|
||||||
|
content, embedded resources, and blob resources are extension points for a future revision
|
||||||
|
(extend the `permits` clause and `McpContentWriter`).
|
||||||
|
|
||||||
|
## Tool failures vs. protocol errors
|
||||||
|
|
||||||
|
A `McpTool.call(...)` that throws is caught by the dispatcher and turned into
|
||||||
|
`ToolResponse.error(message)` — per the MCP specification this is a normal JSON-RPC *result*
|
||||||
|
with `isError: true`, not a JSON-RPC error, so the calling model can see and react to it. Prefer
|
||||||
|
returning `ToolResponse.error(...)` explicitly when you can produce a better message than the
|
||||||
|
raw exception text.
|
||||||
|
|
||||||
|
`McpResource.read()`/`McpPrompt.render(...)` failures, by contrast, surface as JSON-RPC errors
|
||||||
|
(`-32603 Internal error`) — the specification does not define a soft-failure content convention
|
||||||
|
for those two.
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
# Transport
|
||||||
|
|
||||||
|
`flash-ext-mcp` implements the **Streamable HTTP** transport from the MCP specification
|
||||||
|
(revision `2025-11-25`). `stdio` is out of scope — Flash5 is an HTTP framework, and a
|
||||||
|
subprocess-stdio transport doesn't fit its model.
|
||||||
|
|
||||||
|
## What this revision implements
|
||||||
|
|
||||||
|
- A single `POST {rootPath}` endpoint (default `/mcp`) accepting one JSON-RPC 2.0 message per
|
||||||
|
request and responding with a plain JSON object — the "standard JSON object response" mode the
|
||||||
|
specification allows as an alternative to opening a Server-Sent Events stream per request.
|
||||||
|
- `Origin` header validation (DNS-rebinding protection), configurable via
|
||||||
|
`McpConfig.allowedOrigins(...)`.
|
||||||
|
- Full JSON-RPC lifecycle: `initialize`, `notifications/initialized` (and any other
|
||||||
|
`notifications/*`/id-less message — answered with a bare `202 Accepted`, no body, per
|
||||||
|
JSON-RPC's notification semantics), `ping`, `tools/list`, `tools/call`, `resources/list`,
|
||||||
|
`resources/read`, `prompts/list`, `prompts/get`.
|
||||||
|
|
||||||
|
## What this revision deliberately does not implement
|
||||||
|
|
||||||
|
- **No `Mcp-Session-Id` / session state.** The specification says a server "MAY assign a session
|
||||||
|
ID at initialization time" — it is optional, not mandatory. This server is stateless: every
|
||||||
|
`POST` is handled independently, with no server-side session store. `initialize` does not need
|
||||||
|
to precede other calls for the server to function (there's no session to be "not initialized"
|
||||||
|
yet), which is a looser contract than a session-aware server would enforce — acceptable for a
|
||||||
|
static, boot-time-defined tool/resource/prompt catalog.
|
||||||
|
- **No Server-Sent Events stream.** `GET {rootPath}` (used by session-aware servers to open a
|
||||||
|
standing SSE stream for server-initiated pushes) is not registered — MCP clients that only
|
||||||
|
speak the request/response half of Streamable HTTP work unaffected; clients that require a
|
||||||
|
standing SSE connection are not supported by this revision.
|
||||||
|
|
||||||
|
Both are real, intentional scope cuts for a first version — not just to keep the surface area
|
||||||
|
small: a static, precompiled tool catalog (see `tools-resources-prompts.md`) has no
|
||||||
|
`listChanged` events to push and no long-running server-initiated messages to stream, so the
|
||||||
|
stateful half of the transport buys little for the common case this extension targets. Sessions
|
||||||
|
and SSE are natural extension points if a future revision needs server push (e.g. dynamic tool
|
||||||
|
registration, elicitation, or sampling requests initiated by the server).
|
||||||
|
|
||||||
|
## Why `POST`, not the new `QUERY` HTTP method
|
||||||
|
|
||||||
|
Flash5's core recently gained `HttpMethod.QUERY` (safe, idempotent, carries a body — a good
|
||||||
|
semantic fit for JSON-RPC-over-HTTP in general). It is **not** used here: the MCP Streamable
|
||||||
|
HTTP specification mandates `POST` for the client-to-server message path. Real MCP clients send
|
||||||
|
`POST`; using `QUERY` instead would break interoperability with every existing client for a
|
||||||
|
semantic nicety this extension doesn't need standalone.
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
<?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>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>dev.relism</groupId>
|
||||||
|
<artifactId>flash-extensions</artifactId>
|
||||||
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>flash-ext-mcp</artifactId>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>dev.relism</groupId>
|
||||||
|
<artifactId>flash</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>dev.relism</groupId>
|
||||||
|
<artifactId>flash-ext-oidc</artifactId>
|
||||||
|
<optional>true</optional>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
|
<artifactId>jackson-databind</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.slf4j</groupId>
|
||||||
|
<artifactId>slf4j-api</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter</artifactId>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MCP tool/prompt content block. {@code sealed} to the variants this extension currently
|
||||||
|
* writes on the wire — extend the permits clause (and {@link McpContentWriter}) to add
|
||||||
|
* {@code ImageContent}, {@code EmbeddedResource}, etc. in a future revision.
|
||||||
|
*/
|
||||||
|
public sealed interface Content permits TextContent {}
|
||||||
+13
@@ -0,0 +1,13 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/** Standard JSON-RPC 2.0 error codes used by the MCP transport. */
|
||||||
|
final class JsonRpcErrorCode {
|
||||||
|
|
||||||
|
private JsonRpcErrorCode() {}
|
||||||
|
|
||||||
|
static final int PARSE_ERROR = -32700;
|
||||||
|
static final int INVALID_REQUEST = -32600;
|
||||||
|
static final int METHOD_NOT_FOUND = -32601;
|
||||||
|
static final int INVALID_PARAMS = -32602;
|
||||||
|
static final int INTERNAL_ERROR = -32603;
|
||||||
|
}
|
||||||
@@ -0,0 +1,122 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Immutable configuration for {@link McpExtension}.
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* McpConfig.builder("my-mcp-server")
|
||||||
|
* .version("1.0.0")
|
||||||
|
* .rootPath("/mcp")
|
||||||
|
* .toolsPackage("com.example.tools")
|
||||||
|
* .security(McpSecurity.REQUIRED)
|
||||||
|
* .resourceIdentifier("https://mcp.example.com/mcp")
|
||||||
|
* .build();
|
||||||
|
* }</pre>
|
||||||
|
*/
|
||||||
|
public final class McpConfig {
|
||||||
|
|
||||||
|
private final String name;
|
||||||
|
private final String version;
|
||||||
|
private final String instructions;
|
||||||
|
private final String rootPath;
|
||||||
|
private final String toolsPackage;
|
||||||
|
private final McpSecurity security;
|
||||||
|
private final String resourceIdentifier;
|
||||||
|
private final String authorizationServerIssuer;
|
||||||
|
private final List<String> allowedOrigins;
|
||||||
|
|
||||||
|
private McpConfig(Builder b) {
|
||||||
|
this.name = b.name;
|
||||||
|
this.version = b.version;
|
||||||
|
this.instructions = b.instructions;
|
||||||
|
this.rootPath = b.rootPath;
|
||||||
|
this.toolsPackage = b.toolsPackage;
|
||||||
|
this.security = b.security;
|
||||||
|
this.resourceIdentifier = b.resourceIdentifier;
|
||||||
|
this.authorizationServerIssuer = b.authorizationServerIssuer;
|
||||||
|
this.allowedOrigins = List.copyOf(b.allowedOrigins);
|
||||||
|
}
|
||||||
|
|
||||||
|
String name() { return name; }
|
||||||
|
String version() { return version; }
|
||||||
|
String instructions() { return instructions; }
|
||||||
|
String rootPath() { return rootPath; }
|
||||||
|
String toolsPackage() { return toolsPackage; }
|
||||||
|
McpSecurity security() { return security; }
|
||||||
|
String resourceIdentifier() { return resourceIdentifier; }
|
||||||
|
String authorizationServerIssuer() { return authorizationServerIssuer; }
|
||||||
|
List<String> allowedOrigins() { return allowedOrigins; }
|
||||||
|
|
||||||
|
public static Builder builder(String name) { return new Builder(name); }
|
||||||
|
|
||||||
|
public static final class Builder {
|
||||||
|
private final String name;
|
||||||
|
private String version = "1.0.0";
|
||||||
|
private String instructions;
|
||||||
|
private String rootPath = "/mcp";
|
||||||
|
private String toolsPackage;
|
||||||
|
private McpSecurity security = McpSecurity.AUTO;
|
||||||
|
private String resourceIdentifier;
|
||||||
|
private String authorizationServerIssuer;
|
||||||
|
private final List<String> allowedOrigins = new ArrayList<>();
|
||||||
|
|
||||||
|
private Builder(String name) {
|
||||||
|
if (name == null || name.isBlank())
|
||||||
|
throw new IllegalArgumentException("McpConfig server name cannot be blank");
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Server version reported in {@code initialize}'s {@code serverInfo}. Default {@code "1.0.0"}. */
|
||||||
|
public Builder version(String version) { this.version = version; return this; }
|
||||||
|
|
||||||
|
/** Free-text instructions surfaced to the client at {@code initialize} time. */
|
||||||
|
public Builder instructions(String instructions) { this.instructions = instructions; return this; }
|
||||||
|
|
||||||
|
/** HTTP path for the Streamable HTTP endpoint. Default {@code "/mcp"}. */
|
||||||
|
public Builder rootPath(String rootPath) { this.rootPath = normalize(rootPath); return this; }
|
||||||
|
|
||||||
|
/** Package scanned for {@link Tool @Tool}/{@link Resource @Resource}/{@link Prompt @Prompt} classes. Required. */
|
||||||
|
public Builder toolsPackage(String toolsPackage) { this.toolsPackage = toolsPackage; return this; }
|
||||||
|
|
||||||
|
/** OAuth2 requirement policy. Default {@link McpSecurity#AUTO}. */
|
||||||
|
public Builder security(McpSecurity security) { this.security = security; return this; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resource identifier used for RFC 8707 audience binding: tokens whose {@code aud} claim
|
||||||
|
* does not include this value are rejected. Optional — if unset, only standard bearer
|
||||||
|
* validation (signature/issuer/expiry) is enforced, not audience binding.
|
||||||
|
*/
|
||||||
|
public Builder resourceIdentifier(String resourceIdentifier) { this.resourceIdentifier = resourceIdentifier; return this; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Authorization server issuer URL, used to publish an RFC 9728 Protected Resource
|
||||||
|
* Metadata document at {@code /.well-known/oauth-protected-resource{rootPath}} so MCP
|
||||||
|
* clients can discover it automatically. Requires {@link #resourceIdentifier(String)}
|
||||||
|
* to also be set. Optional — without it, bearer validation still works, clients just
|
||||||
|
* need the authorization server configured out-of-band.
|
||||||
|
*/
|
||||||
|
public Builder authorizationServerIssuer(String issuer) { this.authorizationServerIssuer = issuer; return this; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Origins allowed to call the MCP endpoint (DNS-rebinding protection, per the Streamable
|
||||||
|
* HTTP transport spec). If never set, {@code Origin} validation is skipped and a warning
|
||||||
|
* is logged at boot.
|
||||||
|
*/
|
||||||
|
public Builder allowedOrigins(String... origins) { this.allowedOrigins.addAll(List.of(origins)); return this; }
|
||||||
|
|
||||||
|
public McpConfig build() {
|
||||||
|
if (toolsPackage == null || toolsPackage.isBlank())
|
||||||
|
throw new IllegalStateException(
|
||||||
|
"McpConfig.toolsPackage(...) is required — declare at least one @Tool/@Resource/@Prompt class");
|
||||||
|
return new McpConfig(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static String normalize(String path) {
|
||||||
|
if (path == null || path.isBlank()) throw new IllegalArgumentException("rootPath cannot be blank");
|
||||||
|
return path.startsWith("/") ? path : "/" + path;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+54
@@ -0,0 +1,54 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.core.JsonGenerator;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Locale;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Direct {@link JsonGenerator} writers for the fixed, known shapes of {@link Content},
|
||||||
|
* {@link ResourceContents} and {@link PromptMessage} — no databinding, one {@code switch}
|
||||||
|
* per call, matching the fixed wire shape defined by the MCP specification.
|
||||||
|
*/
|
||||||
|
final class McpContentWriter {
|
||||||
|
|
||||||
|
private McpContentWriter() {}
|
||||||
|
|
||||||
|
static void writeContentArray(JsonGenerator gen, List<Content> items) throws IOException {
|
||||||
|
gen.writeStartArray();
|
||||||
|
for (Content c : items) writeContent(gen, c);
|
||||||
|
gen.writeEndArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
static void writeContent(JsonGenerator gen, Content content) throws IOException {
|
||||||
|
if (content instanceof TextContent tc) {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("type", "text");
|
||||||
|
gen.writeStringField("text", tc.text());
|
||||||
|
gen.writeEndObject();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
throw new IllegalStateException("Unhandled Content variant: " + content.getClass());
|
||||||
|
}
|
||||||
|
|
||||||
|
static void writeResourceContents(JsonGenerator gen, ResourceContents contents) throws IOException {
|
||||||
|
if (contents instanceof TextResourceContents trc) {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("uri", trc.uri());
|
||||||
|
gen.writeStringField("mimeType", trc.mimeType());
|
||||||
|
gen.writeStringField("text", trc.text());
|
||||||
|
gen.writeEndObject();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
throw new IllegalStateException("Unhandled ResourceContents variant: " + contents.getClass());
|
||||||
|
}
|
||||||
|
|
||||||
|
static void writePromptMessage(JsonGenerator gen, PromptMessage message) throws IOException {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("role", message.role().name().toLowerCase(Locale.ROOT));
|
||||||
|
gen.writeFieldName("content");
|
||||||
|
writeContent(gen, message.content());
|
||||||
|
gen.writeEndObject();
|
||||||
|
}
|
||||||
|
}
|
||||||
+244
@@ -0,0 +1,244 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.core.JsonGenerator;
|
||||||
|
import com.fasterxml.jackson.databind.JsonNode;
|
||||||
|
import dev.relism.flash.http.ContentType;
|
||||||
|
import dev.relism.flash.models.Request;
|
||||||
|
import dev.relism.flash.models.Response;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* JSON-RPC 2.0 dispatcher for the MCP Streamable HTTP endpoint — one instance per
|
||||||
|
* {@link McpExtension}, built once at boot from a resolved {@link McpRegistry}.
|
||||||
|
*
|
||||||
|
* <p>Per the MCP specification, a {@code tools/call} failure is a normal JSON-RPC
|
||||||
|
* <em>result</em> with {@code isError: true} (see {@link ToolResponse#error}), not a JSON-RPC
|
||||||
|
* error — the model needs to see it. Everything else that goes wrong (bad params, unknown
|
||||||
|
* tool/resource/prompt name, resource/prompt handler exceptions) is a JSON-RPC error object,
|
||||||
|
* always returned with HTTP 200: the HTTP request itself succeeded, only the RPC did not. Only
|
||||||
|
* malformed HTTP-level input (unparsable JSON, not a JSON object) gets HTTP 400.
|
||||||
|
*/
|
||||||
|
final class McpDispatcher {
|
||||||
|
|
||||||
|
/** Protocol revision this dispatcher implements. */
|
||||||
|
static final String PROTOCOL_VERSION = "2025-11-25";
|
||||||
|
|
||||||
|
private final McpRegistry registry;
|
||||||
|
private final String serverName;
|
||||||
|
private final String serverVersion;
|
||||||
|
private final String instructions;
|
||||||
|
|
||||||
|
McpDispatcher(McpRegistry registry, String serverName, String serverVersion, String instructions) {
|
||||||
|
this.registry = registry;
|
||||||
|
this.serverName = serverName;
|
||||||
|
this.serverVersion = serverVersion;
|
||||||
|
this.instructions = instructions;
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle(Request req, Response res) {
|
||||||
|
byte[] body = req.body().bytes();
|
||||||
|
JsonNode root;
|
||||||
|
try {
|
||||||
|
root = McpJson.parse(body);
|
||||||
|
} catch (IOException e) {
|
||||||
|
writeError(res, 400, null, JsonRpcErrorCode.PARSE_ERROR, "Parse error: " + e.getMessage());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (root == null || !root.isObject()) {
|
||||||
|
writeError(res, 400, null, JsonRpcErrorCode.INVALID_REQUEST, "Request must be a JSON object");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
JsonNode idNode = root.get("id");
|
||||||
|
boolean isNotification = idNode == null;
|
||||||
|
String method = root.path("method").asText(null);
|
||||||
|
JsonNode params = root.path("params");
|
||||||
|
|
||||||
|
if (method == null || method.isBlank()) {
|
||||||
|
if (isNotification) { res.status(202); return; }
|
||||||
|
writeError(res, 400, idNode, JsonRpcErrorCode.INVALID_REQUEST, "Missing \"method\"");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
switch (method) {
|
||||||
|
case "initialize" -> handleInitialize(res, idNode);
|
||||||
|
case "notifications/initialized", "notifications/cancelled" -> res.status(202);
|
||||||
|
case "ping" -> handlePing(res, idNode);
|
||||||
|
case "tools/list" -> handleToolsList(res, idNode);
|
||||||
|
case "tools/call" -> handleToolsCall(res, idNode, params);
|
||||||
|
case "resources/list" -> handleResourcesList(res, idNode);
|
||||||
|
case "resources/read" -> handleResourcesRead(res, idNode, params);
|
||||||
|
case "prompts/list" -> handlePromptsList(res, idNode);
|
||||||
|
case "prompts/get" -> handlePromptsGet(res, idNode, params);
|
||||||
|
default -> {
|
||||||
|
if (isNotification) { res.status(202); return; }
|
||||||
|
throw McpProtocolException.methodNotFound(method);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (McpProtocolException e) {
|
||||||
|
writeError(res, 200, idNode, e.code, e.getMessage());
|
||||||
|
} catch (Exception e) {
|
||||||
|
writeError(res, 200, idNode, JsonRpcErrorCode.INTERNAL_ERROR, "Internal error: " + e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Method handlers ──────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
private void handleInitialize(Response res, JsonNode id) {
|
||||||
|
writeResult(res, id, gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("protocolVersion", PROTOCOL_VERSION);
|
||||||
|
gen.writeObjectFieldStart("capabilities");
|
||||||
|
if (registry.hasTools()) writeEmptyCapability(gen, "tools");
|
||||||
|
if (registry.hasResources()) writeEmptyCapability(gen, "resources");
|
||||||
|
if (registry.hasPrompts()) writeEmptyCapability(gen, "prompts");
|
||||||
|
gen.writeEndObject();
|
||||||
|
gen.writeObjectFieldStart("serverInfo");
|
||||||
|
gen.writeStringField("name", serverName);
|
||||||
|
gen.writeStringField("version", serverVersion);
|
||||||
|
gen.writeEndObject();
|
||||||
|
if (instructions != null && !instructions.isBlank())
|
||||||
|
gen.writeStringField("instructions", instructions);
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void writeEmptyCapability(JsonGenerator gen, String field) throws IOException {
|
||||||
|
gen.writeObjectFieldStart(field);
|
||||||
|
gen.writeBooleanField("listChanged", false);
|
||||||
|
gen.writeEndObject();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handlePing(Response res, JsonNode id) {
|
||||||
|
writeResult(res, id, gen -> { gen.writeStartObject(); gen.writeEndObject(); });
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handleToolsList(Response res, JsonNode id) {
|
||||||
|
writeResult(res, id, gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeFieldName("tools");
|
||||||
|
gen.writeRawValue(registry.toolsListJson());
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handleToolsCall(Response res, JsonNode id, JsonNode params) {
|
||||||
|
String name = params.path("name").asText(null);
|
||||||
|
if (name == null || name.isBlank())
|
||||||
|
throw McpProtocolException.invalidParams("\"name\" is required");
|
||||||
|
McpRegistry.RegisteredTool tool = registry.tool(name);
|
||||||
|
if (tool == null)
|
||||||
|
throw McpProtocolException.invalidParams("Unknown tool: " + name);
|
||||||
|
|
||||||
|
ToolArguments args = new ToolArguments(params.path("arguments"));
|
||||||
|
ToolResponse result;
|
||||||
|
try {
|
||||||
|
result = tool.instance().call(args);
|
||||||
|
} catch (Exception e) {
|
||||||
|
result = ToolResponse.error("Tool \"" + name + "\" failed: " + e.getMessage());
|
||||||
|
}
|
||||||
|
ToolResponse finalResult = result;
|
||||||
|
writeResult(res, id, gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeBooleanField("isError", finalResult.isError());
|
||||||
|
gen.writeFieldName("content");
|
||||||
|
McpContentWriter.writeContentArray(gen, finalResult.content());
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handleResourcesList(Response res, JsonNode id) {
|
||||||
|
writeResult(res, id, gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeFieldName("resources");
|
||||||
|
gen.writeRawValue(registry.resourcesListJson());
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handleResourcesRead(Response res, JsonNode id, JsonNode params) throws Exception {
|
||||||
|
String uri = params.path("uri").asText(null);
|
||||||
|
if (uri == null || uri.isBlank())
|
||||||
|
throw McpProtocolException.invalidParams("\"uri\" is required");
|
||||||
|
McpRegistry.RegisteredResource resource = registry.resource(uri);
|
||||||
|
if (resource == null)
|
||||||
|
throw McpProtocolException.invalidParams("Unknown resource: " + uri);
|
||||||
|
|
||||||
|
ResourceContents contents = resource.instance().read();
|
||||||
|
writeResult(res, id, gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeArrayFieldStart("contents");
|
||||||
|
McpContentWriter.writeResourceContents(gen, contents);
|
||||||
|
gen.writeEndArray();
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handlePromptsList(Response res, JsonNode id) {
|
||||||
|
writeResult(res, id, gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeFieldName("prompts");
|
||||||
|
gen.writeRawValue(registry.promptsListJson());
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handlePromptsGet(Response res, JsonNode id, JsonNode params) throws Exception {
|
||||||
|
String name = params.path("name").asText(null);
|
||||||
|
if (name == null || name.isBlank())
|
||||||
|
throw McpProtocolException.invalidParams("\"name\" is required");
|
||||||
|
McpRegistry.RegisteredPrompt prompt = registry.prompt(name);
|
||||||
|
if (prompt == null)
|
||||||
|
throw McpProtocolException.invalidParams("Unknown prompt: " + name);
|
||||||
|
|
||||||
|
PromptArguments args = new PromptArguments(params.path("arguments"));
|
||||||
|
PromptMessage message = prompt.instance().render(args);
|
||||||
|
writeResult(res, id, gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeArrayFieldStart("messages");
|
||||||
|
McpContentWriter.writePromptMessage(gen, message);
|
||||||
|
gen.writeEndArray();
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Envelope writers ─────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
private void writeResult(Response res, JsonNode id, McpJson.JsonWriter resultWriter) {
|
||||||
|
String body = McpJson.buildString(gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("jsonrpc", "2.0");
|
||||||
|
gen.writeFieldName("id");
|
||||||
|
writeId(gen, id);
|
||||||
|
gen.writeFieldName("result");
|
||||||
|
resultWriter.write(gen);
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
res.status(200).type(ContentType.JSON).body(body);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void writeError(Response res, int httpStatus, JsonNode id, int code, String message) {
|
||||||
|
String body = McpJson.buildString(gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("jsonrpc", "2.0");
|
||||||
|
gen.writeFieldName("id");
|
||||||
|
writeId(gen, id);
|
||||||
|
gen.writeObjectFieldStart("error");
|
||||||
|
gen.writeNumberField("code", code);
|
||||||
|
gen.writeStringField("message", message);
|
||||||
|
gen.writeEndObject();
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
res.status(httpStatus).type(ContentType.JSON).body(body);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void writeId(JsonGenerator gen, JsonNode id) throws IOException {
|
||||||
|
if (id == null || id.isNull() || id.isMissingNode()) { gen.writeNull(); return; }
|
||||||
|
if (id.isTextual()) gen.writeString(id.asText());
|
||||||
|
else if (id.isIntegralNumber()) gen.writeNumber(id.asLong());
|
||||||
|
else if (id.isFloatingPointNumber()) gen.writeNumber(id.asDouble());
|
||||||
|
else gen.writeNull();
|
||||||
|
}
|
||||||
|
}
|
||||||
+118
@@ -0,0 +1,118 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import dev.relism.flash.extension.FlashContext;
|
||||||
|
import dev.relism.flash.extension.FlashExtension;
|
||||||
|
import dev.relism.flash.extension.FlashRegistrar;
|
||||||
|
import dev.relism.flash.http.ContentType;
|
||||||
|
import dev.relism.flash.routing.Middleware;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MCP (Model Context Protocol) server extension. Streamable HTTP transport — a single
|
||||||
|
* {@code POST} JSON-RPC endpoint, stateless in this revision (no session, no SSE stream; see
|
||||||
|
* {@code docs/transport.md}) — dispatch precompiled at boot from classes annotated with
|
||||||
|
* {@link Tool @Tool}/{@link Resource @Resource}/{@link Prompt @Prompt} under
|
||||||
|
* {@link McpConfig#toolsPackage(String)}.
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* // Standalone, no OAuth2
|
||||||
|
* FlashApp.create(8080)
|
||||||
|
* .install(new McpExtension(McpConfig.builder("my-mcp-server")
|
||||||
|
* .toolsPackage("com.example.tools")
|
||||||
|
* .build()))
|
||||||
|
* .start();
|
||||||
|
*
|
||||||
|
* // With flash-ext-oidc as the OAuth2 resource server
|
||||||
|
* FlashApp.create(8080)
|
||||||
|
* .install(new OidcExtension(oidcConfig))
|
||||||
|
* .install(new McpExtension(McpConfig.builder("my-mcp-server")
|
||||||
|
* .toolsPackage("com.example.tools")
|
||||||
|
* .security(McpSecurity.REQUIRED)
|
||||||
|
* .resourceIdentifier("https://mcp.example.com/mcp")
|
||||||
|
* .authorizationServerIssuer("https://auth.example.com/realms/myrealm")
|
||||||
|
* .build()))
|
||||||
|
* .start();
|
||||||
|
* }</pre>
|
||||||
|
*
|
||||||
|
* <p>One server per {@code McpExtension} instance — install multiple instances (distinct
|
||||||
|
* {@code rootPath}, distinct {@code toolsPackage}) for multiple MCP servers on one app,
|
||||||
|
* mirroring the {@code OidcExtension} multi-tenant pattern. See {@code docs/security.md} for
|
||||||
|
* the full OAuth2 resolution rules.
|
||||||
|
*/
|
||||||
|
@Slf4j
|
||||||
|
public class McpExtension implements FlashExtension {
|
||||||
|
|
||||||
|
private final McpConfig config;
|
||||||
|
|
||||||
|
public McpExtension(McpConfig config) {
|
||||||
|
this.config = config;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Everything — scanning, binding, security resolution, route registration — happens here
|
||||||
|
* rather than in {@link #provide}, because binding a tool calls its {@code onInit()}, which
|
||||||
|
* may call {@code require()} on services other extensions registered lazily via
|
||||||
|
* {@code ctx.supply()}. Per {@link FlashExtension}'s contract, {@code require()} is only
|
||||||
|
* safe once {@code routes()} runs, after every extension's {@code provide()} phase has
|
||||||
|
* completed and {@code FlashContext.resolveAll()} has run.
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void routes(FlashRegistrar<?> app, FlashContext ctx) {
|
||||||
|
McpRegistry registry = McpRegistry.scan(config.toolsPackage(), ctx);
|
||||||
|
McpDispatcher dispatcher = new McpDispatcher(registry, config.name(), config.version(), config.instructions());
|
||||||
|
|
||||||
|
List<Middleware> chain = new ArrayList<>(3);
|
||||||
|
chain.add(McpTransportGuards.httpExceptionGuard());
|
||||||
|
chain.add(McpTransportGuards.originGuard(config.allowedOrigins()));
|
||||||
|
|
||||||
|
Middleware security = resolveSecurity(ctx);
|
||||||
|
if (security != null) chain.add(security);
|
||||||
|
|
||||||
|
app.post(config.rootPath(), (req, res) -> { dispatcher.handle(req, res); return null; },
|
||||||
|
chain.toArray(Middleware[]::new));
|
||||||
|
|
||||||
|
registerResourceMetadata(app, security != null);
|
||||||
|
}
|
||||||
|
|
||||||
|
private Middleware resolveSecurity(FlashContext ctx) {
|
||||||
|
if (config.security() == McpSecurity.NONE) return null;
|
||||||
|
|
||||||
|
Middleware oidcSecurity;
|
||||||
|
try {
|
||||||
|
oidcSecurity = McpOidcIntegration.resolve(ctx, config);
|
||||||
|
} catch (NoClassDefFoundError e) {
|
||||||
|
oidcSecurity = null; // flash-ext-oidc not on the classpath at all
|
||||||
|
}
|
||||||
|
if (oidcSecurity != null) return oidcSecurity;
|
||||||
|
|
||||||
|
if (config.security() == McpSecurity.REQUIRED) {
|
||||||
|
throw new IllegalStateException(
|
||||||
|
"McpSecurity.REQUIRED but flash-ext-oidc is not installed for MCP server \"" + config.name() +
|
||||||
|
"\" — install an OidcExtension before this McpExtension, or relax security to " +
|
||||||
|
"McpSecurity.AUTO/NONE if this server is meant to be public.");
|
||||||
|
}
|
||||||
|
|
||||||
|
log.warn("[flash-ext-mcp] MCP server \"{}\" is running WITHOUT OAuth2 protection — " +
|
||||||
|
"flash-ext-oidc is not installed and McpSecurity.AUTO degrades to unprotected. " +
|
||||||
|
"Install flash-ext-oidc or set McpSecurity.REQUIRED to make this a hard failure instead.",
|
||||||
|
config.name());
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void registerResourceMetadata(FlashRegistrar<?> app, boolean secured) {
|
||||||
|
if (!secured) return;
|
||||||
|
String resourceId = config.resourceIdentifier();
|
||||||
|
String issuer = config.authorizationServerIssuer();
|
||||||
|
if (resourceId == null || resourceId.isBlank() || issuer == null || issuer.isBlank()) return;
|
||||||
|
|
||||||
|
String body = McpResourceMetadata.build(resourceId, issuer);
|
||||||
|
String path = "/.well-known/oauth-protected-resource" + config.rootPath();
|
||||||
|
app.get(path, (req, res) -> {
|
||||||
|
res.type(ContentType.JSON);
|
||||||
|
return body;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.core.JsonEncoding;
|
||||||
|
import com.fasterxml.jackson.core.JsonGenerator;
|
||||||
|
import com.fasterxml.jackson.databind.JsonNode;
|
||||||
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
|
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Internal JSON access shared by the whole extension. Deliberately tree/streaming only —
|
||||||
|
* no {@code readValue(bytes, Class)} databinding anywhere in this extension. Request bodies
|
||||||
|
* are parsed once into a {@link JsonNode} (no reflection, no property matching against a
|
||||||
|
* target class); responses are written directly with {@link JsonGenerator} against the
|
||||||
|
* envelope's fixed, known shape (also no reflection).
|
||||||
|
*
|
||||||
|
* <p>Not wired to {@code flash-ext-jackson} on purpose: the MCP JSON-RPC envelope is internal
|
||||||
|
* protocol plumbing, not a user-facing serialization concern, so this extension owns its
|
||||||
|
* mapper independently — same reasoning {@code flash-ext-oidc} applies to its own JSON needs
|
||||||
|
* (see {@code json-smart} there). See {@code docs/jackson-interop.md} for the full rationale
|
||||||
|
* and how a future opt-in reuse of a shared {@code ObjectMapper} could work.
|
||||||
|
*/
|
||||||
|
final class McpJson {
|
||||||
|
|
||||||
|
private static final ObjectMapper MAPPER = new ObjectMapper();
|
||||||
|
|
||||||
|
private McpJson() {}
|
||||||
|
|
||||||
|
static JsonNode parse(byte[] body) throws IOException {
|
||||||
|
return MAPPER.readTree(body);
|
||||||
|
}
|
||||||
|
|
||||||
|
static JsonGenerator generator(OutputStream out) throws IOException {
|
||||||
|
return MAPPER.getFactory().createGenerator(out, JsonEncoding.UTF8);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Builds a small JSON document in one shot; used only for boot-time precompilation. */
|
||||||
|
static byte[] build(JsonWriter writer) {
|
||||||
|
ByteArrayOutputStream buf = new ByteArrayOutputStream(256);
|
||||||
|
try (JsonGenerator gen = generator(buf)) {
|
||||||
|
writer.write(gen);
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new IllegalStateException("Failed to build MCP JSON fragment", e);
|
||||||
|
}
|
||||||
|
return buf.toByteArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
static String buildString(JsonWriter writer) {
|
||||||
|
return new String(build(writer), StandardCharsets.UTF_8);
|
||||||
|
}
|
||||||
|
|
||||||
|
@FunctionalInterface
|
||||||
|
interface JsonWriter {
|
||||||
|
void write(JsonGenerator gen) throws IOException;
|
||||||
|
}
|
||||||
|
}
|
||||||
+56
@@ -0,0 +1,56 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import dev.relism.flash.ext.oidc.ClaimsHolder;
|
||||||
|
import dev.relism.flash.ext.oidc.OidcMiddleware;
|
||||||
|
import dev.relism.flash.exceptions.HttpException;
|
||||||
|
import dev.relism.flash.extension.FlashContext;
|
||||||
|
import dev.relism.flash.routing.Middleware;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lazy, isolated bridge to {@code flash-ext-oidc}.
|
||||||
|
*
|
||||||
|
* <p>References to OIDC types only ever resolve when {@link #resolve} is actually invoked —
|
||||||
|
* never at {@link McpExtension} class-load time — because they live in this separate nested
|
||||||
|
* class. The caller wraps the invocation in {@code catch (NoClassDefFoundError)}, exactly like
|
||||||
|
* {@code OidcExtension}'s own lazy bridge to {@code flash-ext-openapi}. This is what lets
|
||||||
|
* {@code flash-ext-mcp} run standalone (MCP-only, no OAuth2) when {@code flash-ext-oidc} is not
|
||||||
|
* even on the classpath.
|
||||||
|
*/
|
||||||
|
final class McpOidcIntegration {
|
||||||
|
|
||||||
|
private McpOidcIntegration() {}
|
||||||
|
|
||||||
|
/** Returns the security {@link Middleware} to apply, or {@code null} if oidc is not installed. */
|
||||||
|
static Middleware resolve(FlashContext ctx, McpConfig config) {
|
||||||
|
Optional<OidcMiddleware> oidc = ctx.find(OidcMiddleware.class);
|
||||||
|
if (oidc.isEmpty()) return null;
|
||||||
|
|
||||||
|
Middleware protect = oidc.get().protect();
|
||||||
|
String resourceId = config.resourceIdentifier();
|
||||||
|
if (resourceId == null || resourceId.isBlank()) return protect;
|
||||||
|
|
||||||
|
return Middleware.of(protect, audienceGuard(resourceId));
|
||||||
|
}
|
||||||
|
|
||||||
|
/** RFC 8707 audience binding: rejects tokens whose {@code aud} claim doesn't include ours. */
|
||||||
|
private static Middleware audienceGuard(String resourceIdentifier) {
|
||||||
|
return next -> (req, res) -> {
|
||||||
|
Map<String, Object> claims = ClaimsHolder.get();
|
||||||
|
if (claims != null && !audienceMatches(claims.get("aud"), resourceIdentifier)) {
|
||||||
|
throw HttpException.forbidden();
|
||||||
|
}
|
||||||
|
return next.handle(req, res);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean audienceMatches(Object aud, String expected) {
|
||||||
|
if (aud instanceof String s) return s.equals(expected);
|
||||||
|
if (aud instanceof Iterable<?> it) {
|
||||||
|
for (Object o : it) if (expected.equals(String.valueOf(o))) return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
+167
@@ -0,0 +1,167 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import dev.relism.flash.exceptions.InitializationException;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.lang.reflect.Modifier;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Enumeration;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.jar.JarEntry;
|
||||||
|
import java.util.jar.JarFile;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Minimal classpath scanner used by {@link McpConfig#toolsPackage(String)}. Finds
|
||||||
|
* {@link McpTool}/{@link McpResource}/{@link McpPrompt} subclasses carrying the matching
|
||||||
|
* annotation ({@link Tool @Tool}, {@link Resource @Resource}, {@link Prompt @Prompt}).
|
||||||
|
* Supports both exploded directories (development) and fat JARs (deployment).
|
||||||
|
*
|
||||||
|
* <p>Deliberately not shared with {@code dev.relism.flash.extension.PackageScanner}: that
|
||||||
|
* scanner is package-private and hardcoded to {@code RequestHandler}/{@code WebSocketEndpoint}.
|
||||||
|
* The directory/JAR walking logic below intentionally mirrors it — same fail-fast contract,
|
||||||
|
* same anonymous-class filtering.
|
||||||
|
*
|
||||||
|
* <p><b>Fail-fast:</b> if the package does not exist, contains no matching class, or a class
|
||||||
|
* cannot be loaded, an {@link InitializationException} is thrown immediately at boot.
|
||||||
|
*/
|
||||||
|
final class McpPackageScanner {
|
||||||
|
|
||||||
|
private McpPackageScanner() {}
|
||||||
|
|
||||||
|
record ScanResult(List<Class<? extends McpTool>> tools,
|
||||||
|
List<Class<? extends McpResource>> resources,
|
||||||
|
List<Class<? extends McpPrompt>> prompts) {}
|
||||||
|
|
||||||
|
static ScanResult scan(String packageName) {
|
||||||
|
if (packageName == null || packageName.isBlank())
|
||||||
|
throw new InitializationException("McpConfig.toolsPackage() called with null or blank package name");
|
||||||
|
|
||||||
|
String resourcePath = packageName.replace('.', '/');
|
||||||
|
ClassLoader cl = Thread.currentThread().getContextClassLoader();
|
||||||
|
List<Class<? extends McpTool>> tools = new ArrayList<>();
|
||||||
|
List<Class<? extends McpResource>> resources = new ArrayList<>();
|
||||||
|
List<Class<? extends McpPrompt>> prompts = new ArrayList<>();
|
||||||
|
List<String> errors = new ArrayList<>();
|
||||||
|
boolean packageFound = false;
|
||||||
|
|
||||||
|
try {
|
||||||
|
Enumeration<URL> urls = cl.getResources(resourcePath);
|
||||||
|
while (urls.hasMoreElements()) {
|
||||||
|
packageFound = true;
|
||||||
|
URL url = urls.nextElement();
|
||||||
|
String protocol = url.getProtocol();
|
||||||
|
if ("file".equals(protocol)) {
|
||||||
|
scanDirectory(new File(url.toURI()), packageName, cl, tools, resources, prompts, errors);
|
||||||
|
} else if ("jar".equals(protocol)) {
|
||||||
|
String jarPath = url.getPath();
|
||||||
|
String filePart = jarPath.substring(jarPath.indexOf("file:") + 5, jarPath.indexOf('!'));
|
||||||
|
try (JarFile jar = new JarFile(filePart)) {
|
||||||
|
scanJar(jar, resourcePath, cl, tools, resources, prompts, errors);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (InitializationException e) {
|
||||||
|
throw e;
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new InitializationException("Failed to scan MCP package: " + packageName, e);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!packageFound)
|
||||||
|
throw new InitializationException(
|
||||||
|
"McpConfig.toolsPackage(\"" + packageName + "\") — package not found on classpath. " +
|
||||||
|
"Verify the package name and ensure the module is on the classpath.");
|
||||||
|
|
||||||
|
if (!errors.isEmpty())
|
||||||
|
throw new InitializationException(
|
||||||
|
"McpConfig.toolsPackage(\"" + packageName + "\") — failed to load " + errors.size() + " class(es):\n • " +
|
||||||
|
String.join("\n • ", errors));
|
||||||
|
|
||||||
|
if (tools.isEmpty() && resources.isEmpty() && prompts.isEmpty())
|
||||||
|
throw new InitializationException(
|
||||||
|
"McpConfig.toolsPackage(\"" + packageName + "\") — no @Tool/@Resource/@Prompt classes found. " +
|
||||||
|
"Ensure classes extend McpTool/McpResource/McpPrompt, carry the matching annotation, " +
|
||||||
|
"are not abstract, and have a public no-arg constructor.");
|
||||||
|
|
||||||
|
return new ScanResult(List.copyOf(tools), List.copyOf(resources), List.copyOf(prompts));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void scanDirectory(File dir, String packageName, ClassLoader cl,
|
||||||
|
List<Class<? extends McpTool>> tools,
|
||||||
|
List<Class<? extends McpResource>> resources,
|
||||||
|
List<Class<? extends McpPrompt>> prompts,
|
||||||
|
List<String> errors) {
|
||||||
|
File[] files = dir.listFiles();
|
||||||
|
if (files == null) return;
|
||||||
|
for (File file : files) {
|
||||||
|
if (file.isDirectory()) {
|
||||||
|
scanDirectory(file, packageName + '.' + file.getName(), cl, tools, resources, prompts, errors);
|
||||||
|
} else if (file.getName().endsWith(".class") && !isAnonymous(file.getName())) {
|
||||||
|
String className = packageName + '.' + file.getName().replace(".class", "");
|
||||||
|
tryLoad(className, cl, tools, resources, prompts, errors);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void scanJar(JarFile jar, String resourcePath, ClassLoader cl,
|
||||||
|
List<Class<? extends McpTool>> tools,
|
||||||
|
List<Class<? extends McpResource>> resources,
|
||||||
|
List<Class<? extends McpPrompt>> prompts,
|
||||||
|
List<String> errors) {
|
||||||
|
String prefix = resourcePath + "/";
|
||||||
|
Enumeration<JarEntry> entries = jar.entries();
|
||||||
|
while (entries.hasMoreElements()) {
|
||||||
|
String name = entries.nextElement().getName();
|
||||||
|
if (name.startsWith(prefix) && name.endsWith(".class") && !isAnonymous(name)) {
|
||||||
|
String className = name.replace('/', '.').replace(".class", "");
|
||||||
|
tryLoad(className, cl, tools, resources, prompts, errors);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean isAnonymous(String fileName) {
|
||||||
|
int dollar = fileName.lastIndexOf('$');
|
||||||
|
if (dollar < 0) return false;
|
||||||
|
int next = dollar + 1;
|
||||||
|
while (next < fileName.length() && fileName.charAt(next) == '$') next++;
|
||||||
|
return next < fileName.length() && Character.isDigit(fileName.charAt(next));
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
private static void tryLoad(String className, ClassLoader cl,
|
||||||
|
List<Class<? extends McpTool>> tools,
|
||||||
|
List<Class<? extends McpResource>> resources,
|
||||||
|
List<Class<? extends McpPrompt>> prompts,
|
||||||
|
List<String> errors) {
|
||||||
|
try {
|
||||||
|
Class<?> cls = cl.loadClass(className);
|
||||||
|
if (Modifier.isAbstract(cls.getModifiers())) return;
|
||||||
|
|
||||||
|
if (McpTool.class.isAssignableFrom(cls) && cls.isAnnotationPresent(Tool.class)) {
|
||||||
|
assertNoArgConstructor(cls, errors);
|
||||||
|
tools.add((Class<? extends McpTool>) cls);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (McpResource.class.isAssignableFrom(cls) && cls.isAnnotationPresent(Resource.class)) {
|
||||||
|
assertNoArgConstructor(cls, errors);
|
||||||
|
resources.add((Class<? extends McpResource>) cls);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (McpPrompt.class.isAssignableFrom(cls) && cls.isAnnotationPresent(Prompt.class)) {
|
||||||
|
assertNoArgConstructor(cls, errors);
|
||||||
|
prompts.add((Class<? extends McpPrompt>) cls);
|
||||||
|
}
|
||||||
|
} catch (ClassNotFoundException e) {
|
||||||
|
errors.add(className + " — class not found: " + e.getMessage());
|
||||||
|
} catch (NoClassDefFoundError e) {
|
||||||
|
errors.add(className + " — missing dependency: " + e.getMessage());
|
||||||
|
} catch (LinkageError e) {
|
||||||
|
errors.add(className + " — linkage error: " + e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void assertNoArgConstructor(Class<?> cls, List<String> errors) {
|
||||||
|
try { cls.getDeclaredConstructor(); }
|
||||||
|
catch (NoSuchMethodException e) { errors.add(cls.getName() + " — missing public no-arg constructor"); }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import dev.relism.flash.extension.FlashContext;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Base class for a single MCP prompt template — one class per prompt, mirroring {@link McpTool}.
|
||||||
|
* Declare metadata with {@link Prompt @Prompt}, cache services in {@link #onInit()}, implement
|
||||||
|
* {@link #render(PromptArguments)} for the hot path.
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* @Prompt(name = "summarize", args = @PromptArg(name = "text", required = true))
|
||||||
|
* public class SummarizePrompt extends McpPrompt {
|
||||||
|
* @Override public PromptMessage render(PromptArguments args) {
|
||||||
|
* return PromptMessage.withUserRole(new TextContent("Summarize: " + args.getString("text")));
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* }</pre>
|
||||||
|
*/
|
||||||
|
public abstract class McpPrompt {
|
||||||
|
|
||||||
|
private FlashContext ctx;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called once by the framework after instantiation, before the first {@code prompts/get}.
|
||||||
|
* <b>Infrastructure method</b> — do not call from user code.
|
||||||
|
*/
|
||||||
|
public final void bind(FlashContext ctx) {
|
||||||
|
this.ctx = ctx;
|
||||||
|
onInit();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void onInit() {}
|
||||||
|
|
||||||
|
protected <T> T require(Class<T> type) {
|
||||||
|
checkBound();
|
||||||
|
return ctx.require(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected <T> Optional<T> find(Class<T> type) {
|
||||||
|
checkBound();
|
||||||
|
return ctx.find(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected <T> Optional<T> optional(Class<T> type) {
|
||||||
|
checkBound();
|
||||||
|
return ctx.optional(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void checkBound() {
|
||||||
|
if (ctx == null)
|
||||||
|
throw new IllegalStateException(
|
||||||
|
getClass().getSimpleName() + " has not been bound to a FlashContext — " +
|
||||||
|
"register via McpConfig.toolsPackage(), not by instantiating directly");
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Invoked on every matching {@code prompts/get} request (hot path). */
|
||||||
|
public abstract PromptMessage render(PromptArguments args) throws Exception;
|
||||||
|
}
|
||||||
+24
@@ -0,0 +1,24 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/** Internal signal carrying a JSON-RPC error code, caught by {@link McpDispatcher} to build the error response. */
|
||||||
|
final class McpProtocolException extends RuntimeException {
|
||||||
|
|
||||||
|
final int code;
|
||||||
|
|
||||||
|
private McpProtocolException(int code, String message) {
|
||||||
|
super(message);
|
||||||
|
this.code = code;
|
||||||
|
}
|
||||||
|
|
||||||
|
static McpProtocolException invalidRequest(String message) {
|
||||||
|
return new McpProtocolException(JsonRpcErrorCode.INVALID_REQUEST, message);
|
||||||
|
}
|
||||||
|
|
||||||
|
static McpProtocolException methodNotFound(String method) {
|
||||||
|
return new McpProtocolException(JsonRpcErrorCode.METHOD_NOT_FOUND, "Method not found: " + method);
|
||||||
|
}
|
||||||
|
|
||||||
|
static McpProtocolException invalidParams(String message) {
|
||||||
|
return new McpProtocolException(JsonRpcErrorCode.INVALID_PARAMS, message);
|
||||||
|
}
|
||||||
|
}
|
||||||
+176
@@ -0,0 +1,176 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.core.JsonGenerator;
|
||||||
|
import dev.relism.flash.exceptions.InitializationException;
|
||||||
|
import dev.relism.flash.extension.FlashContext;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.lang.reflect.Constructor;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Boot-time-built registry of tools/resources/prompts for one MCP server.
|
||||||
|
*
|
||||||
|
* <p>Everything static about the catalog — the {@code tools/list}/{@code resources/list}/
|
||||||
|
* {@code prompts/list} JSON payloads — is assembled exactly once here via
|
||||||
|
* {@link McpJson#buildString}, then spliced verbatim into responses at request time
|
||||||
|
* ({@link McpDispatcher}) with {@link JsonGenerator#writeRawValue(String)}: no
|
||||||
|
* re-serialization, no reflection, no databinding, and no per-request byte[]→String
|
||||||
|
* conversion on the hot path — the string is already sitting in memory, built once at boot.
|
||||||
|
*/
|
||||||
|
final class McpRegistry {
|
||||||
|
|
||||||
|
private static final String EMPTY_ARRAY = "[]";
|
||||||
|
|
||||||
|
record RegisteredTool(String name, McpTool instance) {}
|
||||||
|
record RegisteredResource(String uri, McpResource instance) {}
|
||||||
|
record RegisteredPrompt(String name, McpPrompt instance) {}
|
||||||
|
|
||||||
|
private final Map<String, RegisteredTool> tools = new LinkedHashMap<>();
|
||||||
|
private final Map<String, RegisteredResource> resources = new LinkedHashMap<>();
|
||||||
|
private final Map<String, RegisteredPrompt> prompts = new LinkedHashMap<>();
|
||||||
|
|
||||||
|
private String toolsListJson = EMPTY_ARRAY;
|
||||||
|
private String resourcesListJson = EMPTY_ARRAY;
|
||||||
|
private String promptsListJson = EMPTY_ARRAY;
|
||||||
|
|
||||||
|
private McpRegistry() {}
|
||||||
|
|
||||||
|
static McpRegistry scan(String packageName, FlashContext ctx) {
|
||||||
|
McpPackageScanner.ScanResult found = McpPackageScanner.scan(packageName);
|
||||||
|
McpRegistry registry = new McpRegistry();
|
||||||
|
|
||||||
|
for (Class<? extends McpTool> cls : found.tools()) {
|
||||||
|
Tool ann = cls.getAnnotation(Tool.class);
|
||||||
|
McpTool instance = instantiate(cls);
|
||||||
|
instance.bind(ctx);
|
||||||
|
if (registry.tools.putIfAbsent(ann.name(), new RegisteredTool(ann.name(), instance)) != null)
|
||||||
|
throw new InitializationException("Duplicate MCP tool name: \"" + ann.name() + "\"");
|
||||||
|
}
|
||||||
|
for (Class<? extends McpResource> cls : found.resources()) {
|
||||||
|
Resource ann = cls.getAnnotation(Resource.class);
|
||||||
|
McpResource instance = instantiate(cls);
|
||||||
|
instance.bind(ctx);
|
||||||
|
if (registry.resources.putIfAbsent(ann.uri(), new RegisteredResource(ann.uri(), instance)) != null)
|
||||||
|
throw new InitializationException("Duplicate MCP resource uri: \"" + ann.uri() + "\"");
|
||||||
|
}
|
||||||
|
for (Class<? extends McpPrompt> cls : found.prompts()) {
|
||||||
|
Prompt ann = cls.getAnnotation(Prompt.class);
|
||||||
|
McpPrompt instance = instantiate(cls);
|
||||||
|
instance.bind(ctx);
|
||||||
|
if (registry.prompts.putIfAbsent(ann.name(), new RegisteredPrompt(ann.name(), instance)) != null)
|
||||||
|
throw new InitializationException("Duplicate MCP prompt name: \"" + ann.name() + "\"");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!found.tools().isEmpty())
|
||||||
|
registry.toolsListJson = McpJson.buildString(gen -> writeToolsArray(gen, found.tools()));
|
||||||
|
if (!found.resources().isEmpty())
|
||||||
|
registry.resourcesListJson = McpJson.buildString(gen -> writeResourcesArray(gen, found.resources()));
|
||||||
|
if (!found.prompts().isEmpty())
|
||||||
|
registry.promptsListJson = McpJson.buildString(gen -> writePromptsArray(gen, found.prompts()));
|
||||||
|
|
||||||
|
return registry;
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean hasTools() { return !tools.isEmpty(); }
|
||||||
|
boolean hasResources() { return !resources.isEmpty(); }
|
||||||
|
boolean hasPrompts() { return !prompts.isEmpty(); }
|
||||||
|
|
||||||
|
String toolsListJson() { return toolsListJson; }
|
||||||
|
String resourcesListJson() { return resourcesListJson; }
|
||||||
|
String promptsListJson() { return promptsListJson; }
|
||||||
|
|
||||||
|
RegisteredTool tool(String name) { return tools.get(name); }
|
||||||
|
RegisteredResource resource(String uri) { return resources.get(uri); }
|
||||||
|
RegisteredPrompt prompt(String name) { return prompts.get(name); }
|
||||||
|
|
||||||
|
// ── Boot-time JSON Schema / descriptor precompilation ───────────────────────
|
||||||
|
|
||||||
|
private static void writeToolsArray(JsonGenerator gen, List<Class<? extends McpTool>> classes) throws IOException {
|
||||||
|
gen.writeStartArray();
|
||||||
|
for (Class<? extends McpTool> cls : classes) writeTool(gen, cls.getAnnotation(Tool.class));
|
||||||
|
gen.writeEndArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void writeTool(JsonGenerator gen, Tool ann) throws IOException {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("name", ann.name());
|
||||||
|
if (!ann.title().isBlank()) gen.writeStringField("title", ann.title());
|
||||||
|
if (!ann.description().isBlank()) gen.writeStringField("description", ann.description());
|
||||||
|
gen.writeFieldName("inputSchema");
|
||||||
|
writeInputSchema(gen, ann.args());
|
||||||
|
gen.writeEndObject();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void writeInputSchema(JsonGenerator gen, ToolArg[] args) throws IOException {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("type", "object");
|
||||||
|
gen.writeObjectFieldStart("properties");
|
||||||
|
for (ToolArg arg : args) {
|
||||||
|
gen.writeObjectFieldStart(arg.name());
|
||||||
|
gen.writeStringField("type", arg.type().jsonSchemaType());
|
||||||
|
if (!arg.description().isBlank()) gen.writeStringField("description", arg.description());
|
||||||
|
gen.writeEndObject();
|
||||||
|
}
|
||||||
|
gen.writeEndObject();
|
||||||
|
if (hasRequired(args)) {
|
||||||
|
gen.writeArrayFieldStart("required");
|
||||||
|
for (ToolArg arg : args) if (arg.required()) gen.writeString(arg.name());
|
||||||
|
gen.writeEndArray();
|
||||||
|
}
|
||||||
|
gen.writeEndObject();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean hasRequired(ToolArg[] args) {
|
||||||
|
for (ToolArg arg : args) if (arg.required()) return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void writeResourcesArray(JsonGenerator gen, List<Class<? extends McpResource>> classes) throws IOException {
|
||||||
|
gen.writeStartArray();
|
||||||
|
for (Class<? extends McpResource> cls : classes) {
|
||||||
|
Resource ann = cls.getAnnotation(Resource.class);
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("uri", ann.uri());
|
||||||
|
gen.writeStringField("name", !ann.name().isBlank() ? ann.name() : ann.uri());
|
||||||
|
if (!ann.description().isBlank()) gen.writeStringField("description", ann.description());
|
||||||
|
gen.writeStringField("mimeType", ann.mimeType());
|
||||||
|
gen.writeEndObject();
|
||||||
|
}
|
||||||
|
gen.writeEndArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void writePromptsArray(JsonGenerator gen, List<Class<? extends McpPrompt>> classes) throws IOException {
|
||||||
|
gen.writeStartArray();
|
||||||
|
for (Class<? extends McpPrompt> cls : classes) {
|
||||||
|
Prompt ann = cls.getAnnotation(Prompt.class);
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("name", ann.name());
|
||||||
|
if (!ann.description().isBlank()) gen.writeStringField("description", ann.description());
|
||||||
|
gen.writeArrayFieldStart("arguments");
|
||||||
|
for (PromptArg arg : ann.args()) {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("name", arg.name());
|
||||||
|
if (!arg.description().isBlank()) gen.writeStringField("description", arg.description());
|
||||||
|
gen.writeBooleanField("required", arg.required());
|
||||||
|
gen.writeEndObject();
|
||||||
|
}
|
||||||
|
gen.writeEndArray();
|
||||||
|
gen.writeEndObject();
|
||||||
|
}
|
||||||
|
gen.writeEndArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static <T> T instantiate(Class<T> cls) {
|
||||||
|
try {
|
||||||
|
Constructor<T> ctor = cls.getDeclaredConstructor();
|
||||||
|
return ctor.newInstance();
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new InitializationException(
|
||||||
|
"Failed to instantiate " + cls.getName() +
|
||||||
|
" — ensure it has a public no-arg constructor", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+66
@@ -0,0 +1,66 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import dev.relism.flash.extension.FlashContext;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Base class for a single MCP resource — one class per resource, mirroring {@link McpTool}.
|
||||||
|
* Declare metadata with {@link Resource @Resource}, cache services in {@link #onInit()},
|
||||||
|
* implement {@link #read()} for the hot path.
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* @Resource(uri = "config://app-settings", description = "Application settings", mimeType = "application/json")
|
||||||
|
* public class AppSettingsResource extends McpResource {
|
||||||
|
* @Override public ResourceContents read() {
|
||||||
|
* return TextResourceContents.of(uri(), "application/json", settingsJson());
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* }</pre>
|
||||||
|
*/
|
||||||
|
public abstract class McpResource {
|
||||||
|
|
||||||
|
private FlashContext ctx;
|
||||||
|
private String uri;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called once by the framework after instantiation, before the first {@code resources/read}.
|
||||||
|
* <b>Infrastructure method</b> — do not call from user code.
|
||||||
|
*/
|
||||||
|
public final void bind(FlashContext ctx) {
|
||||||
|
this.ctx = ctx;
|
||||||
|
Resource ann = getClass().getAnnotation(Resource.class);
|
||||||
|
this.uri = ann != null ? ann.uri() : null;
|
||||||
|
onInit();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void onInit() {}
|
||||||
|
|
||||||
|
protected <T> T require(Class<T> type) {
|
||||||
|
checkBound();
|
||||||
|
return ctx.require(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected <T> Optional<T> find(Class<T> type) {
|
||||||
|
checkBound();
|
||||||
|
return ctx.find(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected <T> Optional<T> optional(Class<T> type) {
|
||||||
|
checkBound();
|
||||||
|
return ctx.optional(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** URI declared via {@link Resource @Resource}, cached at bind time. */
|
||||||
|
protected final String uri() { return uri; }
|
||||||
|
|
||||||
|
private void checkBound() {
|
||||||
|
if (ctx == null)
|
||||||
|
throw new IllegalStateException(
|
||||||
|
getClass().getSimpleName() + " has not been bound to a FlashContext — " +
|
||||||
|
"register via McpConfig.toolsPackage(), not by instantiating directly");
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Invoked on every matching {@code resources/read} request (hot path). */
|
||||||
|
public abstract ResourceContents read() throws Exception;
|
||||||
|
}
|
||||||
+18
@@ -0,0 +1,18 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/** RFC 9728 OAuth 2.0 Protected Resource Metadata document, built once at boot. */
|
||||||
|
final class McpResourceMetadata {
|
||||||
|
|
||||||
|
private McpResourceMetadata() {}
|
||||||
|
|
||||||
|
static String build(String resourceIdentifier, String authorizationServerIssuer) {
|
||||||
|
return McpJson.buildString(gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("resource", resourceIdentifier);
|
||||||
|
gen.writeArrayFieldStart("authorization_servers");
|
||||||
|
gen.writeString(authorizationServerIssuer);
|
||||||
|
gen.writeEndArray();
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
+17
@@ -0,0 +1,17 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* OAuth2 requirement policy for the MCP endpoint, resolved against whether
|
||||||
|
* {@code flash-ext-oidc} is installed ({@code ctx.find(OidcMiddleware.class)}).
|
||||||
|
*/
|
||||||
|
public enum McpSecurity {
|
||||||
|
|
||||||
|
/** Fail fast at boot if {@code flash-ext-oidc} is not installed — never expose an unprotected MCP endpoint. */
|
||||||
|
REQUIRED,
|
||||||
|
|
||||||
|
/** Protect the endpoint if {@code flash-ext-oidc} is installed; otherwise run unprotected and log a warning. */
|
||||||
|
AUTO,
|
||||||
|
|
||||||
|
/** Never protect the endpoint, even if {@code flash-ext-oidc} is installed elsewhere in the app. */
|
||||||
|
NONE
|
||||||
|
}
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import dev.relism.flash.extension.FlashContext;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Base class for a single MCP tool — one class per tool, mirroring
|
||||||
|
* {@link dev.relism.flash.models.RequestHandler}: declare metadata with {@link Tool @Tool},
|
||||||
|
* cache services in {@link #onInit()}, implement {@link #call(ToolArguments)} for the hot path.
|
||||||
|
*
|
||||||
|
* <p>Discovered via {@link McpConfig#toolsPackage(String)} — instantiated with its public
|
||||||
|
* no-arg constructor and bound once at boot, before the first {@code tools/call} request.
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* @Tool(name = "get_weather", description = "Get current weather for a city",
|
||||||
|
* args = @ToolArg(name = "city", required = true))
|
||||||
|
* public class GetWeatherTool extends McpTool {
|
||||||
|
* private WeatherService weatherService;
|
||||||
|
*
|
||||||
|
* @Override protected void onInit() {
|
||||||
|
* weatherService = require(WeatherService.class);
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* @Override public ToolResponse call(ToolArguments args) {
|
||||||
|
* return ToolResponse.success(new TextContent(weatherService.fetch(args.getString("city"))));
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* }</pre>
|
||||||
|
*/
|
||||||
|
public abstract class McpTool {
|
||||||
|
|
||||||
|
private FlashContext ctx;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called once by the framework after instantiation, before the first {@code tools/call}.
|
||||||
|
* <b>Infrastructure method</b> — do not call from user code.
|
||||||
|
*/
|
||||||
|
public final void bind(FlashContext ctx) {
|
||||||
|
this.ctx = ctx;
|
||||||
|
onInit();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Override to cache services at boot time. See {@link #require}/{@link #find}. */
|
||||||
|
protected void onInit() {}
|
||||||
|
|
||||||
|
protected <T> T require(Class<T> type) {
|
||||||
|
checkBound();
|
||||||
|
return ctx.require(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected <T> Optional<T> find(Class<T> type) {
|
||||||
|
checkBound();
|
||||||
|
return ctx.find(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected <T> Optional<T> optional(Class<T> type) {
|
||||||
|
checkBound();
|
||||||
|
return ctx.optional(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void checkBound() {
|
||||||
|
if (ctx == null)
|
||||||
|
throw new IllegalStateException(
|
||||||
|
getClass().getSimpleName() + " has not been bound to a FlashContext — " +
|
||||||
|
"register via McpConfig.toolsPackage(), not by instantiating directly");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Invoked on every matching {@code tools/call} request (hot path). {@code args} is a thin
|
||||||
|
* accessor over the already-parsed JSON arguments — no databinding.
|
||||||
|
*/
|
||||||
|
public abstract ToolResponse call(ToolArguments args) throws Exception;
|
||||||
|
}
|
||||||
+62
@@ -0,0 +1,62 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import dev.relism.flash.exceptions.HttpException;
|
||||||
|
import dev.relism.flash.http.ContentType;
|
||||||
|
import dev.relism.flash.routing.Middleware;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/** Transport-level guards for the MCP Streamable HTTP endpoint. */
|
||||||
|
@Slf4j
|
||||||
|
final class McpTransportGuards {
|
||||||
|
|
||||||
|
private McpTransportGuards() {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates the {@code Origin} header per the Streamable HTTP transport's DNS-rebinding
|
||||||
|
* protection requirement. Non-browser clients that omit {@code Origin} entirely are always
|
||||||
|
* allowed through — only a <em>present but disallowed</em> value is rejected.
|
||||||
|
*
|
||||||
|
* <p>If {@code allowedOrigins} is empty, validation is skipped and a boot-time warning is
|
||||||
|
* logged — same graceful-degradation shape as {@link McpSecurity#AUTO}.
|
||||||
|
*/
|
||||||
|
static Middleware originGuard(List<String> allowedOrigins) {
|
||||||
|
if (allowedOrigins.isEmpty()) {
|
||||||
|
log.warn("[flash-ext-mcp] No allowedOrigins configured — Origin header validation " +
|
||||||
|
"(DNS-rebinding protection) is DISABLED. Configure McpConfig.allowedOrigins(...) for production use.");
|
||||||
|
return next -> next::handle;
|
||||||
|
}
|
||||||
|
return next -> (req, res) -> {
|
||||||
|
String origin = req.header("Origin");
|
||||||
|
if (origin != null && !allowedOrigins.contains(origin)) {
|
||||||
|
throw HttpException.forbidden();
|
||||||
|
}
|
||||||
|
return next.handle(req, res);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Safety net around the whole MCP route: translates {@link HttpException} (thrown by
|
||||||
|
* {@link #originGuard} or by {@code flash-ext-oidc}'s middleware) into a proper HTTP status
|
||||||
|
* directly, instead of relying on the app's global exception handler — which defaults to a
|
||||||
|
* generic 500 for every exception type unless the app owner overrides it (see
|
||||||
|
* {@code AbstractRouter}'s default {@code exceptionHandler}). Keeps the MCP endpoint
|
||||||
|
* correct out of the box regardless of what the rest of the app configures.
|
||||||
|
*/
|
||||||
|
static Middleware httpExceptionGuard() {
|
||||||
|
return next -> (req, res) -> {
|
||||||
|
try {
|
||||||
|
return next.handle(req, res);
|
||||||
|
} catch (HttpException e) {
|
||||||
|
String body = McpJson.buildString(gen -> {
|
||||||
|
gen.writeStartObject();
|
||||||
|
gen.writeStringField("error", e.getMessage());
|
||||||
|
gen.writeEndObject();
|
||||||
|
});
|
||||||
|
res.status(e.status()).type(ContentType.JSON).body(body);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import java.lang.annotation.ElementType;
|
||||||
|
import java.lang.annotation.Retention;
|
||||||
|
import java.lang.annotation.RetentionPolicy;
|
||||||
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Marks a {@link McpPrompt} subclass as an MCP prompt template and declares its metadata,
|
||||||
|
* discovered by {@link McpConfig#toolsPackage(String)}.
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* @Prompt(name = "summarize", args = @PromptArg(name = "text", required = true))
|
||||||
|
* public class SummarizePrompt extends McpPrompt {
|
||||||
|
* @Override
|
||||||
|
* public PromptMessage render(PromptArguments args) {
|
||||||
|
* return PromptMessage.withUserRole(new TextContent("Summarize: " + args.getString("text")));
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* }</pre>
|
||||||
|
*/
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target(ElementType.TYPE)
|
||||||
|
public @interface Prompt {
|
||||||
|
/** Unique prompt name (used by clients in {@code prompts/get}). */
|
||||||
|
String name();
|
||||||
|
|
||||||
|
String description() default "";
|
||||||
|
|
||||||
|
/** Arguments accepted by the prompt template — always strings per the MCP specification. */
|
||||||
|
PromptArg[] args() default {};
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Declares one argument of a {@link Prompt}. Per the MCP specification, prompt arguments are
|
||||||
|
* always strings. Used inside {@link Prompt#args()}.
|
||||||
|
*/
|
||||||
|
public @interface PromptArg {
|
||||||
|
String name();
|
||||||
|
String description() default "";
|
||||||
|
boolean required() default false;
|
||||||
|
}
|
||||||
+21
@@ -0,0 +1,21 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.JsonNode;
|
||||||
|
import com.fasterxml.jackson.databind.node.MissingNode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typed accessor over a {@code prompts/get} request's {@code arguments} object.
|
||||||
|
* Per the MCP specification, prompt arguments are always strings.
|
||||||
|
*/
|
||||||
|
public final class PromptArguments {
|
||||||
|
|
||||||
|
private final JsonNode node;
|
||||||
|
|
||||||
|
PromptArguments(JsonNode node) {
|
||||||
|
this.node = node != null ? node : MissingNode.getInstance();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean has(String name) { return node.has(name); }
|
||||||
|
public String getString(String name) { return node.path(name).asText(null); }
|
||||||
|
public String getString(String name, String defaultValue) { return node.path(name).asText(defaultValue); }
|
||||||
|
}
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/** A single message returned by a {@link McpPrompt}. */
|
||||||
|
public record PromptMessage(Role role, Content content) {
|
||||||
|
|
||||||
|
public enum Role { USER, ASSISTANT }
|
||||||
|
|
||||||
|
public static PromptMessage withUserRole(Content content) {
|
||||||
|
return new PromptMessage(Role.USER, content);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static PromptMessage withAssistantRole(Content content) {
|
||||||
|
return new PromptMessage(Role.ASSISTANT, content);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import java.lang.annotation.ElementType;
|
||||||
|
import java.lang.annotation.Retention;
|
||||||
|
import java.lang.annotation.RetentionPolicy;
|
||||||
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Marks a {@link McpResource} subclass as an MCP resource and declares its metadata, discovered
|
||||||
|
* by {@link McpConfig#toolsPackage(String)}.
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* @Resource(uri = "config://app-settings", description = "Application settings")
|
||||||
|
* public class AppSettingsResource extends McpResource {
|
||||||
|
* @Override
|
||||||
|
* public ResourceContents read() {
|
||||||
|
* return TextResourceContents.of(uri(), "application/json", settingsJson());
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* }</pre>
|
||||||
|
*/
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target(ElementType.TYPE)
|
||||||
|
public @interface Resource {
|
||||||
|
/** Unique resource URI (used by clients in {@code resources/read}). */
|
||||||
|
String uri();
|
||||||
|
|
||||||
|
String name() default "";
|
||||||
|
String description() default "";
|
||||||
|
String mimeType() default "text/plain";
|
||||||
|
}
|
||||||
+8
@@ -0,0 +1,8 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MCP resource contents. {@code sealed} to the variants this extension currently writes on
|
||||||
|
* the wire — extend the permits clause (and {@link McpContentWriter}) to add
|
||||||
|
* {@code BlobResourceContents} in a future revision.
|
||||||
|
*/
|
||||||
|
public sealed interface ResourceContents permits TextResourceContents {}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/** Plain-text content block ({@code type: "text"} on the wire). */
|
||||||
|
public record TextContent(String text) implements Content {}
|
||||||
+9
@@ -0,0 +1,9 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/** Text resource contents returned from {@code resources/read}. */
|
||||||
|
public record TextResourceContents(String uri, String mimeType, String text) implements ResourceContents {
|
||||||
|
|
||||||
|
public static TextResourceContents of(String uri, String mimeType, String text) {
|
||||||
|
return new TextResourceContents(uri, mimeType, text);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import java.lang.annotation.ElementType;
|
||||||
|
import java.lang.annotation.Retention;
|
||||||
|
import java.lang.annotation.RetentionPolicy;
|
||||||
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Marks a {@link McpTool} subclass as an MCP tool and declares its metadata, discovered by
|
||||||
|
* {@link McpConfig#toolsPackage(String)}.
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* @Tool(
|
||||||
|
* name = "get_weather",
|
||||||
|
* description = "Get current weather for a city",
|
||||||
|
* args = @ToolArg(name = "city", description = "City name", required = true)
|
||||||
|
* )
|
||||||
|
* public class GetWeatherTool extends McpTool {
|
||||||
|
* @Override
|
||||||
|
* public ToolResponse call(ToolArguments args) {
|
||||||
|
* return ToolResponse.success(new TextContent(weatherService.fetch(args.getString("city"))));
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* }</pre>
|
||||||
|
*/
|
||||||
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
|
@Target(ElementType.TYPE)
|
||||||
|
public @interface Tool {
|
||||||
|
/** Unique tool name (used by clients in {@code tools/call}). */
|
||||||
|
String name();
|
||||||
|
|
||||||
|
/** Human/model-readable description of what the tool does. */
|
||||||
|
String description() default "";
|
||||||
|
|
||||||
|
/** Optional display title, distinct from {@link #name()}. */
|
||||||
|
String title() default "";
|
||||||
|
|
||||||
|
/** Input arguments — assembled into the tool's JSON Schema {@code inputSchema} once at boot. */
|
||||||
|
ToolArg[] args() default {};
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Declares one input argument of a {@link Tool}. Used inside {@link Tool#args()} — the whole
|
||||||
|
* input JSON Schema is assembled once at scan time from these, never at call time.
|
||||||
|
*/
|
||||||
|
public @interface ToolArg {
|
||||||
|
String name();
|
||||||
|
ToolArgType type() default ToolArgType.STRING;
|
||||||
|
String description() default "";
|
||||||
|
boolean required() default false;
|
||||||
|
}
|
||||||
+11
@@ -0,0 +1,11 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
/** JSON Schema primitive types available for {@link ToolArg#type()}. */
|
||||||
|
public enum ToolArgType {
|
||||||
|
STRING, INTEGER, NUMBER, BOOLEAN, OBJECT, ARRAY;
|
||||||
|
|
||||||
|
/** JSON Schema {@code "type"} keyword value. */
|
||||||
|
String jsonSchemaType() {
|
||||||
|
return name().toLowerCase(java.util.Locale.ROOT);
|
||||||
|
}
|
||||||
|
}
|
||||||
+48
@@ -0,0 +1,48 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.JsonNode;
|
||||||
|
import com.fasterxml.jackson.databind.node.MissingNode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Typed accessor over a {@code tools/call} request's {@code arguments} object.
|
||||||
|
*
|
||||||
|
* <p>Wraps the already-parsed {@link JsonNode} directly — no POJO databinding, no reflection,
|
||||||
|
* no intermediate copy. Same spirit as {@code QueryParams}/{@code PathParams} in Flash core:
|
||||||
|
* a thin typed view over data that already exists in memory.
|
||||||
|
*
|
||||||
|
* <pre>{@code
|
||||||
|
* public ToolResponse call(ToolArguments args) {
|
||||||
|
* String city = args.getString("city");
|
||||||
|
* int days = args.getInt("days", 1);
|
||||||
|
* ...
|
||||||
|
* }
|
||||||
|
* }</pre>
|
||||||
|
*/
|
||||||
|
public final class ToolArguments {
|
||||||
|
|
||||||
|
private final JsonNode node;
|
||||||
|
|
||||||
|
ToolArguments(JsonNode node) {
|
||||||
|
this.node = node != null ? node : MissingNode.getInstance();
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean has(String name) { return node.has(name); }
|
||||||
|
|
||||||
|
public String getString(String name) { return node.path(name).asText(null); }
|
||||||
|
public String getString(String name, String defaultValue) { return node.path(name).asText(defaultValue); }
|
||||||
|
|
||||||
|
public int getInt(String name) { return node.path(name).asInt(); }
|
||||||
|
public int getInt(String name, int defaultValue) { return node.path(name).asInt(defaultValue); }
|
||||||
|
|
||||||
|
public long getLong(String name) { return node.path(name).asLong(); }
|
||||||
|
public long getLong(String name, long defaultValue) { return node.path(name).asLong(defaultValue); }
|
||||||
|
|
||||||
|
public double getDouble(String name) { return node.path(name).asDouble(); }
|
||||||
|
public double getDouble(String name, double defaultValue) { return node.path(name).asDouble(defaultValue); }
|
||||||
|
|
||||||
|
public boolean getBoolean(String name) { return node.path(name).asBoolean(); }
|
||||||
|
public boolean getBoolean(String name, boolean defaultValue) { return node.path(name).asBoolean(defaultValue); }
|
||||||
|
|
||||||
|
/** Escape hatch for nested/array arguments not covered by the typed accessors above. */
|
||||||
|
public JsonNode raw(String name) { return node.path(name); }
|
||||||
|
}
|
||||||
+32
@@ -0,0 +1,32 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/** Result of a {@link McpTool#call(ToolArguments)} invocation. */
|
||||||
|
public final class ToolResponse {
|
||||||
|
|
||||||
|
private final List<Content> content;
|
||||||
|
private final boolean isError;
|
||||||
|
|
||||||
|
private ToolResponse(List<Content> content, boolean isError) {
|
||||||
|
this.content = content;
|
||||||
|
this.isError = isError;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Successful tool result carrying one or more content blocks. */
|
||||||
|
public static ToolResponse success(Content... content) {
|
||||||
|
return new ToolResponse(List.of(content), false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tool-level failure — per the MCP specification this is still a normal JSON-RPC
|
||||||
|
* <em>result</em> (not a JSON-RPC error) with {@code isError: true}, so the model can see
|
||||||
|
* and react to it.
|
||||||
|
*/
|
||||||
|
public static ToolResponse error(String message) {
|
||||||
|
return new ToolResponse(List.of(new TextContent(message)), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Content> content() { return content; }
|
||||||
|
boolean isError() { return isError; }
|
||||||
|
}
|
||||||
+94
@@ -0,0 +1,94 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import com.nimbusds.jose.JWSAlgorithm;
|
||||||
|
import com.nimbusds.jose.JWSHeader;
|
||||||
|
import com.nimbusds.jose.crypto.RSASSASigner;
|
||||||
|
import com.nimbusds.jose.jwk.JWKSet;
|
||||||
|
import com.nimbusds.jose.jwk.KeyUse;
|
||||||
|
import com.nimbusds.jose.jwk.RSAKey;
|
||||||
|
import com.nimbusds.jwt.JWTClaimsSet;
|
||||||
|
import com.nimbusds.jwt.SignedJWT;
|
||||||
|
import com.sun.net.httpserver.HttpServer;
|
||||||
|
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.net.InetSocketAddress;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.security.KeyPair;
|
||||||
|
import java.security.KeyPairGenerator;
|
||||||
|
import java.security.interfaces.RSAPrivateKey;
|
||||||
|
import java.security.interfaces.RSAPublicKey;
|
||||||
|
import java.time.Instant;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Minimal, self-contained fake OIDC provider for tests: real discovery document, real JWKS
|
||||||
|
* endpoint, real RS256-signed tokens — no network dependency beyond localhost, no mocking
|
||||||
|
* framework. Exercises {@code flash-ext-oidc}'s actual discovery + JWKS + JWT validation path.
|
||||||
|
*/
|
||||||
|
final class FakeOidcProvider implements AutoCloseable {
|
||||||
|
|
||||||
|
private final HttpServer server;
|
||||||
|
private final String issuer;
|
||||||
|
private final RSAKey rsaKey;
|
||||||
|
|
||||||
|
FakeOidcProvider() throws Exception {
|
||||||
|
KeyPairGenerator gen = KeyPairGenerator.getInstance("RSA");
|
||||||
|
gen.initialize(2048);
|
||||||
|
KeyPair kp = gen.generateKeyPair();
|
||||||
|
this.rsaKey = new RSAKey.Builder((RSAPublicKey) kp.getPublic())
|
||||||
|
.privateKey((RSAPrivateKey) kp.getPrivate())
|
||||||
|
.keyUse(KeyUse.SIGNATURE)
|
||||||
|
.algorithm(JWSAlgorithm.RS256)
|
||||||
|
.keyID(UUID.randomUUID().toString())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
this.server = HttpServer.create(new InetSocketAddress("127.0.0.1", 0), 0);
|
||||||
|
this.issuer = "http://127.0.0.1:" + server.getAddress().getPort();
|
||||||
|
|
||||||
|
server.createContext("/.well-known/openid-configuration", ex -> respond(ex, discoveryDocument()));
|
||||||
|
server.createContext("/jwks", ex -> respond(ex, new JWKSet(rsaKey.toPublicJWK()).toJSONObject().toString()));
|
||||||
|
server.setExecutor(null);
|
||||||
|
server.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
String issuer() { return issuer; }
|
||||||
|
|
||||||
|
/** Mints a valid RS256 access token — bearer-validation only, no full authorization-code round-trip needed. */
|
||||||
|
String signToken(String subject, String audience) {
|
||||||
|
try {
|
||||||
|
JWTClaimsSet claims = new JWTClaimsSet.Builder()
|
||||||
|
.issuer(issuer)
|
||||||
|
.subject(subject)
|
||||||
|
.audience(audience)
|
||||||
|
.issueTime(Date.from(Instant.now()))
|
||||||
|
.expirationTime(Date.from(Instant.now().plusSeconds(300)))
|
||||||
|
.build();
|
||||||
|
SignedJWT jwt = new SignedJWT(
|
||||||
|
new JWSHeader.Builder(JWSAlgorithm.RS256).keyID(rsaKey.getKeyID()).build(), claims);
|
||||||
|
jwt.sign(new RSASSASigner(rsaKey));
|
||||||
|
return jwt.serialize();
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new IllegalStateException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private String discoveryDocument() {
|
||||||
|
return "{"
|
||||||
|
+ "\"issuer\":\"" + issuer + "\","
|
||||||
|
+ "\"authorization_endpoint\":\"" + issuer + "/auth\","
|
||||||
|
+ "\"token_endpoint\":\"" + issuer + "/token\","
|
||||||
|
+ "\"jwks_uri\":\"" + issuer + "/jwks\""
|
||||||
|
+ "}";
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void respond(com.sun.net.httpserver.HttpExchange ex, String body) throws java.io.IOException {
|
||||||
|
byte[] bytes = body.getBytes(StandardCharsets.UTF_8);
|
||||||
|
ex.getResponseHeaders().add("Content-Type", "application/json");
|
||||||
|
ex.sendResponseHeaders(200, bytes.length);
|
||||||
|
try (OutputStream os = ex.getResponseBody()) { os.write(bytes); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void close() { server.stop(0); }
|
||||||
|
}
|
||||||
+143
@@ -0,0 +1,143 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.JsonNode;
|
||||||
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
|
import dev.relism.flash.extension.FlashApp;
|
||||||
|
import org.junit.jupiter.api.AfterEach;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.net.ServerSocket;
|
||||||
|
import java.net.URI;
|
||||||
|
import java.net.http.HttpClient;
|
||||||
|
import java.net.http.HttpRequest;
|
||||||
|
import java.net.http.HttpResponse;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
|
/** End-to-end JSON-RPC lifecycle over the real Streamable HTTP endpoint — no OAuth2 involved. */
|
||||||
|
class McpExtensionIntegrationTest {
|
||||||
|
|
||||||
|
private static final ObjectMapper MAPPER = new ObjectMapper();
|
||||||
|
|
||||||
|
private FlashApp app;
|
||||||
|
private String mcpUrl;
|
||||||
|
private HttpClient client;
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void setUp() throws Exception {
|
||||||
|
int port;
|
||||||
|
try (ServerSocket s = new ServerSocket(0)) {
|
||||||
|
port = s.getLocalPort();
|
||||||
|
}
|
||||||
|
mcpUrl = "http://127.0.0.1:" + port + "/mcp";
|
||||||
|
client = HttpClient.newHttpClient();
|
||||||
|
|
||||||
|
McpConfig config = McpConfig.builder("test-server")
|
||||||
|
.version("9.9.9")
|
||||||
|
.toolsPackage("dev.relism.flash.ext.mcp.fixtures")
|
||||||
|
.security(McpSecurity.NONE)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
app = FlashApp.create(port);
|
||||||
|
app.install(new McpExtension(config));
|
||||||
|
app.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
@AfterEach
|
||||||
|
void tearDown() {
|
||||||
|
if (app != null) app.stop();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void initialize_returnsProtocolVersionCapabilitiesAndServerInfo() throws Exception {
|
||||||
|
JsonNode result = call(1, "initialize", "{}").get("result");
|
||||||
|
|
||||||
|
assertTrue(result.has("protocolVersion"));
|
||||||
|
assertEquals("test-server", result.get("serverInfo").get("name").asText());
|
||||||
|
assertEquals("9.9.9", result.get("serverInfo").get("version").asText());
|
||||||
|
assertTrue(result.get("capabilities").has("tools"));
|
||||||
|
assertTrue(result.get("capabilities").has("resources"));
|
||||||
|
assertTrue(result.get("capabilities").has("prompts"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void toolsList_containsRegisteredTools() throws Exception {
|
||||||
|
JsonNode tools = call(2, "tools/list", "{}").get("result").get("tools");
|
||||||
|
assertEquals(2, tools.size());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void toolsCall_echo_returnsContent() throws Exception {
|
||||||
|
JsonNode result = call(3, "tools/call", "{\"name\":\"echo\",\"arguments\":{\"text\":\"hi there\"}}").get("result");
|
||||||
|
assertFalse(result.get("isError").asBoolean());
|
||||||
|
assertEquals("hi there", result.get("content").get(0).get("text").asText());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void toolsCall_failingTool_returnsIsErrorResultNotProtocolError() throws Exception {
|
||||||
|
JsonNode response = call(4, "tools/call", "{\"name\":\"boom\",\"arguments\":{}}");
|
||||||
|
assertFalse(response.has("error"));
|
||||||
|
JsonNode result = response.get("result");
|
||||||
|
assertTrue(result.get("isError").asBoolean());
|
||||||
|
assertTrue(result.get("content").get(0).get("text").asText().contains("kaboom"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void toolsCall_unknownTool_returnsJsonRpcInvalidParamsError() throws Exception {
|
||||||
|
JsonNode response = call(5, "tools/call", "{\"name\":\"nope\",\"arguments\":{}}");
|
||||||
|
assertEquals(-32602, response.get("error").get("code").asInt());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void resourcesRead_returnsTextContents() throws Exception {
|
||||||
|
JsonNode result = call(6, "resources/read", "{\"uri\":\"greeting://hello\"}").get("result");
|
||||||
|
assertEquals("hello world", result.get("contents").get(0).get("text").asText());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void promptsGet_rendersMessage() throws Exception {
|
||||||
|
JsonNode result = call(7, "prompts/get", "{\"name\":\"summarize\",\"arguments\":{\"text\":\"foo\"}}").get("result");
|
||||||
|
assertEquals("Summarize: foo", result.get("messages").get(0).get("content").get("text").asText());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void notification_returns202WithEmptyBody() throws Exception {
|
||||||
|
String body = "{\"jsonrpc\":\"2.0\",\"method\":\"notifications/initialized\"}";
|
||||||
|
HttpResponse<String> resp = post(body);
|
||||||
|
assertEquals(202, resp.statusCode());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void malformedJson_returns400ParseError() throws Exception {
|
||||||
|
HttpResponse<String> resp = post("not json");
|
||||||
|
assertEquals(400, resp.statusCode());
|
||||||
|
JsonNode json = MAPPER.readTree(resp.body());
|
||||||
|
assertEquals(-32700, json.get("error").get("code").asInt());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void unknownMethod_returnsJsonRpcMethodNotFound() throws Exception {
|
||||||
|
JsonNode response = call(8, "not/a/method", "{}");
|
||||||
|
assertEquals(-32601, response.get("error").get("code").asInt());
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Helpers ──────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
private JsonNode call(int id, String method, String paramsJson) throws Exception {
|
||||||
|
String body = "{\"jsonrpc\":\"2.0\",\"id\":" + id + ",\"method\":\"" + method + "\",\"params\":" + paramsJson + "}";
|
||||||
|
HttpResponse<String> resp = post(body);
|
||||||
|
assertEquals(200, resp.statusCode());
|
||||||
|
return MAPPER.readTree(resp.body());
|
||||||
|
}
|
||||||
|
|
||||||
|
private HttpResponse<String> post(String body) throws Exception {
|
||||||
|
HttpRequest req = HttpRequest.newBuilder(URI.create(mcpUrl))
|
||||||
|
.header("Content-Type", "application/json")
|
||||||
|
.POST(HttpRequest.BodyPublishers.ofString(body))
|
||||||
|
.build();
|
||||||
|
return client.send(req, HttpResponse.BodyHandlers.ofString());
|
||||||
|
}
|
||||||
|
}
|
||||||
+131
@@ -0,0 +1,131 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import dev.relism.flash.ext.oidc.OidcConfig;
|
||||||
|
import dev.relism.flash.ext.oidc.OidcExtension;
|
||||||
|
import dev.relism.flash.extension.FlashApp;
|
||||||
|
import org.junit.jupiter.api.AfterEach;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.net.ServerSocket;
|
||||||
|
import java.net.URI;
|
||||||
|
import java.net.http.HttpClient;
|
||||||
|
import java.net.http.HttpRequest;
|
||||||
|
import java.net.http.HttpResponse;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exercises the actual OAuth2 resolution rules against a real {@code flash-ext-oidc}
|
||||||
|
* installation backed by {@link FakeOidcProvider} — real discovery, real JWKS, real RS256
|
||||||
|
* tokens — plus the fail-fast/degrade behavior when oidc is absent.
|
||||||
|
*/
|
||||||
|
class McpExtensionSecurityTest {
|
||||||
|
|
||||||
|
private static final String TOOLS_PACKAGE = "dev.relism.flash.ext.mcp.fixtures";
|
||||||
|
|
||||||
|
private FlashApp app;
|
||||||
|
private FakeOidcProvider provider;
|
||||||
|
|
||||||
|
@AfterEach
|
||||||
|
void tearDown() {
|
||||||
|
if (app != null) app.stop();
|
||||||
|
if (provider != null) provider.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void required_withoutOidc_throwsAtBoot() throws Exception {
|
||||||
|
int port = freePort();
|
||||||
|
app = FlashApp.create(port);
|
||||||
|
app.install(new McpExtension(McpConfig.builder("secure-server")
|
||||||
|
.toolsPackage(TOOLS_PACKAGE)
|
||||||
|
.security(McpSecurity.REQUIRED)
|
||||||
|
.build()));
|
||||||
|
|
||||||
|
assertThrows(IllegalStateException.class, () -> app.start());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void auto_withoutOidc_degradesToPublic() throws Exception {
|
||||||
|
int port = freePort();
|
||||||
|
app = FlashApp.create(port);
|
||||||
|
app.install(new McpExtension(McpConfig.builder("auto-server")
|
||||||
|
.toolsPackage(TOOLS_PACKAGE)
|
||||||
|
.security(McpSecurity.AUTO)
|
||||||
|
.build()));
|
||||||
|
app.start();
|
||||||
|
|
||||||
|
HttpResponse<String> resp = post(port, initializeBody(), null);
|
||||||
|
assertEquals(200, resp.statusCode());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void required_withOidc_rejectsMissingToken() throws Exception {
|
||||||
|
int port = bootSecuredApp(null);
|
||||||
|
|
||||||
|
HttpResponse<String> resp = post(port, initializeBody(), null);
|
||||||
|
assertEquals(401, resp.statusCode());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void required_withOidc_rejectsWrongAudience() throws Exception {
|
||||||
|
int port = bootSecuredApp("https://mcp.example.com/mcp");
|
||||||
|
String token = provider.signToken("user-1", "https://someone-else.example.com/resource");
|
||||||
|
|
||||||
|
HttpResponse<String> resp = post(port, initializeBody(), token);
|
||||||
|
assertEquals(403, resp.statusCode());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void required_withOidc_acceptsValidAudience() throws Exception {
|
||||||
|
String resourceId = "https://mcp.example.com/mcp";
|
||||||
|
int port = bootSecuredApp(resourceId);
|
||||||
|
String token = provider.signToken("user-1", resourceId);
|
||||||
|
|
||||||
|
HttpResponse<String> resp = post(port, initializeBody(), token);
|
||||||
|
assertEquals(200, resp.statusCode());
|
||||||
|
assertTrue(resp.body().contains("\"protocolVersion\""));
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Helpers ──────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
private int bootSecuredApp(String resourceIdentifier) throws Exception {
|
||||||
|
provider = new FakeOidcProvider();
|
||||||
|
int port = freePort();
|
||||||
|
|
||||||
|
OidcConfig oidcConfig = OidcConfig.builder(
|
||||||
|
provider.issuer(), "mcp-client", "secret", "/auth/callback")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
var mcpBuilder = McpConfig.builder("secure-server")
|
||||||
|
.toolsPackage(TOOLS_PACKAGE)
|
||||||
|
.security(McpSecurity.REQUIRED);
|
||||||
|
if (resourceIdentifier != null) mcpBuilder.resourceIdentifier(resourceIdentifier);
|
||||||
|
|
||||||
|
app = FlashApp.create(port);
|
||||||
|
app.install(new OidcExtension(oidcConfig));
|
||||||
|
app.install(new McpExtension(mcpBuilder.build()));
|
||||||
|
app.start();
|
||||||
|
return port;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static String initializeBody() {
|
||||||
|
return "{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"initialize\",\"params\":{}}";
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int freePort() throws Exception {
|
||||||
|
try (ServerSocket s = new ServerSocket(0)) {
|
||||||
|
return s.getLocalPort();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static HttpResponse<String> post(int port, String body, String bearerToken) throws Exception {
|
||||||
|
HttpRequest.Builder req = HttpRequest.newBuilder(URI.create("http://127.0.0.1:" + port + "/mcp"))
|
||||||
|
.header("Content-Type", "application/json")
|
||||||
|
.header("Accept", "application/json")
|
||||||
|
.POST(HttpRequest.BodyPublishers.ofString(body));
|
||||||
|
if (bearerToken != null) req.header("Authorization", "Bearer " + bearerToken);
|
||||||
|
return HttpClient.newHttpClient().send(req.build(), HttpResponse.BodyHandlers.ofString());
|
||||||
|
}
|
||||||
|
}
|
||||||
+57
@@ -0,0 +1,57 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.JsonNode;
|
||||||
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
|
import dev.relism.flash.exceptions.InitializationException;
|
||||||
|
import dev.relism.flash.extension.FlashContext;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
|
class McpRegistryTest {
|
||||||
|
|
||||||
|
private static final ObjectMapper MAPPER = new ObjectMapper();
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void scan_findsAndPrecompilesToolsResourcesPrompts() throws Exception {
|
||||||
|
McpRegistry registry = McpRegistry.scan("dev.relism.flash.ext.mcp.fixtures", new FlashContext());
|
||||||
|
|
||||||
|
assertTrue(registry.hasTools());
|
||||||
|
assertTrue(registry.hasResources());
|
||||||
|
assertTrue(registry.hasPrompts());
|
||||||
|
|
||||||
|
JsonNode tools = MAPPER.readTree(registry.toolsListJson());
|
||||||
|
assertEquals(2, tools.size()); // echo + boom
|
||||||
|
JsonNode echo = findByField(tools, "name", "echo");
|
||||||
|
assertEquals("Echoes the given text", echo.get("description").asText());
|
||||||
|
assertEquals("object", echo.get("inputSchema").get("type").asText());
|
||||||
|
assertEquals("string", echo.get("inputSchema").get("properties").get("text").get("type").asText());
|
||||||
|
assertEquals("text", echo.get("inputSchema").get("required").get(0).asText());
|
||||||
|
|
||||||
|
JsonNode resources = MAPPER.readTree(registry.resourcesListJson());
|
||||||
|
assertEquals(1, resources.size());
|
||||||
|
assertEquals("greeting://hello", resources.get(0).get("uri").asText());
|
||||||
|
|
||||||
|
JsonNode prompts = MAPPER.readTree(registry.promptsListJson());
|
||||||
|
assertEquals(1, prompts.size());
|
||||||
|
assertEquals("summarize", prompts.get(0).get("name").asText());
|
||||||
|
assertTrue(prompts.get(0).get("arguments").get(0).get("required").asBoolean());
|
||||||
|
|
||||||
|
assertEquals("echo", registry.tool("echo").name());
|
||||||
|
assertEquals("greeting://hello", registry.resource("greeting://hello").uri());
|
||||||
|
assertEquals("summarize", registry.prompt("summarize").name());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void scan_emptyPackage_throwsInitializationException() {
|
||||||
|
assertThrows(InitializationException.class,
|
||||||
|
() -> McpRegistry.scan("dev.relism.flash.ext.mcp.doesnotexist", new FlashContext()));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static JsonNode findByField(JsonNode array, String field, String value) {
|
||||||
|
for (JsonNode n : array) if (value.equals(n.path(field).asText())) return n;
|
||||||
|
throw new AssertionError("No entry with " + field + "=" + value);
|
||||||
|
}
|
||||||
|
}
|
||||||
+48
@@ -0,0 +1,48 @@
|
|||||||
|
package dev.relism.flash.ext.mcp;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertFalse;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertNull;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
|
class ToolArgumentsTest {
|
||||||
|
|
||||||
|
private static final ObjectMapper MAPPER = new ObjectMapper();
|
||||||
|
|
||||||
|
private ToolArguments of(String json) throws Exception {
|
||||||
|
return new ToolArguments(MAPPER.readTree(json));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void readsTypedFields() throws Exception {
|
||||||
|
ToolArguments args = of("{\"city\":\"Rome\",\"days\":3,\"temp\":21.5,\"metric\":true}");
|
||||||
|
|
||||||
|
assertEquals("Rome", args.getString("city"));
|
||||||
|
assertEquals(3, args.getInt("days"));
|
||||||
|
assertEquals(21.5, args.getDouble("temp"));
|
||||||
|
assertTrue(args.getBoolean("metric"));
|
||||||
|
assertTrue(args.has("city"));
|
||||||
|
assertFalse(args.has("missing"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void missingFieldsFallBackToDefaults() throws Exception {
|
||||||
|
ToolArguments args = of("{}");
|
||||||
|
|
||||||
|
assertNull(args.getString("missing"));
|
||||||
|
assertEquals("fallback", args.getString("missing", "fallback"));
|
||||||
|
assertEquals(0, args.getInt("missing"));
|
||||||
|
assertEquals(42, args.getInt("missing", 42));
|
||||||
|
assertFalse(args.getBoolean("missing"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void nullArgumentsNodeBehavesAsEmpty() {
|
||||||
|
ToolArguments args = new ToolArguments(null);
|
||||||
|
assertFalse(args.has("anything"));
|
||||||
|
assertNull(args.getString("anything"));
|
||||||
|
}
|
||||||
|
}
|
||||||
+18
@@ -0,0 +1,18 @@
|
|||||||
|
package dev.relism.flash.ext.mcp.fixtures;
|
||||||
|
|
||||||
|
import dev.relism.flash.ext.mcp.McpTool;
|
||||||
|
import dev.relism.flash.ext.mcp.TextContent;
|
||||||
|
import dev.relism.flash.ext.mcp.Tool;
|
||||||
|
import dev.relism.flash.ext.mcp.ToolArg;
|
||||||
|
import dev.relism.flash.ext.mcp.ToolArguments;
|
||||||
|
import dev.relism.flash.ext.mcp.ToolResponse;
|
||||||
|
|
||||||
|
@Tool(name = "echo", description = "Echoes the given text",
|
||||||
|
args = @ToolArg(name = "text", description = "Text to echo", required = true))
|
||||||
|
public class EchoTool extends McpTool {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ToolResponse call(ToolArguments args) {
|
||||||
|
return ToolResponse.success(new TextContent(args.getString("text")));
|
||||||
|
}
|
||||||
|
}
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
package dev.relism.flash.ext.mcp.fixtures;
|
||||||
|
|
||||||
|
import dev.relism.flash.ext.mcp.McpTool;
|
||||||
|
import dev.relism.flash.ext.mcp.Tool;
|
||||||
|
import dev.relism.flash.ext.mcp.ToolArguments;
|
||||||
|
import dev.relism.flash.ext.mcp.ToolResponse;
|
||||||
|
|
||||||
|
@Tool(name = "boom", description = "Always fails")
|
||||||
|
public class FailingTool extends McpTool {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ToolResponse call(ToolArguments args) {
|
||||||
|
throw new IllegalStateException("kaboom");
|
||||||
|
}
|
||||||
|
}
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
package dev.relism.flash.ext.mcp.fixtures;
|
||||||
|
|
||||||
|
import dev.relism.flash.ext.mcp.McpResource;
|
||||||
|
import dev.relism.flash.ext.mcp.Resource;
|
||||||
|
import dev.relism.flash.ext.mcp.ResourceContents;
|
||||||
|
import dev.relism.flash.ext.mcp.TextResourceContents;
|
||||||
|
|
||||||
|
@Resource(uri = "greeting://hello", description = "A greeting", mimeType = "text/plain")
|
||||||
|
public class GreetingResource extends McpResource {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ResourceContents read() {
|
||||||
|
return TextResourceContents.of(uri(), "text/plain", "hello world");
|
||||||
|
}
|
||||||
|
}
|
||||||
+18
@@ -0,0 +1,18 @@
|
|||||||
|
package dev.relism.flash.ext.mcp.fixtures;
|
||||||
|
|
||||||
|
import dev.relism.flash.ext.mcp.McpPrompt;
|
||||||
|
import dev.relism.flash.ext.mcp.Prompt;
|
||||||
|
import dev.relism.flash.ext.mcp.PromptArg;
|
||||||
|
import dev.relism.flash.ext.mcp.PromptArguments;
|
||||||
|
import dev.relism.flash.ext.mcp.PromptMessage;
|
||||||
|
import dev.relism.flash.ext.mcp.TextContent;
|
||||||
|
|
||||||
|
@Prompt(name = "summarize", description = "Summarizes the given text",
|
||||||
|
args = @PromptArg(name = "text", required = true))
|
||||||
|
public class SummarizePrompt extends McpPrompt {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public PromptMessage render(PromptArguments args) {
|
||||||
|
return PromptMessage.withUserRole(new TextContent("Summarize: " + args.getString("text")));
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-oidc</artifactId>
|
<artifactId>flash-ext-oidc</artifactId>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-openapi</artifactId>
|
<artifactId>flash-ext-openapi</artifactId>
|
||||||
|
|||||||
+1
-1
@@ -118,7 +118,7 @@ public class OpenApiExtension implements FlashExtension {
|
|||||||
"});\n" +
|
"});\n" +
|
||||||
"</script>\n" +
|
"</script>\n" +
|
||||||
"</body>\n" +
|
"</body>\n" +
|
||||||
"</html>";
|
"</html>";
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void addOperationFromEvent(OpenApiBuilder builder, RouteEvent event) {
|
private static void addOperationFromEvent(OpenApiBuilder builder, RouteEvent event) {
|
||||||
|
|||||||
+6
@@ -12,6 +12,7 @@ import dev.relism.flash.models.RequestHandler;
|
|||||||
import dev.relism.flash.models.Response;
|
import dev.relism.flash.models.Response;
|
||||||
import dev.relism.flash.routing.GET;
|
import dev.relism.flash.routing.GET;
|
||||||
import dev.relism.flash.routing.Middleware;
|
import dev.relism.flash.routing.Middleware;
|
||||||
|
import dev.relism.flash.websocket.WebSocketEndpoint;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@@ -165,6 +166,11 @@ class OpenApiExtensionTest {
|
|||||||
routes.put(method.name() + " " + path, handler);
|
routes.put(method.name() + " " + path, handler);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void addWsRoute(String path, WebSocketEndpoint endpoint) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void addMiddleware(Middleware mw) {
|
protected void addMiddleware(Middleware mw) {
|
||||||
middlewares.add(mw);
|
middlewares.add(mw);
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-routeviewer</artifactId>
|
<artifactId>flash-ext-routeviewer</artifactId>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-view-core</artifactId>
|
<artifactId>flash-ext-view-core</artifactId>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-view-jte</artifactId>
|
<artifactId>flash-ext-view-jte</artifactId>
|
||||||
|
|||||||
+6
@@ -5,6 +5,7 @@ import dev.relism.flash.models.Request;
|
|||||||
import dev.relism.flash.models.RequestHandler;
|
import dev.relism.flash.models.RequestHandler;
|
||||||
import dev.relism.flash.models.Response;
|
import dev.relism.flash.models.Response;
|
||||||
import dev.relism.flash.routing.GET;
|
import dev.relism.flash.routing.GET;
|
||||||
|
import dev.relism.flash.websocket.WebSocketEndpoint;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
@@ -172,6 +173,11 @@ class JteExtensionTest {
|
|||||||
routes.put(method.name() + " " + path, handler);
|
routes.put(method.name() + " " + path, handler);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void addWsRoute(String path, WebSocketEndpoint endpoint) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void addMiddleware(dev.relism.flash.routing.Middleware mw) {
|
protected void addMiddleware(dev.relism.flash.routing.Middleware mw) {
|
||||||
mws.add(mw);
|
mws.add(mw);
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-view-thymeleaf</artifactId>
|
<artifactId>flash-ext-view-thymeleaf</artifactId>
|
||||||
|
|||||||
@@ -13,7 +13,14 @@ Builder shortcuts:
|
|||||||
- `.assetsFromClasspath("web/dist")`
|
- `.assetsFromClasspath("web/dist")`
|
||||||
|
|
||||||
Classpath source requires `asset-manifest.json` generated at build time.
|
Classpath source requires `asset-manifest.json` generated at build time.
|
||||||
The developer does not maintain this file manually.
|
The developer does not maintain this file manually — generate it with `WebBundlerBuild`
|
||||||
|
(`dev.relism.flash.ext.webbundler.WebBundlerBuild`), which scans a prebuilt directory (a Vite
|
||||||
|
`dist/` or a `STATIC` asset folder) and writes the manifest into it, ready to be picked up as a
|
||||||
|
classpath resource once that directory lands under `target/classes`. See `build-time.md`.
|
||||||
|
|
||||||
|
`WebBundlerBuild` reuses the exact same etag/mimeType/immutable computation `FilesystemAssetsSource`
|
||||||
|
uses at runtime, so a file served from disk in dev and the same file served from the classpath in
|
||||||
|
prod get identical cache semantics.
|
||||||
|
|
||||||
Production startup is fail-fast if:
|
Production startup is fail-fast if:
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,43 @@
|
|||||||
|
# Build-Time Manifest Generation
|
||||||
|
|
||||||
|
`WebBundlerBuild` turns an already-built directory into the `asset-manifest.json` that
|
||||||
|
`ClasspathAssetsSource` needs (see `asset-sources.md`). It does not run a frontend build itself —
|
||||||
|
it only scans a directory that already contains the final files:
|
||||||
|
|
||||||
|
- `VITE`: point it at whatever `dist/` the existing frontend build tooling already produces.
|
||||||
|
- `STATIC`: point it directly at the static asset folder — there's no separate build step.
|
||||||
|
|
||||||
|
It's meant to run once per build, from the consumer project's own build, not from the running
|
||||||
|
application (`ClasspathAssetsSource` is explicitly unsupported in DEV — see `dev-lifecycle.md`).
|
||||||
|
|
||||||
|
## Wiring it into a Maven build
|
||||||
|
|
||||||
|
No dedicated Flash5 Maven plugin — `WebBundlerBuild` is a plain class with a `main`, invoked via
|
||||||
|
the standard `exec-maven-plugin`, bound to run before the resources are packaged:
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>web-bundler-manifest</id>
|
||||||
|
<phase>process-classes</phase>
|
||||||
|
<goals><goal>java</goal></goals>
|
||||||
|
<configuration>
|
||||||
|
<mainClass>dev.relism.flash.ext.webbundler.WebBundlerBuild</mainClass>
|
||||||
|
<arguments>
|
||||||
|
<argument>${project.build.outputDirectory}/web/dist</argument>
|
||||||
|
</arguments>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
```
|
||||||
|
|
||||||
|
This assumes the built frontend (`web/dist/`, or a static folder) is already copied under
|
||||||
|
`target/classes/web/dist` by that point — e.g. via `maven-resources-plugin`'s `copy-resources`
|
||||||
|
goal, or by running the frontend build with an output directory that points there directly. Once
|
||||||
|
the manifest is written alongside those files, they're just classpath resources: a plain `mvn
|
||||||
|
package` (or `maven-shade-plugin` for a fat jar) picks them up with no further configuration, and
|
||||||
|
the app can then be configured with `.assetsFromClasspath("web/dist")`.
|
||||||
@@ -6,7 +6,7 @@ Key fields:
|
|||||||
|
|
||||||
- `runtimeMode`: `PROD`, `ENV`, `AUTODETECT`
|
- `runtimeMode`: `PROD`, `ENV`, `AUTODETECT`
|
||||||
- `operationMode`: `ORCHESTRATE_ONLY`, `MANAGED`
|
- `operationMode`: `ORCHESTRATE_ONLY`, `MANAGED`
|
||||||
- `frontendType`: currently `VITE`
|
- `frontendType`: `VITE`, `STATIC` — see `frontend-selection.md`
|
||||||
- `packageManager`: `NPM`, `PNPM`, `YARN`, `BUN`
|
- `packageManager`: `NPM`, `PNPM`, `YARN`, `BUN`
|
||||||
- `installPolicy`: `AUTO_IF_LOCK_HASH_CHANGED`, `NEVER`
|
- `installPolicy`: `AUTO_IF_LOCK_HASH_CHANGED`, `NEVER`
|
||||||
- `loggingMode`: `MERGED`, `SEPARATE`, `QUIET`, `VERBOSE`
|
- `loggingMode`: `MERGED`, `SEPARATE`, `QUIET`, `VERBOSE`
|
||||||
@@ -25,6 +25,12 @@ Or by direct source object:
|
|||||||
|
|
||||||
Validation is fail-fast:
|
Validation is fail-fast:
|
||||||
|
|
||||||
- invalid `devPort`
|
- invalid `devPort` (only when `frontendType` requires orchestration — skipped for `STATIC`)
|
||||||
- blank/invalid watch entries
|
- blank/invalid watch entries (same — skipped for `STATIC`)
|
||||||
- invalid `basePath`
|
- invalid `basePath`
|
||||||
|
|
||||||
|
`frontendType(...)` has side effects on other defaults, same pattern as `packageManager(...)`
|
||||||
|
resetting `watchList`: it also resets `operationMode` (`MANAGED` for `STATIC`, `ORCHESTRATE_ONLY`
|
||||||
|
otherwise) and `assetsSource` (`webRoot` itself for `STATIC`, `webRoot/dist` otherwise). Call
|
||||||
|
`.frontendType(...)` before any explicit `.operationMode(...)`/`.assetsSource(...)`/`.assetsFrom*(...)`
|
||||||
|
override, or the later call wins.
|
||||||
|
|||||||
@@ -4,7 +4,29 @@ Frontend integration is explicit through `frontendType`.
|
|||||||
|
|
||||||
- No heuristic detection in v1.
|
- No heuristic detection in v1.
|
||||||
- Deterministic mapping: `FrontendType -> FrontendStrategy`.
|
- Deterministic mapping: `FrontendType -> FrontendStrategy`.
|
||||||
- Current built-in strategy: `VITE`.
|
- Built-in strategies: `VITE`, `STATIC`.
|
||||||
|
|
||||||
|
## VITE
|
||||||
|
|
||||||
|
Orchestrates a dev server process in DEV, serves a prebuilt directory in PROD. See `dev-lifecycle.md`.
|
||||||
|
|
||||||
|
## STATIC
|
||||||
|
|
||||||
|
For files served as-is — no dev server, no package manager, no build step, no watch loop.
|
||||||
|
`STATIC` never orchestrates, in DEV or PROD: it always loads `assetsSource` directly and serves it,
|
||||||
|
the same code path `VITE` only uses in PROD. Editing a file during a running dev session requires a
|
||||||
|
restart to be picked up (assets are preloaded once, same as `VITE`'s prod serving — no hot reload).
|
||||||
|
|
||||||
|
Setting `.frontendType(FrontendType.STATIC)` also switches two other defaults (see `configuration.md`):
|
||||||
|
`operationMode` becomes `MANAGED` and `assetsSource` defaults to the `webRoot` itself instead of a
|
||||||
|
`dist` subdirectory — a minimal STATIC config is just:
|
||||||
|
|
||||||
|
```java
|
||||||
|
WebBundlerConfig.builder()
|
||||||
|
.frontendType(FrontendType.STATIC)
|
||||||
|
.webRoot(Path.of("public"))
|
||||||
|
.build()
|
||||||
|
```
|
||||||
|
|
||||||
Extension points:
|
Extension points:
|
||||||
|
|
||||||
|
|||||||
@@ -10,3 +10,12 @@
|
|||||||
|
|
||||||
- `ORCHESTRATE_ONLY`: only orchestrates dev tooling.
|
- `ORCHESTRATE_ONLY`: only orchestrates dev tooling.
|
||||||
- `MANAGED`: enables production serving + SPA fallback routes.
|
- `MANAGED`: enables production serving + SPA fallback routes.
|
||||||
|
|
||||||
|
`FrontendType.STATIC` defaults `operationMode` to `MANAGED` (see `frontend-selection.md`) — `STATIC`
|
||||||
|
has no dev tooling to orchestrate, so `ORCHESTRATE_ONLY` would make the extension a no-op for it.
|
||||||
|
|
||||||
|
## Orchestration
|
||||||
|
|
||||||
|
Whether DEV mode spawns a dev-server process at all is a separate axis from Runtime Mode: it also
|
||||||
|
depends on `frontendType`. `VITE` orchestrates in DEV; `STATIC` never does, in DEV or PROD — it
|
||||||
|
always loads and serves `assetsSource` directly, the same path `VITE` only takes in PROD.
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.relism</groupId>
|
<groupId>dev.relism</groupId>
|
||||||
<artifactId>flash-extensions</artifactId>
|
<artifactId>flash-extensions</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.1.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>flash-ext-web-bundler</artifactId>
|
<artifactId>flash-ext-web-bundler</artifactId>
|
||||||
|
|||||||
+60
@@ -0,0 +1,60 @@
|
|||||||
|
package dev.relism.flash.ext.webbundler;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Walks a directory and computes the same etag/mimeType/immutable metadata a served asset needs.
|
||||||
|
* Shared by {@link FilesystemAssetsSource} (runtime, dev/filesystem prod) and {@link WebBundlerBuild}
|
||||||
|
* (build-time classpath manifest) so both agree on cache semantics for the same file.
|
||||||
|
*/
|
||||||
|
final class AssetDirectoryScanner {
|
||||||
|
private AssetDirectoryScanner() {
|
||||||
|
}
|
||||||
|
|
||||||
|
record ScannedAsset(String canonicalPath, byte[] raw, byte[] br, byte[] gz, String etag, String mimeType, boolean immutable) {
|
||||||
|
}
|
||||||
|
|
||||||
|
static List<ScannedAsset> scan(Path root) {
|
||||||
|
Map<String, Builder> builders = new HashMap<>();
|
||||||
|
try (var walk = Files.walk(root)) {
|
||||||
|
walk.filter(Files::isRegularFile).forEach(file -> {
|
||||||
|
String rel = "/" + root.relativize(file).toString().replace('\\', '/');
|
||||||
|
String canonical = AssetIo.stripBrGzSuffix(rel);
|
||||||
|
Builder b = builders.computeIfAbsent(canonical, Builder::new);
|
||||||
|
byte[] bytes = AssetIo.read(file);
|
||||||
|
if (rel.endsWith(".br")) b.br = bytes;
|
||||||
|
else if (rel.endsWith(".gz")) b.gz = bytes;
|
||||||
|
else b.raw = bytes;
|
||||||
|
});
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new IllegalStateException("Failed to scan assets from " + root, e);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<ScannedAsset> result = new ArrayList<>();
|
||||||
|
for (Builder b : builders.values()) {
|
||||||
|
if (b.raw == null) continue;
|
||||||
|
String etag = AssetIo.quotedSha1(b.raw);
|
||||||
|
String mime = MimeTypes.byPath(b.canonicalPath);
|
||||||
|
boolean immutable = AssetIo.isFingerprinted(b.canonicalPath);
|
||||||
|
result.add(new ScannedAsset(b.canonicalPath, b.raw, b.br, b.gz, etag, mime, immutable));
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static final class Builder {
|
||||||
|
private final String canonicalPath;
|
||||||
|
private byte[] raw;
|
||||||
|
private byte[] br;
|
||||||
|
private byte[] gz;
|
||||||
|
|
||||||
|
private Builder(String canonicalPath) {
|
||||||
|
this.canonicalPath = canonicalPath;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+3
-35
@@ -1,6 +1,5 @@
|
|||||||
package dev.relism.flash.ext.webbundler;
|
package dev.relism.flash.ext.webbundler;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
@@ -25,30 +24,10 @@ public final class FilesystemAssetsSource implements AssetsSource {
|
|||||||
throw new IllegalStateException("distDir does not exist: " + root);
|
throw new IllegalStateException("distDir does not exist: " + root);
|
||||||
}
|
}
|
||||||
|
|
||||||
Map<String, AssetEntryBuilder> builders = new HashMap<>();
|
|
||||||
try (var walk = Files.walk(root)) {
|
|
||||||
walk.filter(Files::isRegularFile).forEach(file -> {
|
|
||||||
String rel = "/" + root.relativize(file).toString().replace('\\', '/');
|
|
||||||
String canonical = AssetIo.stripBrGzSuffix(rel);
|
|
||||||
String routePath = AssetPaths.joinBase(request.basePath(), canonical);
|
|
||||||
AssetEntryBuilder b = builders.computeIfAbsent(routePath, k -> new AssetEntryBuilder(canonical));
|
|
||||||
byte[] bytes = AssetIo.read(file);
|
|
||||||
if (rel.endsWith(".br")) b.br = bytes;
|
|
||||||
else if (rel.endsWith(".gz")) b.gz = bytes;
|
|
||||||
else b.raw = bytes;
|
|
||||||
});
|
|
||||||
} catch (IOException e) {
|
|
||||||
throw new IllegalStateException("Failed to preload assets from " + root, e);
|
|
||||||
}
|
|
||||||
|
|
||||||
Map<String, AssetEntry> byRoute = new HashMap<>();
|
Map<String, AssetEntry> byRoute = new HashMap<>();
|
||||||
for (Map.Entry<String, AssetEntryBuilder> e : builders.entrySet()) {
|
for (AssetDirectoryScanner.ScannedAsset asset : AssetDirectoryScanner.scan(root)) {
|
||||||
AssetEntryBuilder b = e.getValue();
|
String routePath = AssetPaths.joinBase(request.basePath(), asset.canonicalPath());
|
||||||
if (b.raw == null) continue;
|
byRoute.put(routePath, new AssetEntry(asset.raw(), asset.br(), asset.gz(), asset.etag(), asset.mimeType(), asset.immutable()));
|
||||||
String etag = AssetIo.quotedSha1(b.raw);
|
|
||||||
String mime = MimeTypes.byPath(b.canonicalPath);
|
|
||||||
boolean immutable = AssetIo.isFingerprinted(b.canonicalPath);
|
|
||||||
byRoute.put(e.getKey(), new AssetEntry(b.raw, b.br, b.gz, etag, mime, immutable));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
String indexRoute = AssetPaths.joinBase(request.basePath(), "/" + request.indexFile());
|
String indexRoute = AssetPaths.joinBase(request.basePath(), "/" + request.indexFile());
|
||||||
@@ -58,15 +37,4 @@ public final class FilesystemAssetsSource implements AssetsSource {
|
|||||||
}
|
}
|
||||||
return new AssetCatalog(byRoute, index);
|
return new AssetCatalog(byRoute, index);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final class AssetEntryBuilder {
|
|
||||||
private final String canonicalPath;
|
|
||||||
private byte[] raw;
|
|
||||||
private byte[] br;
|
|
||||||
private byte[] gz;
|
|
||||||
|
|
||||||
private AssetEntryBuilder(String canonicalPath) {
|
|
||||||
this.canonicalPath = canonicalPath;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
+13
-1
@@ -1,5 +1,17 @@
|
|||||||
package dev.relism.flash.ext.webbundler;
|
package dev.relism.flash.ext.webbundler;
|
||||||
|
|
||||||
public enum FrontendType {
|
public enum FrontendType {
|
||||||
VITE
|
VITE(true),
|
||||||
|
STATIC(false);
|
||||||
|
|
||||||
|
private final boolean requiresOrchestration;
|
||||||
|
|
||||||
|
FrontendType(boolean requiresOrchestration) {
|
||||||
|
this.requiresOrchestration = requiresOrchestration;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Whether this frontend type needs a dev-server process, package manager, and watch loop. */
|
||||||
|
boolean requiresOrchestration() {
|
||||||
|
return requiresOrchestration;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
@@ -8,6 +8,7 @@ final class FrontendTypeResolver {
|
|||||||
|
|
||||||
FrontendTypeResolver() {
|
FrontendTypeResolver() {
|
||||||
register(new ViteFrontendStrategy());
|
register(new ViteFrontendStrategy());
|
||||||
|
register(new StaticFrontendStrategy());
|
||||||
}
|
}
|
||||||
|
|
||||||
void register(FrontendStrategy strategy) {
|
void register(FrontendStrategy strategy) {
|
||||||
|
|||||||
+21
@@ -0,0 +1,21 @@
|
|||||||
|
package dev.relism.flash.ext.webbundler;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/** No dev server, no build step — assets are served as-is. Both methods below are unreachable: call sites are gated by {@link FrontendType#requiresOrchestration()}. */
|
||||||
|
final class StaticFrontendStrategy implements FrontendStrategy {
|
||||||
|
@Override
|
||||||
|
public FrontendType type() {
|
||||||
|
return FrontendType.STATIC;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<String> devCommand(WebBundlerConfig config, PackageManagerAdapter adapter) {
|
||||||
|
throw new UnsupportedOperationException("STATIC frontend type has no dev command");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<String> buildCommand(WebBundlerConfig config, PackageManagerAdapter adapter) {
|
||||||
|
throw new UnsupportedOperationException("STATIC frontend type has no build command");
|
||||||
|
}
|
||||||
|
}
|
||||||
+53
@@ -0,0 +1,53 @@
|
|||||||
|
package dev.relism.flash.ext.webbundler;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
|
import com.fasterxml.jackson.databind.SerializationFeature;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build-time counterpart to {@link ClasspathAssetsSource}: scans a prebuilt directory (a Vite
|
||||||
|
* {@code dist/} or a static asset folder) and writes the {@code asset-manifest.json} that
|
||||||
|
* classpath-based production serving requires. Meant to run from a consumer's build (e.g. via
|
||||||
|
* exec-maven-plugin's {@code exec:java}), not from the running application — see {@code docs/build-time.md}.
|
||||||
|
*/
|
||||||
|
public final class WebBundlerBuild {
|
||||||
|
private static final ObjectMapper JSON = new ObjectMapper().enable(SerializationFeature.INDENT_OUTPUT);
|
||||||
|
|
||||||
|
private WebBundlerBuild() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Scans {@code distDir} and writes {@code distDir/asset-manifest.json} for classpath serving. */
|
||||||
|
public static void generateManifest(Path distDir) {
|
||||||
|
if (!Files.isDirectory(distDir)) {
|
||||||
|
throw new IllegalArgumentException("Not a directory: " + distDir);
|
||||||
|
}
|
||||||
|
List<ClasspathAssetManifest.Entry> entries = AssetDirectoryScanner.scan(distDir).stream()
|
||||||
|
.map(asset -> new ClasspathAssetManifest.Entry(
|
||||||
|
asset.canonicalPath(),
|
||||||
|
AssetIo.stripLeadingSlash(asset.canonicalPath()),
|
||||||
|
asset.mimeType(),
|
||||||
|
asset.etag(),
|
||||||
|
asset.immutable()))
|
||||||
|
.toList();
|
||||||
|
if (entries.isEmpty()) {
|
||||||
|
throw new IllegalStateException("No assets found under " + distDir);
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
JSON.writeValue(distDir.resolve("asset-manifest.json").toFile(), new ClasspathAssetManifest(entries));
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new IllegalStateException("Failed to write asset-manifest.json in " + distDir, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
if (args.length != 1) {
|
||||||
|
System.err.println("Usage: java " + WebBundlerBuild.class.getName() + " <distDir>");
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
generateManifest(Path.of(args[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user