mirror of
https://github.com/dalbodeule/snap-admin.git
synced 2025-06-09 05:48:20 +00:00
Replaced 'Spring Boot Database Admin' with 'SnapAdmin'
This commit is contained in:
parent
2fdce6fffe
commit
8fd9dd3631
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -104,7 +104,7 @@ public class SnapAdmin {
|
|||||||
ClassPathScanningCandidateComponentProvider provider = new ClassPathScanningCandidateComponentProvider(false);
|
ClassPathScanningCandidateComponentProvider provider = new ClassPathScanningCandidateComponentProvider(false);
|
||||||
provider.addIncludeFilter(new AnnotationTypeFilter(Entity.class));
|
provider.addIncludeFilter(new AnnotationTypeFilter(Entity.class));
|
||||||
|
|
||||||
logger.debug("Initializing Spring Boot Database Admin...");
|
logger.debug("Initializing SnapAdmin...");
|
||||||
|
|
||||||
for (String currentPackage : modelsPackage) {
|
for (String currentPackage : modelsPackage) {
|
||||||
logger.debug("Scanning package " + currentPackage);
|
logger.debug("Scanning package " + currentPackage);
|
||||||
@ -124,9 +124,9 @@ public class SnapAdmin {
|
|||||||
|
|
||||||
boolean hasErrors = schemas.stream().flatMap(s -> s.getErrors().stream()).count() > 0;
|
boolean hasErrors = schemas.stream().flatMap(s -> s.getErrors().stream()).count() > 0;
|
||||||
|
|
||||||
logger.info("Spring Boot Database Admin initialized. Loaded " + schemas.size()
|
logger.info("SnapAdmin initialized. Loaded " + schemas.size()
|
||||||
+ " schemas from " + modelsPackage.size() + " packages" + (hasErrors ? " (with errors)" : ""));
|
+ " schemas from " + modelsPackage.size() + " packages" + (hasErrors ? " (with errors)" : ""));
|
||||||
logger.info("Spring Boot Database Admin web interface at: http://YOUR_HOST:YOUR_PORT/" + properties.getBaseUrl());
|
logger.info("SnapAdmin web interface at: http://YOUR_HOST:YOUR_PORT/" + properties.getBaseUrl());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -43,7 +43,7 @@ import tech.ailef.snapadmin.internal.InternalDbAdminConfiguration;
|
|||||||
/**
|
/**
|
||||||
* The configuration class for "internal" data source. This is not the
|
* The configuration class for "internal" data source. This is not the
|
||||||
* source connected to the user's data/entities, but rather an internal
|
* source connected to the user's data/entities, but rather an internal
|
||||||
* H2 database which is used by Spring Boot Database Admin to store user
|
* H2 database which is used by SnapAdmin to store user
|
||||||
* settings and other information like operations history.
|
* settings and other information like operations history.
|
||||||
*/
|
*/
|
||||||
@ConditionalOnProperty(name = "dbadmin.enabled", matchIfMissing = true)
|
@ConditionalOnProperty(name = "dbadmin.enabled", matchIfMissing = true)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
|
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -28,12 +28,12 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
|
|||||||
@ConfigurationProperties("dbadmin")
|
@ConfigurationProperties("dbadmin")
|
||||||
public class SnapAdminProperties {
|
public class SnapAdminProperties {
|
||||||
/**
|
/**
|
||||||
* Whether Spring Boot Database Admin is enabled.
|
* Whether SnapAdmin is enabled.
|
||||||
*/
|
*/
|
||||||
public boolean enabled = true;
|
public boolean enabled = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The prefix that is prepended to all routes registered by Spring Boot Database Admin.
|
* The prefix that is prepended to all routes registered by SnapAdmin.
|
||||||
*/
|
*/
|
||||||
private String baseUrl;
|
private String baseUrl;
|
||||||
|
|
||||||
@ -53,7 +53,7 @@ public class SnapAdminProperties {
|
|||||||
private boolean sqlConsoleEnabled = true;
|
private boolean sqlConsoleEnabled = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether Spring Boot Database Admin is enabled
|
* Whether SnapAdmin is enabled
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public boolean isEnabled() {
|
public boolean isEnabled() {
|
||||||
@ -73,7 +73,7 @@ public class SnapAdminProperties {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the prefix that is prepended to all routes registered by Spring Boot Database Admin.
|
* Returns the prefix that is prepended to all routes registered by SnapAdmin.
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public String getBaseUrl() {
|
public String getBaseUrl() {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -25,7 +25,7 @@ import java.lang.annotation.RetentionPolicy;
|
|||||||
import java.lang.annotation.Target;
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disables Spring Boot Database Admin on this table.
|
* Disables SnapAdmin on this table.
|
||||||
* This means it is ignored during the initialization phase and not analyzed
|
* This means it is ignored during the initialization phase and not analyzed
|
||||||
* at all.
|
* at all.
|
||||||
*/
|
*/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
|
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
|
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
|
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
|
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
|
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
|
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -17,7 +17,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Root package of Spring Boot Database Admin.
|
* Root package of SnapAdmin.
|
||||||
*
|
*
|
||||||
* It contains the configuration class which handles the initialization
|
* It contains the configuration class which handles the initialization
|
||||||
* and the main {@link tech.ailef.snapadmin.external.SnapAdmin} class.
|
* and the main {@link tech.ailef.snapadmin.external.SnapAdmin} class.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -56,7 +56,7 @@ public class UserConfiguration {
|
|||||||
*/
|
*/
|
||||||
private Map<String, String> defaultValues() {
|
private Map<String, String> defaultValues() {
|
||||||
Map<String, String> values = new HashMap<>();
|
Map<String, String> values = new HashMap<>();
|
||||||
values.put("brandName", "Spring Boot Database Admin");
|
values.put("brandName", "SnapAdmin");
|
||||||
return values;
|
return values;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
|
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
<h1 class="fw-bold"><i class="bi bi-question-circle align-middle"></i>
|
<h1 class="fw-bold"><i class="bi bi-question-circle align-middle"></i>
|
||||||
<span class="align-middle">Help</span></h3>
|
<span class="align-middle">Help</span></h3>
|
||||||
<p class="mt-3">
|
<p class="mt-3">
|
||||||
If you need help using Spring Boot Database Admin, you can read the
|
If you need help using SnapAdmin, you can read the
|
||||||
<a href="https://github.com/aileftech/spring-boot-database-admin">README</a> or the
|
<a href="https://github.com/aileftech/spring-boot-database-admin">README</a> or the
|
||||||
<a href="https://aileftech.github.io/spring-boot-database-admin/index.html">Reference Guide</a>.
|
<a href="https://aileftech.github.io/spring-boot-database-admin/index.html">Reference Guide</a>.
|
||||||
</p>
|
</p>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Spring Boot Database Admin - An automatically generated CRUD admin UI for Spring Boot apps
|
* SnapAdmin - An automatically generated CRUD admin UI for Spring Boot apps
|
||||||
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
* Copyright (C) 2023 Ailef (http://ailef.tech)
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
Loading…
x
Reference in New Issue
Block a user