前言:第一個寫博客,有點緊張,不知道該寫些什麼,思來想去,準備把我最近學習的這個springboot入門教程給寫進個人第一個博客吧,做爲記念了,哈哈。好的,廢話不說了,下面上教程java
到這個,一個maven工程就建立成功了。下面咱們須要引入jar包,在這裏,由於咱們建立的是maven工程,所以引入jar包只須要在pom.xml文件中引入相關的依賴就好了,很是之方便mysql
<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>dean</groupId>
<artifactId>dean-bk</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!-- 繼承springboot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.8.RELEASE</version>
</parent>
<!-- 配置咱們的編碼集、JDK版本、springboot版本、數據庫版本 -->
<!-- 注:還能夠配置更多的版本信息,在這裏就很少說了,有興趣的朋友能夠進一步研究一下 -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<mybatis-spring-boot.version>1.2.0</mybatis-spring-boot.version>
<mysql-connector.version>5.1.39</mysql-connector.version>
</properties>
<!-- 下面咱們就要引入相關的jar包了 -->
<dependencies>
<!-- springboot 基礎包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- springboot web 包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- springboot web開發thymeleaf模板 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- 截止到這裏,其實咱們已經能夠完成一個springboot的入門案例了。 我就不往下配置更多的依賴了-->
</dependencies>web
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>spring
在配置完pom文件以後,有時候咱們會發現咱們的工程有報錯的狀況。而後在Problems視圖下看見以下信息:sql
看到這不用着急:它提示咱們:Project configuration is not up-to-date with pom.xml. Select: Maven->Update Project... from the project context menu or use Quick Fix.數據庫
所以咱們只要點擊咱們的工程->右鍵,點擊maven->點擊update project等待jar包更新完畢,就能夠了。apache
package com.gc.dean;瀏覽器
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;tomcat
/**
* 程序啓動類
* @author dean
*
*/
@SpringBootApplication
public class App {
public static void main(String[] args) {
SpringApplication.run(App.class, args);
}
}springboot
注:在這裏咱們加入了@SpringBootApplication這個註解(不能少)
package com.gc.dean.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class UserController {
@RequestMapping("/hello")
public String login() {
return "hello dean";
}
}
①運行第三步咱們寫的主類裏的main方法。
②打開瀏覽器輸入上方地址
OK,到這裏咱們的一個springboot入門級應用程序就結束了。你也來試一試吧