当前位置首页电视剧《台湾佬中文娱乐香蕉网》

《台湾佬中文娱乐香蕉网》

类型:微电影 喜剧 恐怖 西班牙 2020 

主演:于翔 王彦鑫 纯情阿伟 李萌萌 

导演:刘青松 

剧情简介

spring项(🚎)目中starter包的原理,以及自定义starter包的使用 MAVEN项目中(🎚)starter的(🕟)原理一.原始方式

我们最早配置spring应用的时候,必须要(🍭)经历的步骤:1.pom文件中(🌫)引入相关的jar包,包括spring,redis,jdbc等等 2.通过properties或者xml配置相关的信(🐟)息 3.不断调试直到可以使用。

问题:时间长,复杂,同时在写下一个项目的时候大概率要经过相同的模式配置才能达到可以使用的状态。同时在众多的jar中,我们需要相互配置依赖间的版本关系,十分(🛅)的复杂

原始版(🍻)本:

我们(🚅)就想到能不能把这些jdbc整(🏃)合起来,类似于深度学习中anaconda下载依赖一样去管理,依赖间的关系不需要我(🍪)们去负责,而是交给spring去管理。

starter版本:

我们可以将starter包看作是一个(🏃)包装箱,把复杂的事情都交给了spring负责,官方维护starter包会导入的东西。而我们只需要知道那个starter包是有什么用处,例如:spring-boot-starter-web是负责spring web项目的依赖。

<dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-web</artifactId>        </dependency>
二.starter内部详情

starter文件也只是一个pom文件,而不是jar,它的目的也是去自动的引入其他的(🚕)jar文件,上图展示(🔏)的spring-boot-starter-web中的依赖就有spring-boot-starter。

starter只是(🏃)一个pom文件

下面也就是starter的关键所在,请(🖕)问我们(♟)为什么引入了starter之后只需要配置一点点的个性化设置,例如创建application.properties仅仅配置端口等等就可以完成启动应用?是谁帮助我们配置了其他复杂的信息?

引出自动配置

三.自动配置1.自动配置类的(🔔)梳理

自动配置主要通过xxxAutoConfiguration这些类来实现,我们(😟)查找一个这样的类来进行示例演示

上图是DataSourceAutoConfiguration这个(🧔)自动(😐)配置类,我们可以看到(❕)类上的几个(⛸)注解。

@Configuration 将该类标记为配置类,@Configuration注解的类可以看作是能生产让Spring IoC容器管理的Bean实例的工厂@ConditionalOnClass表示某个类位于类(👃)路径上时候,才会实例化这个bean@EnableConfigurationProperties注解的作用是使@ConfigurationProperties注解生效。如果(🎇)只配置@ConfigurationProperties注解,在spring容器中是获取不到yml或者properties配置文件转化的bean的(😈)。

我们点击@EnableConfiguration注解中的@DataSourceProperties进去查(🤔)看

可以查看到这里使(📆)用@configurationPropertes,@ConfigurationProperties注解的作用是把yml或者properties配置文件转化为bean。

同时这里也设(😟)置(🌲)了prefix前缀,在我们项目的application.properties中(👵)配置的时候,提(😝)示的就是这些bean实例(❤)中的属性。

所以是使用@ConfigurationProperties和@EnableConfigurationProperties这两个注解来完成将一个(🍐)包含众(🌥)多属性的类来注册成为可供springIoc容器管理的bean。

而这个bean的(📏)注册过程是(☔)在各(📽)个XXXAutoConfiguration类中完成的。

2.如何发现依赖(🕟)包中的bean

我们都(📹)知道springboot默认(🅾)扫描启动类下面的主类和子类的bean来完成注解,但是并没有包括依赖包中的类,那么依赖包中的bean是如何被(⛹)发现和加载的?

关键(🅰)在于@SpringBootApplication这个注解

注解层次:

@springbootApplication@SpringBootConfiguration:和@Configuration相同的用处,并(😞)且将里(🤰)面通过@bean注解标注的方法的返回值作为bean对象注册到ioc容器之中。获得bean的两种(🎹)方式,一种是在配置类中通过方(⛽)法返回(🏋),一种是直接在类上注解@bean(或者相同的注解,类似@Mapper等)来注册为(🏭)bean实例@EnableAutoConfiguration:借助@Import的支持,收集和注册依赖(⚾)包中相关的(🖖)bean定义。@Import({AutoConfigurationImportSelector.class}):该注解扫描依赖包下需要注册为bean的自动配置类。复制代码protected List<String> getCandidateConfigurations(AnnotationMetadata metadata, AnnotationAttributes attributes) { List<String> configurations = SpringFactoriesLoader.loadFactoryNames(this.getSpringFactoriesLoaderFactoryClass(), this.getBeanClassLoader()); Assert.notEmpty(configurations, "No auto configuration classes found in META-INF/spring.factories. If you are using a custom packaging, make sure that file is correct."); return configurations; }SpringFactoriesLoader.loadFactoryNames方法调用loadSpringFactories方法从所有的jar包中读取META-INF/spring.factories文件信息。而Spring.factories中key/value中就有一个key是:org.springframework.boot.autoconfigure.EnableAutoConfiguration,后面跟着的都是需要AutoConfigurationImportSelector来进行注册的自动配置类# Auto Configure org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ org.mybatis.spring.boot.autoconfigure.MybatisLanguageDriverAutoConfiguration,\ org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration@AutoConfigurationPackage@Import({Registrar.class}):Registrar就是扫描启动类目录下的(🈶)所(🚣)有bean并且注册,具体实现通过下列代码:static class Registrar implements ImportBeanDefinitionRegistrar, DeterminableImports { Registrar() { } public void registerBeanDefinitions(AnnotationMetadata metadata, BeanDefinitionRegistry registry) { AutoConfigurationPackages.register(registry, (new AutoConfigurationPackages.PackageImport(metadata)).getPackageName()); } public Set<Object> determineImports(AnnotationMetadata metadata) { return Collections.singleton(new AutoConfigurationPackages.PackageImport(metadata)); } }

注解层(💞)次图示:

3.如何加载发现的bean

如果要让一个普通(🐔)类交给Spring容器管理,通常有以下方法:

使用 @Configuration与@Bean 注解使用@Controller @Service @Repository @Component 注解标注该类,然后(🆕)启用@ComponentScan自动扫描使用@Import 方(📹)法

springboot中使用了@Import 方法

@EnableAutoConfiguration注解中使(😓)用了(🐎)@Import({AutoConfigurationImportSelector.class})注解,AutoConfigurationImportSelector实现了DeferredImportSelector接口,

DeferredImportSelector接口继承了ImportSelector接口,ImportSelector接口(🛺)只有一个selectImports方法。

selectImports方法返回一组bean,@EnableAutoConfiguration注解借助@Import注解将这组bean注入到spring容器中,springboot正式通过这种机制来完成bean的注入的。

关于@import注解的加载可以查看这个(🤤)文章:https://zhuanlan.zhihu.com/p/147025312

ps:晕乎乎的,我只看懂了一部分。

加载redisAutoConfiguration的流程图示

四.自定义starter

下面我们演(〽)示自定义starter的流程:

我们确定好自定义starter的GAV(groupId,ArtifactId,Version),这里需要注意的是(🧖)ArtifactId的命名,对于spring进行管理的starter包,命名规则是:spring-boot-starter-xxx,而为了区别spring进行管理的starter包,自定义的starter包一般命名规则是:xxx-spring-boot-starter,例如mybatis官方推出的starter包:mybatis-spring-boot-starter。

groupId使用自己域名的反写即可。

项目结构如下:

1.pom文件导入依赖
 <dependencies>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-configuration-processor</artifactId>            <version>2.7.3</version>             <optional>true</optional>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter</artifactId>            <version>2.7.1</version>            <optional>true</optional>        </dependency>        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>            <version>1.18.24</version>        </dependency>    </dependencies>

依赖:(🌽)spring-boot-configuration-processor 作用:导入之后会自动生成元数据(meta-data)(🤤),在application.properties配置的时候会有提示。

例如:

由于是自动生(🍻)成,在你配置了@ConfigurationProperties之后就会自动生成元数据,在你写application.properties的时候就会进行自动提示。

当无(😎)法提示的(🎌)时候(🦃)多次clean,之后再compile然后在(💊)install发布。

具体可以看这(🚪)个博客 https://blog.csdn.net/wangleleb/article/details/104904348

依赖: spring-boot-starter 作用:是为了使用前(🎼)面提到的自动配置的注解。注解@ConfigurationProperties和@EnableConfigurationProperties两个注解都在spring-boot-context包中

2.编写代码

编写自动配置类代码:

package properties; import lombok.Getter;import lombok.Setter;import org.springframework.boot.context.properties.ConfigurationProperties;  @ConfigurationProperties(prefix = "demo")@Getter@Setterpublic class DemoProperties{     private String var1;     private String var2; }

编写service代码:

package service;  import lombok.AllArgsConstructor; @AllArgsConstructorpublic class DemoService {     public String var1;     public String var2;     public String variable(){        return this.var1 + " " + this.var2;    } }

编写config类:

@Configuration@EnableConfigurationProperties(DemoProperties.class)// 只有当name的值与havingValue的值相同的时候加载@ConditionalOnProperty(        prefix = "demo",        name = "isopen",        havingValue = "true")public class DemoConfig {     @Resource    private DemoProperties demoProperties;     @Bean    public DemoService demoService(){        return new DemoService(demoProperties.getVar1(),demoProperties.getVar2());    }}

关于这里@ConditionOnProperty这个注解(🎲),该注解的大概含义就是,对于前缀是demo的属性,底下(👎)的值isopen为true时候,该自动配置类才会生效。

编写spring.factories

将key:EnableAutoConfiguration-->DemoConfig这个(🔀)类

3.打包

使用maven命令:mvn clean compile install 清理,编译,发布(🛠)到本地仓库中去

4.其他项目引入
<!--引入我写的starter--><dependency>    <groupId>org.oldoldcoder</groupId>    <artifactId>oldoldcoder-spring-boot-starter</artifactId>    <version>1.0-SNAPSHOT</version></dependency>

配置资源文件

# 使用自己写的starterdemo.isopen=truedemo.var1=var1demo.var2==var2

随便编写一(🗃)个类验证

@Componentpublic class TestService {    @Resource    private DemoService demoService;     @PostConstruct    public void test(){        System.out.println("你好"+demoService.variable());    }}

结果

【台湾佬中文娱乐香蕉网的相关新闻】

猜你喜欢

💟相关问题

1.请问哪个网站可以免费在线观看动漫《台湾佬中文娱乐香蕉网》?

优酷视频网友:http://www.ahxhhy.com/video/403138892249.html

2.《台湾佬中文娱乐香蕉网》是什么时候上映/什么时候开播的?

腾讯视频网友:上映时间为2022年,详细日期可以去百度百科查一查。

3.《台湾佬中文娱乐香蕉网》是哪些演员主演的?

爱奇艺网友:台湾佬中文娱乐香蕉网演员表有,导演是。

4.动漫《台湾佬中文娱乐香蕉网》一共多少集?

电影吧网友:目前已更新到全集已完结

5.手机免费在线点播《台湾佬中文娱乐香蕉网》有哪些网站?

手机电影网网友:美剧网、腾讯视频、电影网

6.《台湾佬中文娱乐香蕉网》评价怎么样?

百度最佳答案:《台湾佬中文娱乐香蕉网》口碑不错,演员阵容强大演技炸裂,并且演员的演技一直在线,全程无尿点。你也可以登录百度问答获得更多评价。

  • 台湾佬中文娱乐香蕉网百度百科 台湾佬中文娱乐香蕉网版原著 台湾佬中文娱乐香蕉网什么时候播 台湾佬中文娱乐香蕉网在线免费观看 台湾佬中文娱乐香蕉网演员表 台湾佬中文娱乐香蕉网大结局 台湾佬中文娱乐香蕉网说的是什么 台湾佬中文娱乐香蕉网图片 在线台湾佬中文娱乐香蕉网好看吗 台湾佬中文娱乐香蕉网剧情介绍      台湾佬中文娱乐香蕉网角色介绍 台湾佬中文娱乐香蕉网上映时间 
  • Copyright © 2008-2024