2019-03-18

如何学习Spring Boot

1.Spring Boot可以轻松创建单独的,基于生产级的Spring应用程序,您需要做的可能“仅仅是去运行”。 我们提供了Spring Platform对Spring 框架和第三方库进行处理,尽可能的降低使用的复杂度。大多数情况下Spring Boot应用只需要非常少的配置。

2.Spring boot的特点

Create stand-alone Spring applications
Embed Tomcat, Jetty or Undertow directly (no need to deploy WAR files)
快速构建独立的Spring Application,使用内嵌容器,无需部署到外部容器,你要做的仅仅是运行她。
Provide opinionated 'starter' POMs to simplify your Maven configuration
Automatically configure Spring whenever possible
提供众多扩展的‘starter’,通过依赖探知自动配置,你要做的仅仅是添加Maven依赖。
Provide production-ready features such as metrics, health checks and externalized configuration
提供生产环境下的性能健康状态监控及外部化配置,让你时刻掌控她。
Absolutely no code generation and no requirement for XML configuration
无需生成代码及XML配置,一切从简。

3. 尝试

  1. 配置你项目的pom.xml


    20190318204301.png

2.创建Application.java


20190318204155.png
  1. Just Run,执行Application.main() 或者 mvn:spring-boot:run
    启动成功后,访问http://localhost:8080/

你可能感兴趣的:(2019-03-18)