From e10396eeb2a42259d41967578d55544abc1637d9 Mon Sep 17 00:00:00 2001 From: Francesco Date: Tue, 24 Oct 2023 09:49:04 +0200 Subject: [PATCH] Documentation --- docs/index.html | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index bbf7543..8e9a689 100644 --- a/docs/index.html +++ b/docs/index.html @@ -125,6 +125,11 @@ dbadmin.modelsPackage=your.models.package,your.second.models.package

This will autoconfigure the various Spring Boot Database Admin components when your application starts.

If everything is setup correctly, you will see Spring Boot Database Admin confirming it in the log messages that appear when you start your application. Keep in mind that if you specify the wrong models package, it will still work but provide you an empty interface. Visit http://localhost:8080/admin (replace the correct port and base path with your settings) to check if everything is working correctly.

+

2.2.1 Known issues

+ +

2.3 Supported features

2.3.1 Supported JPA annotations

@@ -148,7 +153,7 @@ dbadmin.modelsPackage=your.models.package,your.second.models.package
  • Double, Float, Integer, Short, Byte, Character, BigDecimal, BigInteger
  • Boolean
  • String, UUID
  • -
  • Date, LocalDate, LocalDateTime, OffsetDateTime
  • +
  • Date, LocalDate, LocalDateTime, OffsetDateTime, Instant
  • byte[]
  • @@ -319,6 +324,19 @@ public class User { ... }

    Disables the export functionality for this table.

    +

    3.1.10 @Disable

    +
    Code example
    +
    +@Entity
    +@Disable
    +public class Payment { ... }
    +
    + +

    Disables Spring Boot Database Admin on this table, by ignoring it during the initialization phase.

    + + + +

    3.2 The Settings panel