_003_SpringBoot_使用IDEA快速建立一個SpringBoot專案

VeryHotLight發表於2018-07-30

來自https://blog.csdn.net/lom9357bye/article/details/69677120,感謝作者的無私分享。

1.開啟IDEA,建立新專案,選擇Spring Initializr

 

2.輸入Artifact

 

 

3.勾選Web

 

4.點選finish完成

 

5.進入專案,可以將以下內容刪除

pom.xml檔案:


 

[html] view plain copy

  1. <code class="language-html"><?xml version="1.0" encoding="UTF-8"?>  
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
  4.     <modelVersion>4.0.0</modelVersion>  
  5.   
  6.     <groupId>com.example</groupId>  
  7.     <artifactId>springbootdemo</artifactId>  
  8.     <version>0.0.1-SNAPSHOT</version>  
  9.     <packaging>jar</packaging>  
  10.   
  11.     <name>springbootdemo</name>  
  12.     <description>Demo project for Spring Boot</description>  
  13.   
  14.     <!--起步依賴-->  
  15.     <parent>  
  16.         <groupId>org.springframework.boot</groupId>  
  17.         <artifactId>spring-boot-starter-parent</artifactId>  
  18.         <version>1.5.2.RELEASE</version>  
  19.         <relativePath/> <!-- lookup parent from repository -->  
  20.     </parent>  
  21.   
  22.     <properties>  
  23.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
  24.         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>  
  25.         <java.version>1.8</java.version>  
  26.     </properties>  
  27.   
  28.     <dependencies>  
  29.         <!--開發web專案相關依賴-->  
  30.         <dependency>  
  31.             <groupId>org.springframework.boot</groupId>  
  32.             <artifactId>spring-boot-starter-web</artifactId>  
  33.         </dependency>  
  34.         <!--springboot單元測試-->  
  35.         <dependency>  
  36.             <groupId>org.springframework.boot</groupId>  
  37.             <artifactId>spring-boot-starter-test</artifactId>  
  38.             <scope>test</scope>  
  39.         </dependency>  
  40.     </dependencies>  
  41.   
  42.     <!--maven構建-->  
  43.     <build>  
  44.         <plugins>  
  45.             <plugin>  
  46.                 <groupId>org.springframework.boot</groupId>  
  47.                 <artifactId>spring-boot-maven-plugin</artifactId>  
  48.             </plugin>  
  49.         </plugins>  
  50.     </build>  
  51.   
  52.   
  53. </project>  
  54. </code>  


 

6.建立一個HelloController

 


 
  1. package com.example;

  2.  
  3. import org.springframework.web.bind.annotation.RequestMapping;

  4. import org.springframework.web.bind.annotation.RestController;

  5.  
  6. @RestController

  7. public class HelloController {

  8.  
  9. @RequestMapping("/hello")

  10. public String hello() {

  11. return "hello,this is a springboot demo";

  12. }

  13. }

 

 

7.程式自動生成的SpringbootdemoApplication,會有一個@SpringBootApplication的註解,這個註解用來標明這個類是程式的入口

 


 
  1. package com.example;

  2.  
  3. import org.springframework.boot.SpringApplication;

  4. import org.springframework.boot.autoconfigure.SpringBootApplication;

  5.  
  6. //入口

  7. @SpringBootApplication

  8. public class SpringbootdemoApplication {

  9.  
  10. public static void main(String[] args) {

  11. SpringApplication.run(SpringbootdemoApplication.class, args);

  12. }

  13. }

 

@SpringBootApplication開啟了Spring的元件掃描和springboot的自動配置功能,相當於將以下三個註解組合在了一起

(1)@Configuration:表名該類使用基於Java的配置,將此類作為配置類

(2)@ComponentScan:啟用註解掃描

(3)@EnableAutoConfiguration:開啟springboot的自動配置功能

 

8.執行SpringbootdemoApplication類

 

測試:

在位址列中輸入http://localhost:8080/hello

 

 

9.使用啟動jar包的方式啟動

(1)首先進入專案所在目錄,如果是mac系統在專案上右鍵,選擇Reveal in Finder,Windows系統在專案上右鍵選擇Show in Explorer,即可開啟專案所在目錄

(2)開啟終端,進入專案所在目錄

 

     cd /Users/shanml/IdeaProjects/SpringbootDemo

     輸入mvn install,構建專案

(3)構建成功後,在專案target資料夾下會多出一個jar包

(4)使用java -jar springbootdemo-0.0.1-SNAPSHOT.jar 

     啟動jar包即可

 

 

相關文章