Springboot 自定义简单Starter配置以及遇到Service无法注入问题

1.通过Maven新建项目,并导入依赖.
artifactId必须遵循自定义starter规则
在这里插入图片描述

<dependencies>
    <!--自定义starter必须要引入的依赖-->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-autoconfigure</artifactId>
      <version>2.4.0</version>
    </dependency>
  </dependencies>

2.整体结构
在这里插入图片描述
HelloServiceImpl内容:

package com.firststar.service;

import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;

@Service//忘记加入 用Compent也可以 总之记住加入就可以 这样才能配置到IOC容器
public class HelloServiceImpl implements HelloService {
    @Override
    public String sayHello() {
        return "hello,FirstStar!!!!!";
    }
}

HelloServiceAutoConfiguration内容:

package com.firststar;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan
public class HelloServiceAutoConfiguration {

}

这个类是配置类,注册@Configuration注解类到Spring容器
如果@Configuration注解的类上有@ComponentScan注解
如果@ComponentScan配置了包,则使用@ComponentScan配置的包
如果@ComponentScan没有配置包,则扫描其注解的类的包(扫描ConfigrationBean所在的包)
spring.factories:

#=后边的根据实际情况配置类的全路径
org.springframework.boot.autoconfigure.EnableAutoConfiguration=com.firststar.HelloServiceAutoConfiguration

(!!!注意resources在main下面~~ 我当时配置错误就一直导致Service注入错误,有点蠢:)

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值