This application has no explicit mapping for /error, so you are seeing this as a fallback.
Thu Jun 02 10:43:04 CST 2022
There was an unexpected error (type=Not Found, status=404).
需要做个nginx配置
location / {
try_files $uri $uri/ @router;
}
location @router {
rewrite ^.*$ /$1 last;
}