@Autowired private UserDOMapper userDOMapper;
在注入@Autowired时候userDOMapper报错,原因不能自动注入,No beans of 'UserDOMapper' type found
说明你的Mapper没被spring管理,加个@Repository注解试试