[Developer] #424 show generated ORDS handler source

This commit is contained in:
devmrko
2026-06-25 14:35:01 +09:00
parent 28dcde6975
commit daa302b9e7
4 changed files with 80 additions and 26 deletions

View File

@@ -0,0 +1,15 @@
<!doctype html>
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
<body>
<div th:fragment="source">
<div class="alert alert-danger mb-0" th:if="${errorMessage}" th:text="${errorMessage}"></div>
<section class="probe-exchange" th:if="${source}">
<h3>
<span th:text="${object.owner() + '.' + object.objectName()}">ADMIN.TABLE_NAME</span>
<span class="text-muted"> / 기본 ORDS Handler PL/SQL</span>
</h3>
<pre th:text="${source}">source</pre>
</section>
</div>
</body>
</html>