'MapStruct implementation is not working in Spring Boot Web Application
I am a newbie to Spring Boot and MapStruct Tool.
Earlier, A Project(written by other team using these technologies) is not starting up. Then, I had made some changes in Mapper Abstract Class but now mapper object is coming as null on application startup.
Mapper Abstract Class:
@Mapper(componentModel = "spring")
public abstract class UserAndEmployeeMapper {
public UserAndEmployeeMapper INSTANCE = Mappers.getMapper( UserAndEmployeeMapper.class );
@Mapping(source = "username", target = "name")
@Mapping(source = "ssn", target = "ssn", defaultValue = "xxxxxx" )
@Mapping(target = "salary", constant = "34.67")
@Mapping(target = "dob", dateFormat = "dd/MM/yyyy", constant = "10/12/2002")
public abstract Employee mapToEmployee(User user);
public abstract List<Employee> mapToEmployee(List<User> users);
@Mapping(source = "name", target = "username")
public abstract User mapToUser(Employee employee);
public abstract List<User> mapToUser(List<Employee> employees);
}
LoginServiceImpl class
@Service("loginService")
public class LoginServiceImpl implements LoginService{
private static final AtomicLong counter = new AtomicLong();
@Autowired
private EmployeeDao employeeDao;
private UserAndEmployeeMapper userAndEmployeeMapper;
...
}
pom.xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstruct.jdk8.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</build>
After I added @Autowired in LoginServiceImpl, application is not starting and following error log is showing
***************************
APPLICATION FAILED TO START
***************************
Description:
Field userAndEmployeeMapper in org.service.impl.LoginServiceImpl required a bean of type 'org.mapper.UserAndEmployeeMapper' that could not be found.
Action:
Consider defining a bean of type 'org.mapper.UserAndEmployeeMapper' in your configuration.
Any suggestions ?
Solution 1:[1]
Making abstract class as an interface worked for me.
public interface UserAndEmployeeMapper {
Solution 2:[2]
First of all, public UserAndEmployeeMapper INSTANCE = Mappers.getMapper( UserAndEmployeeMapper.class );
should only be used with the default component model, otherwise you risk to have the UserAndEmployeeMapper
not correctly initialized.
The UserAndEmployeeMapper
in your LoginServiceImpl
must be annotated with @Autowired
, otherwise it cannot be injected by Spring, and that's why it is null
.
I don't know your package structure. If your Spring Boot application class in the package org
then it will pick up the UserAndEmployeeMapperImpl
. Otherwise make sure that the spring configuration picks up the UserAndEmployeeMapperImpl
.
If everything from above is correctly setup and you are starting the application via an IDE make sure that target/generated-sources
or the alternative for Gradle is part of your sources and is picked up. Have a look at the IDE Support to make sure that you have correctly setup the Annotation processor discovery for an IDE. For example, IntelliJ will not invoke the MapStruct Annotation Processor with your current setup, it doesn't pick up the annotationProcessorPaths
from the maven compiler.
Solution 3:[3]
springfox-swagger2 dependency is loading older version of mapstruct after excluding it and adding specific version of mapstruct dependency in pom.xml it started generating sources
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.2.2</version>
<exclusions>
<exclusion>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
</exclusion>
</exclusions>
Added below map struct dependency
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-jdk8</artifactId>
<version>1.3.0.Beta1</version>
Solution 4:[4]
For making all mapper classes to qualify as spring bean add following compilerArgs to your maven-compiler-plugin.
<compilerArgs>
<arg>-Amapstruct.suppressGeneratorTimestamp=true</arg>
<arg>-Amapstruct.defaultComponentModel=spring</arg>
</compilerArgs>
if using maven-processor-plugin add following options
<options>
<mapstruct.suppressGeneratorTimestamp>
true
</mapstruct.suppressGeneratorTimestamp>
<mapstruct.defaultComponentModel>
spring
</mapstruct.defaultComponentModel>
</options>
Solution 5:[5]
In my case, I believe the error was due to an incomplete build.gradle.
Before
dependencies {
compile group: 'org.mapstruct', name: 'mapstruct-processor', version: '1.2.0.Final'
}
After
apply plugin: 'net.ltgt.apt'
dependencies {
compile group: 'org.mapstruct', name: 'mapstruct-processor', version: '1.2.0.Final'
compile group: 'org.mapstruct', name: 'mapstruct-jdk8', version: '1.2.0.Final'
apt 'org.mapstruct:mapstruct-processor:1.2.0.Final'
}
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath("net.ltgt.gradle:gradle-apt-plugin:0.9")
}
}
Ensure you have configured your build.gradle properly, as described in the docs.
Solution 6:[6]
If using Eclipse, you may have to install the m2e-apt plugin.
It will enable the annotation processor for MapStruct in the IDE.
Solution 7:[7]
Its simple first you need to create interface as below,
@Mapper(componentModel = "spring")
public interface CompanyMapper {
@BeanMapping(nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE)
void updateCustomerFromDto(CompanyDto dto, @MappingTarget CompanyBean entity);
}
Now when you run the application it will generate its implementation file it self in the target/generated-source folder
So whenever you want to use CompanyMapper than you only need to autowired it as we use @Mapper(componentModel = "spring")
so spring boot can able to inject this.
And also you need to enable the Maven annotation processing by following steps in eclipse :
Step1 :- Right click on the project
Step2 :- Go to Properties
Step3 : Expand Maven from sidebar
Step4 :- Select Annotation Processing
Step5 :- Checked Enable Project Specific settings
Step6 :- Select Experemental Radio button
Step7 :- Apply and Close
Its Done ! I hope its helpful to someone.
Solution 8:[8]
try this in pom.xml:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>17</source>
<target>17</target>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.4.2.Final</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-mapstruct-binding</artifactId>
<version>0.2.0</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
and reload Maven (ALT+F5)
Solution 9:[9]
Make sure you put annotation processor path in the dependency.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source> <!-- depending on your project -->
<target>${java.version}</target> <!-- depending on your project -->
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${org.mapstruct.version}</version>
</path>
<!-- other annotation processors -->
</annotationProcessorPaths>
</configuration>
</plugin>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Ankit |
Solution 2 | Filip |
Solution 3 | skk |
Solution 4 | Minnow |
Solution 5 | Chris Neve |
Solution 6 | Guillaume F. |
Solution 7 | procrastinator |
Solution 8 | jesus.saad |
Solution 9 | Rocky |