解决报错:@org.springframework.beans.factory.annotation.Autowired(required=true)

这篇具有很好参考价值的文章主要介绍了解决报错:@org.springframework.beans.factory.annotation.Autowired(required=true)。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

先把问题贴出来:

@org.springframework.beans.factory.annotation.Autowired(required=true)

报这个错是因为:
@Autowired(required=true):当使用@Autowired注解的时候,其实默认就是@Autowired(required=true),表示注入的时候,该bean必须存在,否则就会注入失败。

Mapper层

package com.yyyy.eamon.dao;
import tk.mybatis.mapper.common.Mapper;
import com.yzym.eamon.domain.Community;



//import org.springframework.stereotype.Repository;
//import com.yzym.eamon.service.impl.CommunityServiceImpl;
//import org.springframework.context.annotation.Bean;
//import org.springframework.context.annotation.Configuration;
//
//
//@Configuration //自动注入,程序一开始就注册实例



public interface CommunityMapper extends Mapper<Community> {

}

**

Service层

**

package com.yzym.eamon.service.impl;

import com.yzym.eamon.dao.CommunityMapper;
import com.yzym.eamon.domain.Community;
import com.yzym.eamon.service.CommunityService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.ArrayList;
import java.util.List;
//import org.springframework.context.annotation.Bean;
//import org.springframework.context.annotation.Configuration;
//
//@Configuration //自动注入,程序一开始就注册实例
@Service

public class CommunityServiceImpl implements CommunityService {


    @Autowired
    private CommunityMapper communityMapper;

    @Override
    public List<Community> findAll(){


        List<Community> communities = communityMapper.selectAll();
        return communities;

    }
}

启动类

package com.yzym.eamon;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import tk.mybatis.spring.annotation.MapperScan;

//@SpringBootApplication

//MapperScan要导入Tk包
//@MapperScan(basePackages = {"com.yzym.eamon.dao "})
@MapperScan(basePackages = "#####") //这里填自己的地址参考Mapper的package包的位置
@SpringBootApplication
public class EamonApplication {

    public static void main(String[] args) {
        SpringApplication.run(EamonApplication.class, args);
    }

}

解决办法:文章来源地址https://www.toymoban.com/news/detail-641953.html

1、先看sevice层,你有没有加上@Service注解。
2、再看mapper层有没有加上@Mapper注解,以及在启动类上有没有加上@MapperScan来扫描mapepr

到了这里,关于解决报错:@org.springframework.beans.factory.annotation.Autowired(required=true)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包