1. 程式人生 > >在IDEA中建立第一個Spring Boot應用

在IDEA中建立第一個Spring Boot應用

1.建立springboot專案

Next後邊的步驟都是平時用的,這裡就不再放圖出來了

2.編寫一個簡單程式碼進行測試

在SpringbootApplication.java中:

package cn.ysjh.springboot2;

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

@SpringBootApplication
@Controller
@Configuration
public class SpringbootApplication {

    @RequestMapping("hello")
    @ResponseBody
    public String hello(){
        return "hello ys!";
    }

    public static void main(String[] args) {
        SpringApplication.run(Springboot2Application.class, args);
    }
    }

註解說明:

@SpringBootApplication:Spring Boot專案的核心註解,主要目的是開啟自動配置

@Configuration:這是一個配置Spring的配置類

@Controller:標明這是一個SpringMVC的Controller控制器

3.執行

直接執行SpringbootApplication.java中的main方法

4.在瀏覽器中檢視

輸入   localhost:8080/hello   就可以看到效果