From 1c07dac910922db9f514d8bcf04f8098b3839874 Mon Sep 17 00:00:00 2001 From: Francesco Date: Tue, 3 Oct 2023 11:01:09 +0200 Subject: [PATCH] README --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b34a626..6156153 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Generate a powerful CRUD management dashboard for your Spring Boot application in a few minutes. Spring Boot Database Admin scans your `@Entity` classes and automatically builds a web UI with CRUD operations -for your database schema. No modifications required to your existing code! +for your database schema. No modifications required to your existing code (well, you will need to add **1 line** to it...)! [![Example page listing products](https://i.imgur.com/Nz19f8e.png)](https://i.imgur.com/Nz19f8e.png) @@ -25,6 +25,13 @@ for your database schema. No modifications required to your existing code! The behaviour you specify with these annotations should be applied automatically by Spring Boot Database Admin as well. Keep in mind that using non-supported annotations will not necessarily result in an error, as they are simply ignored. Depending on what the annotation actually does, this could be just fine or result in an error if it interferes with something that Spring Boot Database Admin relies on. +**Supported field types** + * Double, Integer, Float, BigDecimal + * Boolean + * String + * LocalDate, LocalDateTime + * byte[] + The code is still in a very early stage and it might not be robust if you use not-yet-supported JPA annotations and/or other custom configurations (e.g., custom naming strategy). If you find a bug with your settings, please report it as an issue and I will try to take a look at it. ## Installation