使用maven建立spring-boot專案
阿新 • • 發佈:2019-02-12
前期準備
建立maven專案
1.eclipse: file->new->maven project
2.選擇建立的版本。
3.輸入Group Id 和Artifact Id。
Group Id代表的是公司組織名稱 Artifact Id 表示的當前專案的名稱
4.點選Finish即可建立一個maven專案。
構建成Spring Boot的專案目錄
1.在src/main/java原始檔夾上右鍵,選擇new->Source Folder。新建一個src/main/resources原始碼資料夾。如下圖所示:
2.在src/main/resources原始碼資料夾上右鍵,選擇new->folder。新建以下幾個資料夾,static和templates。
3.在src/main/resources資料夾下建立application.properties檔案。
4.在pom.xml中加入依賴配置引數。
<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>PersonalDemo</groupId>
<artifactId>SpringBootDemo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>SpringBootDemo</name>
<url>http://maven.apache.org</url>
<properties >
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.3.RELEASE</version>
<relativePath />
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
5.建立啟動類。SpringBootApplication.java
package PersonalDemo.SpringBootDemo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.SpringBootConfiguration;
@SpringBootConfiguration
public class SpringBootApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootApplication.class, args);
}
}
6.建立測試TestController
package PersonalDemo.SpringBootDemo.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
@RequestMapping("test")
public String test(){
return "test";
}
}
7.右鍵SpringBootApplication類,選擇run as->Spring boot app。啟動成功介面。
8.測試請求/test。
總結
以上即完成了一個Spring boot的簡單環境搭建,可以結合自己的專案需求加入不同的服務。