- Remove @Valid/@NotBlank/@Size/@Email/@NotNull from all Java record DTOs (incompatible with Jackson deserialization in Spring Boot 3.x) - Add manual validation in controllers instead - Add database reset with data preservation to reset container feature (exports core config tables, drops all tables, Hibernate recreates on startup, then restores preserved data) - Update nginx timeout regex to cover all system endpoints Affected services: tenant-service, license-service, im-service, push-service Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
11 行
210 B
Java
11 行
210 B
Java
package com.xuqm.tenant.dto;
|
|
|
|
public record RegisterRequest(
|
|
String username,
|
|
String password,
|
|
String email,
|
|
String nickname,
|
|
String phone,
|
|
String emailCode
|
|
) {}
|