#安裝外掛程式導向視窗完成後,在eclipse右下角將會出現安裝外掛程式的進度,等外掛程式安裝完成後重新啟動eclipse生效
##專案啟動
方法二1.建立Maven專案
2.選擇專案類型
##3.選擇專案 4.寫專案組與名稱-finish即可 #5.修改pom.xml檔<!-- spring boot基本环境 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.2.RELEASE</version> </parent>6.pom.xml中新增依賴
<!--web应用基本环境配置 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>#7.pom.xml中新增編譯外掛
<build> <plugins> <!-- spring-boot-maven-plugin插件就是打包spring boot应用的 --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins </build>8.基礎套件與類別 #9.建立resources資料夾與application.properties檔案
################################################################################################################################## ########10.App.java###
package com.springboot.springbootDemo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class App { public static void main( String[] args ) { SpringApplication.run(App.class, args); } }#############11.HelloController.java###
package com.springboot.springbootDemo.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("hello2") public class HelloController { @RequestMapping("") public String hello() { return "helloworld2"; } }############ 12.啟動項目###############13.存取項目(低版本可能無法存取,2版本可用)######http://localhost:8012/hello2# #################方法三#############訪問http://start.spring.io/############################################################### ##########點選Generate Project下載專案壓縮包######解壓縮後,使用eclipse,Import -> Existing Maven Projects -> Next ->選擇解壓縮後的資料夾- > Finsh,OK done!###
以上是eclipse建立springboot專案的方式有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!