add default error

- add error setting in application.yml
- update tailwind.css
- add error.html
- add information.html
- update UserAttribute with GuestUser
- add ErrorAttributes
- add GuestUser
This commit is contained in:
2025-07-31 09:20:23 +02:00
committed by swordsteel
parent c18db9ad9d
commit 298ce3028c
7 changed files with 469 additions and 14 deletions

View File

@@ -17,6 +17,12 @@ spring:
redis:
port: 6379
server:
error:
include-exception: false
include-message: never
include-stacktrace: never
management:
endpoints:
access:
@@ -55,6 +61,12 @@ spring:
host: localhost
database: 2
server:
error:
include-exception: true
include-message: always
include-stacktrace: always
account-registry:
url: http://localhost:9050
@@ -74,6 +86,11 @@ spring:
host: Redis
database: 2
server:
error:
include-exception: true
include-message: always
account-registry:
url: http://AccountRegistry:8080