搭建一个最简单的springboot项目

1.先搭建一个maven项目。

2.然后修改pom.xml如下图:



    4.0.0

    com.sxb
    singlespringboot
    1.0-SNAPSHOT
    
        org.springframework.boot
        spring-boot-starter-parent
        1.5.6.RELEASE
        
    

    
    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            javax.servlet
            javax.servlet-api
        
    


3.然后编写一个测试类进行测试,如下:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

/**
 * Created by sxb-gt on 2017/12/28.
 */
@RestController
@EnableAutoConfiguration
public class Example {
    @RequestMapping(value ="/home", method = RequestMethod.GET)
    @ResponseBody
    public String home(){
        return "你好,Spring Boot";
    }

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

    }

}

注意:类的上面一定要加@EnableAutoConfiguration,否则启动会报错。

4.执行测试类中的main方法,控制台输出没有异常,则代表启动成功。

5.访问  http://localhost:8080/home/


你可能感兴趣的:(springboot)