Fix: Mapper set null fields for DTO and Entity.

This commit is contained in:
KamilM1205 2025-06-29 22:28:03 +04:00
parent faf9e0f7af
commit e86ab4f209
8 changed files with 39 additions and 10 deletions

View file

@ -43,16 +43,16 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.flywaydb:flyway-core")
implementation("org.flywaydb:flyway-database-postgresql:11.10.0")
implementation("org.mapstruct:mapstruct:1.6.3")
implementation("org.postgresql:postgresql")
implementation("org.apache.logging.log4j:log4j-api:2.22.1")
implementation("org.apache.logging.log4j:log4j-core:2.22.1")
implementation("org.slf4j:slf4j-api:2.0.13")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.6")
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.22.1")
annotationProcessor("org.mapstruct:mapstruct-processor:1.6.3")
compileOnly("org.projectlombok:lombok")
annotationProcessor("org.projectlombok:lombok")
annotationProcessor("org.mapstruct:mapstruct-processor:1.6.3")
implementation("org.mapstruct:mapstruct:1.6.3")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.security:spring-security-test")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")