java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Spring配置与服务组件的关系和注入机制

解读Spring配置与服务组件的关系和注入机制

作者:码农研究僧

这篇文章主要介绍了解读Spring配置与服务组件的关系和注入机制,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教

1. 基本知识

使用 Spring 框架进行开发时,理解配置类与服务组件之间的关系,以及如何通过依赖注入将它们串联起来,是非常重要的

1.1 配置类(@Configuration)

配置类是 Spring 中用于定义 Bean 的地方

通常使用 @Configuration 注解标记,表示这是一个配置类,Spring 将会扫描这些类并注册其定义的 Bean

@Configuration
@ComponentScan(basePackages = "com.example.myapp")
public class AppConfig {
    @Bean
    public MyService myService() {
        return new MyServiceImpl();
    }
}

基本的参数补充如下:

1.2 实现类(@Service)

通常使用 @Service 注解标记,表示这是一个业务服务组件

通常实现一个接口,并在其内部封装了具体的业务逻辑

@Service
public class MyServiceImpl implements MyService {
    private final MyRepository myRepository;

    @Autowired
    public MyServiceImpl(MyRepository myRepository) {
        this.myRepository = myRepository;
    }

    @Override
    public void performService() {
        // 业务逻辑实现
    }
}

主要的功能如下:

1.3 依赖注入(Dependency Injection)

允许将依赖对象(即其他 Bean)注入到目标 Bean 中,减少了对象间的耦合度

主要的方式有如下:

@Service
public class MyService {
    private final AnotherService anotherService;

    @Autowired
    public MyService(AnotherService anotherService) {
        this.anotherService = anotherService;
    }
}
@Service
public class MyService {
    @Autowired
    private AnotherService anotherService;
}
@Service
public class MyService {
    private AnotherService anotherService;

    @Autowired
    public void setAnotherService(AnotherService anotherService) {
        this.anotherService = anotherService;
    }
}

1.4 组件类(@Component)

可以被自动发现和注册为 Spring 管理的 Bean

@Component
public class MyComponent {
    // 组件逻辑
}

用于标记一个普通的组件类,可以是任意的类,不特定于服务、仓库等特定角色

2. 实战

为更好展示实战项目中的运用,结合上述的知识点给予案例

以下的Demo只列出代码前半部分,主要是为了更好的说明

2.1 配置类

@Configuration(proxyBeanMethods = false)
@ComponentScan(basePackages = "org.jeecg.modules.jmreport") // 扫描积木报表的包
public class JmReportConfiguration {
    @Bean
    public manongServiceI manongService(A a, B b) {
        return new manongServiceImpl(a, b);
    }
}

2.2 实现类

使用 @RequiredArgsConstructor 注解自动生成一个包含所有 final 字段的构造函数,

补充阅读:详细分析Java中@RequiredArgsConstructor注解的基本知识(附Demo)

@RequiredArgsConstructor
public class manongServiceImpl implements manongServiceI {
    private final A a;
    private final B b;
}

2.3 接口类

这是一个接口,定义了服务的合同

public interface manongServiceI {

}

2.4 组件类

负责与 manongServiceI 进行交互

默认构造函数,通过 Spring 的 @Autowired 注解注入依赖

@Component("manongClient")
public class manongClient {

    @Autowired(required = false)
    private manongServiceI jimuTokenService;

    @Autowired(required = false)
    private JmReportBaseConfig jmBaseConfig;

    public manongClient() {
    }
}

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文