Adds validation and error handling to signup

This commit is contained in:
2025-12-05 00:15:20 -06:00
parent 8b808bfd34
commit 302feeab1e
6 changed files with 30 additions and 3 deletions

View File

@@ -28,12 +28,14 @@ repositories {
dependencies {
val mysqlConnectorJ = "9.5.0"
val commonsValidator = "1.10.1"
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("com.mysql:mysql-connector-j:${mysqlConnectorJ}")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("commons-validator:commons-validator:${commonsValidator}")
developmentOnly("org.springframework.boot:spring-boot-devtools")
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
testImplementation("org.springframework.boot:spring-boot-starter-actuator-test")