Remove mapstruct

This commit is contained in:
2023-10-07 02:53:28 +08:00
parent 243d7654e7
commit e085005f73
2 changed files with 17 additions and 33 deletions

19
pom.xml
View File

@@ -158,16 +158,6 @@
<groupId>com.fasterxml.jackson.datatype</groupId> <groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId> <artifactId>jackson-datatype-jsr310</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>1.5.5.Final</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.5.5.Final</version>
</dependency>
</dependencies> </dependencies>
<build> <build>
@@ -181,14 +171,6 @@
<plugin> <plugin>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
@@ -226,5 +208,4 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@@ -1,14 +1,17 @@
package top.fatweb.api.converter package top.fatweb.api.converter
import org.mapstruct.Mapper import org.springframework.stereotype.Component
import org.mapstruct.Mapping
import org.mapstruct.Mappings
import top.fatweb.api.entity.permission.User import top.fatweb.api.entity.permission.User
import top.fatweb.api.param.LoginParam import top.fatweb.api.param.LoginParam
@Mapper(componentModel = "spring") @Component
interface UserConverter { object UserConverter {
@Mappings(Mapping(source = "username", target = "username"), Mapping(source = "password", target = "password")) fun loginParamToUser(loginParam: LoginParam): User {
fun loginParamToUser(loginParam: LoginParam): User val user = User().apply {
username = loginParam.username
password = loginParam.password
}
return user
}
} }