SpringBoot學習彙總

xingstarx發表於2017-12-13

SpringBoot hello工程

http://guojohnny.com/2016/05/31/%E4%BD%BF%E7%94%A8IDEA-IntelliJ%E5%88%9B%E5%BB%BA%E4%B8%80%E4%B8%AASpringBoot%E5%B7%A5%E7%A8%8B/

主要學習搭建hello world,使用idea開發工具建立一個springBoot工程,預設建立的jar的形式

springBoot深入講解

https://github.com/lianggzone/springboot-action

其中測試了下使用logback作為日誌管理

配置

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-logging</artifactId>
</dependency>
複製程式碼

使用命令列啟動

http://yukinami.github.io/2016/02/15/Spring-Boot%E5%BA%94%E7%94%A8%E4%BB%8Emain%E6%96%B9%E6%B3%95%E8%BF%90%E8%A1%8C/

Spring Boot的應用是可以通過main方法中執行SpringApplication.run()來啟動的。如果專案使用了gradle或者maven,則可以通過gradle bootRun或者mvn spring-boot:run等外掛來執行。啟動方式是可以通過idea皮膚上spring-boot的外掛啟動

常用命令

終端下啟動專案 mvn spring-boot:run 打war包 mvn war:war

相關文章