spring学习笔记(三)springboot 入门

1.6 Hello World细节探究

编写helloWorld启动器的时候,只需要写简单几行代码主程序及相关业务逻辑的controllerService即可,不需要任何复制的配置,这个的原因是什么?

1.pom文件

1.父项目

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.9.RELEASE</version>
</parent>
<!-- spring-boot所有starter的父项目 -->
< !-- 他的父项目: -->
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-dependencies</artifactId>
    <version>1.5.9.RELEASE</version>
    <relativePath>../../spring-boot-dependencies</relativePath>
</parent>
<!--它用来真正管理Spring Boot应用里面的所有依赖版本 -->

Spring Boot的版本仲裁中心

以后我们导入依赖默认是不需要写版本;没有在dependencies里面管理的依赖的自然需要声明版本

2.启动器

 <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
      <version>1.5.9.RELEASE</version>
  </dependency>

拆开来看:

spring-boot-starter:spring-boot场景启动器:帮我们导入web模块正常运行所依赖的组件

spring-boot-starter-web:就是web场景启动器,会自动导入相关依赖

<dependency>
	<groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>
<dependency>
	<groupId>org.hibernate</groupId>
	<artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
	<groupId>com.fasterxml.jackson.core</groupId>
	<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
	<groupId>org.springframework</groupId>
	<artifactId>spring-web</artifactId>
</dependency>
<dependency>
	<groupId>org.springframework</groupId>
	<artifactId>spring-webmvc</artifactId>
</dependency>

官方文档:一系列依赖描述的组合(Starters are a set of convenient dependency descriptors)

Spring Boot将所有的功能场景都抽取出来,做成一个个的starter(启动器),只需要在项目里引入这些starter相关场景的所有依赖都会导入进来,版本由spring-boot自动控制。要用什么功能就导入什么场景启动器

2.主程序类,主入口类

/**
 * 来标注一个主程序类,说明这个一个spring boot应用
 */
@SpringBootApplication
public class HelloWorldMainApplication {
    public static void main(String[] args) {

        //spring应用启动起来
        SpringApplication.run(HelloWorldMainApplication.class, args);

    }
}

@SpringBootApplication

Spring Boot 应用标注在某个类上说明这个类是SpringBoot的主配置类,

Spring Boot就应该运行这个类的main方法来启动SpringBoot应用;


@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:Spring Boot的配置类:

标注在某个类上,表示这个一个Spring Boot的配置类 ;

@Configuration:配置类上来标注这个注解:

     配置类-----配置文件;配置类也是容器中的一个组件;@Component

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值