Spring Boot入门

这里写目录标题

        • 1.SpringBoot的优点
        • 2.SpringBoot简介
        • 3.微服务
        • 4.Spring框架掌握一下内容:
        • 5.Spring环境约束
        • 6.入门功能示例
        • 7.POM文件
        • 8.主程序类,主入口类
        • 9.使用Spring Initializer快速创建Spring Boot项目
        • 10.idea设置创建出来的文件列表选项

1.SpringBoot的优点

–快速创建独立运行的Spring项目以及与主流框架集成
–使用嵌入式的Servlet容器,应用无需打成WAR包
–starters自动依赖与版本控制
–大量的自动配置,简化开发,也可修改默认值
–无需配置XML,无代码生成,开箱即用
–准生产环境的运行时应用监控
–与云计算的天然集成

2.SpringBoot简介

简化Spring应用开发的一个框架:
整个Spring技术栈的一个大整合;
J2EE开发的一站式解决方案。

3.微服务

http://marthinfowler.com/microservices/
功能元素分割开来,然后通过动态进行组合

4.Spring框架掌握一下内容:

Spring框架的使用经验
熟悉使用Maven进行项目构建和依赖管理
熟悉使用Eclipse或者IDEA

5.Spring环境约束

jdk1.8:Spring Boot 1.7及以上;
maven3.x:maven 3.3以上版本
IntelliJ IDEA 2017
Spring Boot 1.5.9.9RELEASE
给maven中的settings.xml中的配置
图片1
在idea中的settings里面设置maven

6.入门功能示例

浏览器发送hello请求,服务器接受请求并处理,响应Hello World字符串;
1.创建一个maven工程
new->project->maven
设置自动导入
图片2
2.导入spring boot相关的依赖,即在pom.xml配置如下信息

<parent>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-parentartifactId>
    <version>1.5.9.RELEASEversion>
parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-webartifactId>
    dependency>
dependencies>

3.编写一个主程序

@SpringBootApplication
public class HelloWorldMainApplication {
    public static void main(String[] args){
        SpringApplication.run(HelloWorldMainApplication.class,args);
    }
}

4.编写相关的Controller、Service

package com.atguigu.controller;
@Controller
public class HelloController {
    @ResponseBody
    @RequestMapping("/hello")
    public String hello(){
        return "Hello World!";
    }
}

5.测试
6.简化部署

 <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-maven-pluginartifactId>
            plugin>
        plugins>
    build>

将这个应用打成jar包,直接使用java-jar的命令进行执行;

7.POM文件

1、父项目

 <parent>
        <groupId>org.springframework.bootgroupId>
        <artifactId>spring-boot-starter-parentartifactId>
        <version>1.5.9.RELEASEversion>
    parent>
依赖另一个父项目
<parent>
	<groupId>org.springframework.bootgroupId>
	<artifactId>spring-boot-dependenciesartifactId>
	<version>1.5.9.RELEASEversion>
	<relativePath>../../spring-boot-dependenciesrelativePath>
parent>
该父项目下用来正真管理SpringBoot应用里面的所有的依赖版本
SpringBoot的版本仲裁中心;以后我们导入依赖默认是不需要写版本;(没有在dependencies里面管理的依赖自然需要声明版本号)

2.启动器

   <dependencies>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-webartifactId>
        dependency>
    dependencies>

spring-boot-starter-web:
spring-boot-starter:spring-boot场景启动器;帮我们导入了web模块正常运行所依赖的组件;
SpringBoot将所有的功能场景都抽取出来,做成一个个的starters(启动器),只需要在项目里面引入这些starter相关场景的所有依赖都会导入进来。要用什么功能就导入什么场景的启动器

8.主程序类,主入口类

/**
*@SpringBootApplication来标注一个主程序类,说明这是一个SpringBoot应用*/
@SpringBootApplication
public class HelloWorldMainApplication {
    public static void main(String[] args){
        SpringApplication.run(HelloWorldMainApplication.class,args);
    }
}
@SpringBootApplication:SpringBoot应用标注在某个类上说明这个类是SpringBoot的主配置类,SpringBoot就应该运行这个类的main方法来启动SpringBoot应用;
@SpringBootApplication组合注解的内部代码:
@Target({ElementType.TYPE})//types(类、接口、枚举、Annotation类型)
@Retention(RetentionPolicy.RUNTIME)
/*
按生命周期来划分可分为3类:
1、RetentionPolicy.SOURCE:注解只保留在源文件,当Java文件编译成class文件的时候,注解被遗弃;
2、RetentionPolicy.CLASS:注解被保留到class文件,但jvm加载class文件时候被遗弃,这是默认的生命周期;
3、RetentionPolicy.RUNTIME:注解不仅被保存到class文件中,jvm加载class文件之后,仍然存在;
*/
@Documented
//@Documented 注解表明这个注解应该被 javadoc工具记录.
@Inherited//指示批注类型是自动继承的。
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(
    excludeFilters = {@Filter(
    type = FilterType.CUSTOM,
    classes = {TypeExcludeFilter.class}
), @Filter(
    type = FilterType.CUSTOM,
    classes = {AutoConfigurationExcludeFilter.class}
)}
)
public @interface SpringBootApplication {
    @AliasFor(
        annotation = EnableAutoConfiguration.class,
        attribute = "exclude"
    )
    Class<?>[] exclude() default {};

    @AliasFor(
        annotation = EnableAutoConfiguration.class,
        attribute = "excludeName"
    )
    String[] excludeName() default {};

    @AliasFor(
        annotation = ComponentScan.class,
        attribute = "basePackages"
    )
    String[] scanBasePackages() default {};

    @AliasFor(
        annotation = ComponentScan.class,
        attribute = "basePackageClasses"
    )
    Class<?>[] scanBasePackageClasses() default {};
}

@SpringBootConfiguration:
@SpringBootConfiguration:SpringBoot的配置类;标注在某个类上,表示这是一个SpringBoot的配置类;
其内在代码如下:

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Configuration
public @interface SpringBootConfiguration {
}

@Configuration注解代码如下:
配置类-----配置文件;配置类也是容器中的一个组件;@Component

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Configuration {
    String value() default "";
}

@EnableAutoConfiguration
开启自动配置功能;
以前我们需要配置的东西,SpringBoot帮我们自动配置;@EnableAutoConfiguration告诉SpringBoot开启自动配置功能;这样自动配置才能生效;

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@AutoConfigurationPackage
@Import({EnableAutoConfigurationImportSelector.class})
public @interface EnableAutoConfiguration {
    String ENABLED_OVERRIDE_PROPERTY = "spring.boot.enableautoconfiguration";

    Class<?>[] exclude() default {};

    String[] excludeName() default {};
}

@AutoConfigurationPackage:自动配置包

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@Import({Registrar.class})
public @interface AutoConfigurationPackage {
}

Spring的底层注解@Import,给容器中导入一个组件;导入的组件由AutoConfigurationPackages.Registrar.class;
将主配置类(@SpringBootApplication标注的类)的所在包及下面所有子包里面的所有组件扫描到Spring容器;

EnableAutoConfigurationImportSelector.class:
将所有需要导入的组件以全类名的方式返回;这些组件就会被添加到容器中;
会给容器中导入非常多的自动配置类(xxxAutoConfiguration);就是给容器中导入这个场景需要的所有组件,并配置好这些组件;

/** @deprecated */
@Deprecated
public class EnableAutoConfigurationImportSelector extends AutoConfigurationImportSelector {
    public EnableAutoConfigurationImportSelector() {
    }

    protected boolean isEnabled(AnnotationMetadata metadata) {
        return this.getClass().equals(EnableAutoConfigurationImportSelector.class) ? (Boolean)this.getEnvironment().getProperty("spring.boot.enableautoconfiguration", Boolean.class, true) : true;
    }
}

有了自动配置类,免去了我们手动编写配置注入功能组件等的工作;SpringFactoriesLoader.loadFactoryNames(EnableAutoConfiguration.class,classLoader);
SpringBoot在启动的时候从类路径下的META-INF/spring.factories中获取EnableAutoConfiguration指定的值,将这些值作为自动配置类导入到容器中,自动配置类就生效,帮我们进行自动配置工作;以前我们需要自己配置的东西,自动配置类都帮我们;
J2EE的整体整合解决方案和自动配置都在spring-boot-autoconfigure-1.5.9.RELEASE.jar;

9.使用Spring Initializer快速创建Spring Boot项目

file->new->project->Spring Initializr
IDE都支持使用Spring的项目创建向导快速创建一个SpringBoot项目;选择我们需要的模块;向导会联网创建SpringBoot项目;
默认生成的SpringBoot项目;
主程序已经生成好了,我们只需要我们自己的逻辑
resources文件夹中目录结构static:保存所有的静态资源;jscssimages;
templates:保存所有的模板页面;(SpringBoot默认jar包使用嵌入式的Tomcat,默认不支持JSP页面);可以使用模板引擎(freemarker、thymeleaf);
application.properties:SpringBoot应用的配置文件;可以修改一些默认设置;例如:server.port=8081

10.idea设置创建出来的文件列表选项

https://www.cnblogs.com/zimo-jing/p/9628784.html

你可能感兴趣的:(Spring Boot入门)