1. 程式人生 > >SpringBoot(一) 入門

SpringBoot(一) 入門

什麼是SpringBoot

Spring Boot是由Pivotal團隊提供的全新框架,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程。該框架使用了特定的方式來進行配置,從而使開發人員不再需要定義樣板化的配置

Spring Boot具有如下特性:

1、為基於Spring的開發提供更快的入門體驗
2、開箱即用,沒有程式碼生成,也無需XML配置。同時也可以修改預設值來滿足特定的需求。
3、提供了一些大型專案中常見的非功能性特性,如嵌入式伺服器、安全、指標,健康檢測、外部配置等。
4、Spring Boot並不是不對Spring功能上的增強,而是提供了一種快速使用Spring的方式。

專案建立
Spring Boot建議使用Maven或Gradle,本文以Maven為例

1. 新增依賴

新建maven工程,在pom.xml檔案中新增一下依賴

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>4.0.0</modelVersion> <groupId>com.github.abel533</groupId> <artifactId>spring-boot</artifactId> <version>1.0-SNAPSHOT</version> <parent> <groupId>org.springframework.boot</groupId> <artifactId
>
spring-boot-starter-parent</artifactId> <version>1.3.0.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>springloaded</artifactId> <version>1.2.5.RELEASE</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>

pom.xml檔案中預設有兩個模組:

spring-boot-starter:核心模組,包括自動配置支援、日誌和YAML;

spring-boot-starter-test:測試模組,包括JUnit、Hamcrest、Mockito

2. 新建一個應用類

我們新建一個Application.java

@RestController
@SpringBootApplication
@EnableConfigurationProperties({ConfigBean.class})
public class Application {

    @RequestMapping("/")
    public String sayHello(){

        return "Hello SpringBoot!";
    }
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }

}

注意

Spring Boot建議將我們main方法所在的這個主要的配置類配置在根包名下。

在Application.java中有main方法。

因為預設和包有關的註解,預設包名都是當前類所在的包,例如@ComponentScan, @EntityScan, @SpringBootApplication註解。
@RestController

因為我們例子是寫一個web應用,因此寫的這個註解,這個註解相當於同時新增@Controller和@ResponseBody註解。
@EnableAutoConfiguration

Spring Boot建議只有一個帶有該註解的類。

@EnableAutoConfiguration作用:Spring Boot會自動根據你jar包的依賴來自動配置專案。例如當你專案下面有HSQLDB的依賴時,Spring Boot會建立預設的記憶體資料庫的資料來源DataSource,如果你自己建立了DataSource,Spring Boot就不會建立預設的DataSource。

@SpringBootApplication

由於大量專案都會在主要的配置類上新增@Configuration,@EnableAutoConfiguration,@ComponentScan三個註解。

因此Spring Boot提供了@SpringBootApplication註解,該註解可以替代上面三個註解(使用Spring註解繼承實現)。

3.執行

專案啟動後輸出如下日誌:

[INFO] Attaching agents: [F:\.m2\repository\org\springframework\springloaded\1.2.5.RELEASE\springloaded-1.2.5.RELEASE.jar]

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.2.3.RELEASE)

2015-12-12 22:26:35.298  INFO 9844 --- [           main] c.github.abel533.springboot.Application  : Starting Application on liuzh-PC with PID 9844 (F:\Liu\IDEA\SpringBoot\spring-boot\target\classes started by liuzh_3nofxnp in F:\Liu\IDEA\SpringBoot\spring-boot)
2015-12-12 22:26:35.332  INFO 9844 --- [           main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot[email protected]a38d7a3: startup date [Sat Dec 12 22:26:35 CST 2015]; root of context hierarchy
2015-12-12 22:26:35.734  INFO 9844 --- [           main] o.s.b.f.s.DefaultListableBeanFactory     : Overriding bean definition for bean 'beanNameViewResolver': replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]]
2015-12-12 22:26:36.302  INFO 9844 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2015-12-12 22:26:36.456  INFO 9844 --- [           main] o.apache.catalina.core.StandardService   : Starting service Tomcat
2015-12-12 22:26:36.457  INFO 9844 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet Engine: Apache Tomcat/8.0.20
2015-12-12 22:26:36.537  INFO 9844 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2015-12-12 22:26:36.537  INFO 9844 --- [ost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1207 ms
2015-12-12 22:26:36.941  INFO 9844 --- [ost-startStop-1] o.s.b.c.e.ServletRegistrationBean        : Mapping servlet: 'dispatcherServlet' to [/]
2015-12-12 22:26:36.944  INFO 9844 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean  : Mapping filter: 'characterEncodingFilter' to: [/*]
2015-12-12 22:26:36.945  INFO 9844 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean  : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2015-12-12 22:26:37.111  INFO 9844 --- [           main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot[email protected]a38d7a3: startup date [Sat Dec 12 22:26:35 CST 2015]; root of context hierarchy
2015-12-12 22:26:37.152  INFO 9844 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/],methods=[],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto java.lang.String com.github.abel533.springboot.Application.home()
2015-12-12 22:26:37.152  INFO 9844 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/now],methods=[],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto java.lang.String com.github.abel533.springboot.Application.hehe()
2015-12-12 22:26:37.156  INFO 9844 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],methods=[],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2015-12-12 22:26:37.156  INFO 9844 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],methods=[],params=[],headers=[],consumes=[],produces=[text/html],custom=[]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest)
2015-12-12 22:26:37.175  INFO 9844 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2015-12-12 22:26:37.175  INFO 9844 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2015-12-12 22:26:37.195  INFO 9844 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2015-12-12 22:26:37.237  INFO 9844 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2015-12-12 22:26:37.279  INFO 9844 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)

相關推薦

SpringBoot() 入門

SpringBoot簡要 簡化Spring應用開發的一個框架; 整個Spring技術棧的一個大整合; J2EE開發的一站式解決方案; 自動配置:針對很多Spring應用程式常見的應用功能,Spring Boot能自動提供相關配置 起步依賴:告訴Spring Boot需要什麼功能,它就能引入需要的

SpringBoot() 入門

什麼是SpringBoot Spring Boot是由Pivotal團隊提供的全新框架,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程。該框架使用了特定的方式來進行配置,從而使開發人員不再需要定義樣板化的配置 Spring Boot具有如下特性

springboot():入門

Spring Boot 概述 Build Anything with Spring Boot:Spring Boot is the starting point for building all Spring-based applications

Springboot():入門

熱啟動 exp 頁面 tor posit ole 入口 service 主程序 什麽是spring boot spring Boot是由Pivotal團隊提供的全新框架,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程。該框架使用了特定的方式來進行配置,從而使開

springboot():快速入門

pom.xml www. 負責 格式 一個 tools 實體 簡化 mvc 麽是spring boot Spring Boot是由Pivotal團隊提供的全新框架,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程。 使用spring boot有什麽

SpringBoot入門到放棄》之第(十)篇——使用@Scheduled建立定時任務,cron七子表示式的簡單使用

模擬場景:有時候,你需要每天某個點或者每週、每個月讓程式做一些事情,如呼叫介面獲取資料,比如生成資料的報表,或者統計一些資料之類,你除了可以在資料庫建立儲存過程,還可以寫Java定時任務。 O的K,接著上一篇的開發環境。《SpringBoot從入門到放棄》之第(十)篇 我們建立一個定時任

SpringBoot入門到熟悉()快速入門

簡介 相信在你第1次接觸和學習Spring框架的時候,就已經為其及其繁瑣的配置過程而退卻了?在你第n次使用Spring框架的時候,是否覺得一堆反覆黏貼的配置有一些厭煩?那麼您就不妨來試試使用Spring Boot來讓你更易上手,更簡單快捷地構建Spring應用!

springboot入門到精通(

需要 ati works thymeleaf run work jpa ring 無需 springboot到底有什麽好處?有什麽優勢?這個先不用看,我們只要知道它有很多優勢,現在要做的事只有一件,那就是擼代碼!擼完就知道有多少料! 首先,在案例中,我們會構建一個英雄列表

SpringBoot2學習筆記(SpringBoot基礎入門

看完了Spring Boot 2精髓這本書,打算寫一系列Spring Boot的文章做下總結。這本書在網上的評價偏低,其中作者常推銷自己的輪子是一方面原因,但我認為它是一本快速入門學習Spring Boot 2的好書,對我的幫助蠻大的。 一、建立Spr

SpringBoot快速入門(實戰篇

# SpringBoot快速入門(一) ## 一SpringBoot簡介 ### 1.spring開發經歷的階段 Spring 誕生時是 Java 企業版(Java Enterprise Edition,JEE,也稱 J2EE)的輕量級代替品。無需開發重量級的 Enterprise JavaBean(

SpringBoot快速入門

右鍵 項目 mode 1-1 port model des font build   最近學習了一下SpringBoot,其實也不是什麽新功能,只是可以快速啟動一下一個Spring應用,就像Maven集成了所有jar包一樣,Springboot集成了大部門的框架,需要使用的

springboot() 熱部署

部署 -s https start.s put depend apache devtools col 工程代碼:https://github.com/showkawa/springBoot_2017/tree/master/spb-demo 1.構建springboot的工

《Java從入門到放棄》JavaSE入門篇:面向對象語法(入門版)

面向對象 java.javaoop 前一次簡單說明了一下面向對象編程的概念,今天我們就把這些概念通過Java語法來實現,然後看看效果。來看第一個案例:定義女神類,再根據女神類創建三個女神對象,並使用女神對象的屬性和方法。第一步:定義女神類(因為Java本身沒有這個類型,所以我們自己創建這個類型)/**

Springboot():使用Intellij中的Spring Initializr來快速構建Spring Boot工程

數據 web模塊 pan tell copy ice ima intellij pom 使用Intellij中的Spring Initializr來快速構建Spring Boot工程   New---Project   可以看到圖所示的創建功能窗口。其中Initial S

CYQ.Data 數據框架 使用篇 入門指南

strong 數據 fail 127.0.0.1 this ORC client false nload 原文鏈接:http://www.cyqdata.com/cyqdata/article-detail-411 本文針對V5版本進行修改於(2016-07-04)

leaflet學習 入門

alt javascrip script 式表 scrip lang inf box let 1從官網https://leafletjs.com/下載的Leaflet包含文件: leaflet.js - 簡化版的 Leaflet JavaScript代碼 leafl

elasticsearch技術解析與實戰() 入門和索引

ilog reat date str last dice elastics replicas nod GET _cat/nodes GET _cat/health GET _cat/shards GET http://10.37.84.124:9200/secislan

SpringBoot學習(四)-->SpringBoot快速入門,開山篇

hand return all mapped min embedded ica 轉發 gis SpringBoot是伴隨著Spring4.0誕生的,旨在簡化開發。 SpringBoot官方文檔:http://spring.io/projects/spring-boot

SpringBoot入門到放棄》之第(十)篇——整合Redis(SpringBoot 2.0 版本),寫於2018年10月24號程式設計師節。

在 pom.xml 配置中新增 jar 依賴: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-d

SpringBoot入門到放棄》之第(九)篇——EhCache快取

一個較大的專案,如果使用者數量不斷的增多,而程式裡都是直接操作資料庫的話,並定會造成資料庫出現瓶頸,無法處理高併發的問題。此時使用快取是解決問題的一個良好辦法之一,讀取快取的資料的速度往往比連線資料庫查詢快很多。 在 pom.xml 配置檔案加上 jar 依賴: <depend