本文介绍了MapStruct实现在Spring Boot Web应用程序中不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是Spring Boot和工具的新手。
I am a newbie to Spring Boot and MapStruct Tool.
以前,一个项目(由其他团队使用这些技术编写)没有启动。然后,我在Mapper抽象类中进行了一些更改,但是现在mapper对象在应用程序启动时变为null。
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抽象类:
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类
@Service("loginService")
public class LoginServiceImpl implements LoginService{
private static final AtomicLong counter = new AtomicLong();
@Autowired
private EmployeeDao employeeDao;
private UserAndEmployeeMapper userAndEmployeeMapper;
...
}
绒球。 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>
我在LoginServiceImpl中添加@Autowired之后,应用程序未启动,并显示以下错误日志
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.
有任何建议吗?
推荐答案
使抽象类作为接口对我有用。
Making abstract class as an interface worked for me.
public interface UserAndEmployeeMapper {
这篇关于MapStruct实现在Spring Boot Web应用程序中不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!