自己写一个springboot启动器starter

本文详细介绍了如何从头开始创建一个SpringBoot启动器(starter),包括新建Maven项目,引入自动配置jar,创建实体类,编写service,设定自动配置类,制作spring.factories文件,打包发布到本地仓库,以及在其他SpringBoot项目中如何使用这个自定义starter。
摘要由CSDN通过智能技术生成

一、新建一个maven项目,引入springboot的自动配置jar包

<!--        引入springboot的自动配置jar包-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
            <version>2.7.4</version>
        </dependency>

二、创建一个student实体类,并自动读取properties中的配置

package com.aaa.entity;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Component
@ConfigurationProperties(prefix="student")
public class Student {
    private int id;
    private String name;
    private String message;

    public Student() {
    }

    public Student(int id, String name, String message) {
        this.id = id;
        this.name = name;
        this.message = message;
    }

    public int get
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值