myeclipse下通過maven建立springboot

Liam_Fang_發表於2019-01-10

本人的環境jdk1.7   myeclipse10 ,maven 3.5

首先配置maven(前提是maven已經配置好)

 新建一個maven 專案。

 

 注意上面的第三步驟,不知為什麼我都安裝了jdk1.7,那個還是1.6,後面會進行修改。

完成之後得到的結果為

在pom.xml中加入

 <!-- Inherit defaults from Spring Boot -->
   <parent>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-parent</artifactId>
       <version>1.5.9.RELEASE</version>//這裡寫RELEASE,寫別的例如BUILD-SNAPSHOT可能會出錯
  </parent>

   <!-- Add typical dependencies for a web application -->
   <dependencies>
       <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-web</artifactId>
       </dependency>
   </dependencies>

    <plugin>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-maven-plugin</artifactId>
    </plugin>//這個需要在<plugins></plugins>外掛中

在java資料夾中新建HelloWorld檔案

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@SpringBootApplication // Spring Boot專案的核心註解,主要目的是開啟自動配置
@Controller // 標明這是一個SpringMVC的Controller控制器
public class HelloApplication {
	 @RequestMapping("/hello")
	    @ResponseBody
	    public String hello() {
	        return "hello world";
	    }

	    // 在main方法中啟動一個應用,即:這個應用的入口
	    public static void main(String[] args) {
	        SpringApplication.run(HelloApplication.class, args);
	    }
}

執行啟動或許會出錯,這裡需要改如下位置

右鍵點選HelloWorld專案進入properties

 

 這樣就好了,輸入http://localhost:8080/hello

相關文章