SpringBoot Maven Plugin 及 @SpringBootApplication 解析

Spring Boot Maven plugin 提供以下支持

  • 收集classpath下的所有 jar 包,并将其构建成一个单个可运行的“über-jar” 超级jar 包,这样可以更适合传输和执行service。
  • 搜索 public static void main()方法所在类,将其标记为可运行的class
  • 提供内置依赖管理(Spring Boot dependencies),用于维护各种依赖的版本关系

@SpringBootApplication

@SpringBootApplication 也是1个组合体

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(excludeFilters = {
        @Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
        @Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
public @interface SpringBootApplication {
    ......
}
  • @SpringBootConfiguration
    • 本质上是 @Configuration, @SpringBootConfiguration 源代码定义被注解了@Configuration
    • @Configuration 本质上是一个@Component,源代码注解了 @Component
    • 作用: tags the annotated class as a source of bean definitions for the application context,即一个标记 bean 源的作用(注意打 tag 后,还需要发现机制,被发现之后才能注入上下文)
    • 顺带提一下, @RestController/@Controller/@Service/@Repository/ 本质上都是一种 @Component, 而 Component 既是Spring最初设计被注入到上下文的组件
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Configuration  //注意此处
public @interface SpringBootConfiguration {
    ......
}

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component  //注意此处
public @interface Configuration {
    ......
}
  • @ComponentScan 即 发现机制并注入
    • 告诉 spring 寻找其他的 components, configurations, services 并将其注入到 上下文
    • 寻找的位置即是 @Component 所注解类所在的包及其下所有 package
  • @EnableAutoConfiguration
    • 告诉 spring boot 基于某些条件来添加某些 bean
    • 条件包括:classpath settings, other beans, various property settings
  • 一般情况下,你需要添加 @EnableWebMvc,但spring boot在classpath中发现 spring-webmvc
    后会自动添加 @EnableWebMvc,spring-webmvc 将应用标记为 WebApplication,然后 activate 某些机制如 创建 DispatcherServlet;
  • SpringApplication.run() 启动应用入口,没有web.xml,没有application.xml.100%的java.

SpringBoot结合RESTAPI react 前端框架

  • [HPM] Proxy created: /api -> http://localhost:8080
  • 前面-红色:前端路径, 后面-橘色:后端server路径
  • 关系:前端基于/api的请求 会 请求 到 后端 http://localhost:8080的地址上
  • 前端 基于 node平台 也会有自己的 地址address1,后端更会有address2
    address1 -> address2的 转化
  • 前端 地址address1 在 http://localhost:80/
    http 默认在 80端口,故上 同 http://localhost/

案例:ReleaseAPI.jsx 一条 方法
let uri = "/api/packages/hotfix?" + data;
RestAPI.getEx(uri, onsuccess, onerror);

你可能感兴趣的:(SpringBoot Maven Plugin 及 @SpringBootApplication 解析)