Springboot中,Starter干了什么?
1.自动加载类的实例到容器中
2.通过配置设置类的属性
怎样实现的?
1.通过Springboot的AutoConfigure机制
2.META-INF/spring.factories文件设置属性org.springframework.boot.autoconfigure.EnableAutoConfiguration
需要的基础
1.熟悉Springboot使用
2.了解Java注解
步骤
1.创建Service
2.创建Properties
3.创建Autoonfiguration文件
4.配置spring.factories文件
5.pom引入package
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>2.2.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>2.2.2.RELEASE</version>
</dependency>
6.调用端引入package
7.调用端配置application属性
网友评论