不学无数——SpringBoot入门Ⅱ

SpringBoot

1.Starters

Starters是一套技术,是什么技术呢?是SpringBoot整理出来,人们经常要用的技术。有了starters人们在想要使用这些技术的时候,就不用扒之前的老代码将那些依赖啊或者配置的都拷贝过来,只需要加上SpringBoot提供的依赖就行,它自动会进行依赖管理。例如,如果你想在SpringBoot项目中集成JPA,那么只需要在引入jar包的地方加上spring-boot-starter-data-jpa即可,SpringBoot会自动将其和其他所依赖的包加载进项目中。

所有SpringBoot提供的Starters命名都有一套规则,spring-boot-starter-*,其中的*就是你想要引用的技术的名称。

下面列一些Starters

名称 描述
spring-boot-starter SpringBoot的核心,其中提供了自动配置的支持,日志,以及YAML
spring-boot-starter-activemq 提供对于ActiveMq的使用的支持
spring-boot-starter-amqp 对于Spring AMQP和RabbitMQ的支持
spring-boot-starter-aop 对于Spring面向切面编程的支持
spring-boot-starter-web 初始化关于Web启动的一些东西,另外支持RESTful,支持SpringMvc,使用tomcat为默认的内嵌容器

在这就简单介绍这几个Starters,想看具体介绍的可以参考SpringBootg官方文档

2.自定义启动页面

在项目启动的时候,在打印日志的上面会有一个图像,这个就是启动的时候自动加载的。就像下面这样初始图像是这样的。

 .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.4.7.RELEASE)

2018-07-16 10:18:03.591  INFO 4737 --- [           main] c.e.F.FirstSpringBootApplication         : Starting FirstSpringBootApplication on hupengfeideMacBook-Pro.local with PID 4737 (/Users/hupengfei/mygit/FirstSpringBoot/out/production/classes started by hupengfei in /Users/hupengfei/mygit/FirstSpringBoot)
2018-07-16 10:18:03.595  INFO 4737 --- [           main] c.e.F.FirstSpringBootApplication         : No active profile set, falling back to default profiles: default
2018-07-16 10:18:03.659  INFO 4737 --- [           main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@7fbdb894: startup date [Mon Jul 16 10:18:03 CST 2018]; root of context hierarchy

如果想要更改的话也简单,就是在资源文件的下面添加一个banner.txt文件,然后将想要的展示的信息填写进去就行了,项目启动的时候回自动去加载这个文件。

___.                                                  .__
\_ |__  __ _____  _____ __   ______  _  ____ __  _____|  |__  __ __
 | __ \|  |  \  \/  /  |  \_/ __ \ \/ \/ /  |  \/  ___/  |  \|  |  \
 | \_\ \  |  />    <|  |  /\  ___/\     /|  |  /\___ \|   Y  \  |  /
 |___  /____//__/\_ \____/  \___  >\/\_/ |____//____  >___|  /____/
     \/            \/           \/                  \/     \/       
2018-07-16 10:19:53.941  INFO 4745 --- [           main] c.e.F.FirstSpringBootApplication         : Starting FirstSpringBootApplication on hupengfeideMacBook-Pro.local with PID 4745 (/Users/hupengfei/mygit/FirstSpringBoot/out/production/classes started by hupengfei in /Users/hupengfei/mygit/FirstSpringBoot)
2018-07-16 10:19:53.945  INFO 4745 --- [           main] c.e.F.FirstSpringBootApplication         : No active profile set, falling back to default profiles: default
2018-07-16 10:19:54.015  INFO 4745 --- [           main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@15a04efb: startup date [Mon Jul 16 10:19:54 CST 2018]; root of context hierarchy

此时就会发现启动的图像变了。将字母生成字符画

如果不想打印任何的图像信息,那么只需要在资源文件下的配置文件中设置即可。

spring:
    main:
        banner-mode: "off"

3.定制SpringApplication

如果默认的SpringApplication不符合自己想要的配置结果,那么可以进行定制化的配置。例如像上一章节的如果像关闭启动的图像信息,上一章节是在配置文件中进行关闭,那么也可以在启动的main文件中进行定制化关闭。

public static void main(String[] args) {
    SpringApplication app = new SpringApplication(MySpringConfiguration.class);
    app.setBannerMode(Banner.Mode.OFF);
    app.run(args);
}

对于完整的SpringApplication配置选项,可以参考SpringApplication文档

4.Spring事件的监听

除了一些正常的Spring的事件监听,例如ContextRefreshedEvent,有时候也有可能需要一些特殊的事件的监听。下面就列出一些特殊的事件,例如你想在项目启动的时候做一些事情,或者是项目启动失败的时候做一些事情。这些SpringBoot都提供有相应的功能。

事件名称 何时被调用
ApplicationEnvironmentPreparedEvent 环境准备好,Spring容器被创建之前
ApplicationPreparedEvent 在项目启动refresh之前
ApplicationReadyEvent 在项目启动成功之后
ApplicationFailedEvent 在项目启动时发生异常

可以看到每个事件被触发时的时间。

I AM ApplicationEnvironmentPreparedEvent

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.4.7.RELEASE)

2018-07-16 14:44:37.110  INFO 5397 --- [           main] c.e.F.FirstSpringBootApplication         : Starting FirstSpringBootApplication on hupengfeideMacBook-Pro.local with PID 5397 (/Users/hupengfei/mygit/FirstSpringBoot/out/production/classes started by hupengfei in /Users/hupengfei/mygit/FirstSpringBoot)
2018-07-16 14:44:37.114  INFO 5397 --- [           main] c.e.F.FirstSpringBootApplication         : No active profile set, falling back to default profiles: default
I AM ApplicationPreparedEvent
2018-07-16 14:44:37.168  INFO 5397 --- [           main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@528c868: startup date [Mon Jul 16 14:44:37 CST 2018]; root of context hierarchy
2018-07-16 14:44:38.299  INFO 5397 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2018-07-16 14:44:38.309  INFO 5397 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2018-07-16 14:44:38.310  INFO 5397 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet Engine: Apache Tomcat/8.5.15
2018-07-16 14:44:38.391  INFO 5397 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2018-07-16 14:44:38.391  INFO 5397 --- [ost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1227 ms
2018-07-16 14:44:38.530  INFO 5397 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Mapping servlet: 'dispatcherServlet' to [/]
2018-07-16 14:44:38.539  INFO 5397 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'characterEncodingFilter' to: [/*]
2018-07-16 14:44:38.540  INFO 5397 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2018-07-16 14:44:38.540  INFO 5397 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2018-07-16 14:44:38.540  INFO 5397 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'requestContextFilter' to: [/*]
2018-07-16 14:44:38.851  INFO 5397 --- [           main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@528c868: startup date [Mon Jul 16 14:44:37 CST 2018]; root of context hierarchy
2018-07-16 14:44:38.929  INFO 5397 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/]}" onto java.lang.String com.example.FirstSpringBoot.FirstSpringBootApplication.home()
2018-07-16 14:44:38.933  INFO 5397 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2018-07-16 14:44:38.933  INFO 5397 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2018-07-16 14:44:38.960  INFO 5397 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-07-16 14:44:38.960  INFO 5397 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-07-16 14:44:38.995  INFO 5397 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-07-16 14:44:39.197  INFO 5397 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2018-07-16 14:44:39.272  INFO 5397 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
I AM ApplicationReadyEvent

代码如下,这是使用了内部类的写法,也可以自己建一个类实现ApplicationListener然后传入所建的类即可。

public static void main(String[] args) {
        SpringApplication app = new SpringApplication(FirstSpringBootApplication.class);
        app.addListeners((ApplicationListener<ApplicationEnvironmentPreparedEvent>) event -> {
            System.out.println("I AM ApplicationEnvironmentPreparedEvent");
        });
        app.addListeners((ApplicationListener<ApplicationPreparedEvent>) event -> {
            System.out.println("I AM ApplicationPreparedEvent");
        });
        app.addListeners((ApplicationListener<ApplicationReadyEvent>) event -> {
            System.out.println("I AM ApplicationReadyEvent");
        });
        app.run(args);
    }

5.ApplicationRunner和CommandLineRunner

有时候在业务中会碰到这些需求,要求在容器启动的时候执行一些内容,例如读取配置文件,数据库的连接等等。SpringBoot提供了两个接口为我们解决这些问题。一个是ApplicationRunner另一个是CommandLineRunner

5.1 CommandLineRunner接口

@Component
public class AppliRunner implements CommandLineRunner {
    @Override
    public void run(String... args) throws Exception {
        System.out.println("--------CommandLineRunner---------"+Arrays.asList(args));
    }
}

然后在设置里面设置Program arguments

option.jpeg

然后项目启动就可以发现输出了这些信息

2018-07-16 16:56:08.216  INFO 5745 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2018-07-16 16:56:08.278  INFO 5745 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
--------CommandLineRunner---------[aaa,bbbb]
2018-07-16 16:56:08.282  INFO 5745 --- [           main] c.e.F.FirstSpringBootApplication         : Started FirstSpringBootApplication in 2.557 seconds (JVM running for 3.227)
Disconnected from the target VM, address: '127.0.0.1:59214', transport: 'socket'

5.2 ApplicationRunner接口

ApplicationRunner接口和CommandLineRunner接口的不同之处在于参数的不同,ApplicationRunner接口的传参是ApplicationArguments,是对参数的一层封装。而CommandLineRunner接口的参数是可变的String。

@Component
public class AppliRunner implements ApplicationRunner {
    @Override
    public void run(ApplicationArguments args) throws Exception {
        System.out.println("-----ApplicationRunner----"+args.getOptionNames());
        System.out.println("-----ApplicationRunner----name:"+args.getOptionValues("name"));
        System.out.println("-----ApplicationRunner----age:"+args.getOptionValues("age"));
    }
}

在启动设置中设置参参数如下


option2.jpeg

然后在启动的时候可以发现如下的参数

2018-07-16 17:15:16.502  INFO 5825 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2018-07-16 17:15:16.564  INFO 5825 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
-----ApplicationRunner----[name, age]
-----ApplicationRunner----name:[不学无数]
-----ApplicationRunner----age:[23]
2018-07-16 17:15:16.568  INFO 5825 --- [           main] c.e.F.FirstSpringBootApplication 

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,099评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,828评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,540评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,848评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,971评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,132评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,193评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,934评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,376评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,687评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,846评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,537评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,175评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,887评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,134评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,674评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,741评论 2 351

推荐阅读更多精彩内容