记录一下springboot项目无法导入自定义 bean的情况

15 篇文章 1 订阅
9 篇文章 0 订阅

1. 事件描述

本来想给学弟写一个自定义Bean的示例来演示怎么注入 Jedis 来着,但是创建了一个小项目,死活无法注入自己定义的 Jedis 对象

  • 配置类
package com.eleven.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import redis.clients.jedis.Jedis;

/**
 * @author eleven
 * @date 2021/7/23 13:47
 * @apiNote 配置类
 */
@Configuration
public class MyConfig implements WebMvcConfigurer{

    @Bean
    public Jedis jedis(){
        return new Jedis("localhost",6379);
    }
}
  • 测试类
package com.eleven.jedistest;

import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.NamedBean;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Bean;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;

@SpringBootTest
class JedisTestApplicationTests {

    @Autowired
    private Jedis jedis;

    @Test
    void contextLoads() {
        jedis.keys("*").forEach(System.out::println);
    }

}

刚开始以为配置类没有添加 @Configuration 注解,自己折腾了好大一会,各种百度,cdsn均无解,
最后发现启动类忘记添加 @CompentScan注解,真是尴尬

2021-08-17 更新

昨晚上捣鼓项目发现这个项目的没办法引入自定义bean的情况是因为启动类不在顶层包下边

com
	eleven
		jedistest 
			//启动类放在这里了,
			//应该放在com.eleven就不用加 @ComponentScan注解了			
			Application
		config 
			JedisConfig
				

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值