SpringBoot入门

一、特征

  • 创建独立的Spring应用程序

  • 直接嵌入Tomcat,Jetty或Undertow(无需部署WAR文件)

  • 提供自以为是的“入门”依赖项,以简化构建配置

  • 尽可能自动配置Spring和3rd Party库

  • 提供可用于生产的功能,例如指标,运行状况检查和外部化配置

  • 完全没有代码生成,也不需要XML配置

二、快速入门

1、创建maven工程

2、引入SpringBoot依赖

<parent>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-parent</artifactId>
	<version>2.1.3.RELEASE</version>
</parent>

3、添加spring-boot启动器依赖(添加启动器后 web工程常用的依赖会自动帮你引入)

<dependencies>
	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-web</artifactId>
	</dependency>
</dependencies>

4、编写启动类

5、编写Controller测试访问

6、启动

出现以下内容表示成功!!!

6、访问(http://localhost:8080/hello)查看是否页面是否输出内容

posted @ 2020-06-17 17:06  Campsis-tk  阅读(45)  评论(0)    收藏  举报