SpringBoot启动器简单案例

本文介绍了如何创建一个SpringBoot启动器的简单案例,从创建Maven项目开始,详细讲解了项目结构、代码实现,包括HelloAutoConfiguration、HelloService等组件,以及如何通过maven打包。接着,在新建的SpringBoot项目中引入并测试启动器,验证Bean已成功注入并可正常使用,最后通过控制器进行测试,展示启动器的功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

SpringBoot启动器简单案例

1.创建一个maven项目

在这里插入图片描述

在这里插入图片描述

2.项目结构及代码

在这里插入图片描述
HelloAutoConfiguration

package test.com;


import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * 声明为配置类
 */
@Configuration
public class HelloAutoConfiguration {
   
   
    @Bean
    @ConditionalOnMissingBean //容器中缺少该bean时进行创建
    public HelloService helloService(){
   
   
        return new HelloService();
    }

}

HelloService

package test.com;

public class HelloService {
   
   

    public String sayHello(String name){
   
   

        System.out.println("hello"+name);
        return name;
    }
}

spring.factories

org.springframework.boot.autoconfigure.EnableAutoConfiguration=test.com.HelloAutoConfiguration

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>


    <parent>
        <groupId>org.springframework.boot<
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值