Spring Boot框架初步使用

开始

1 使用Eclipse 开发工具搭建一个maven project的项目

2 在pom里面添加 spring boot的包依赖

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.2.1.RELEASE</version>
</parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>  

3创建一个Controller 

package hello;

import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;

@Controller
@EnableAutoConfiguration
public class SampleController {

    @RequestMapping("/")
    @ResponseBody
    String home() {
        return "Hello World!";
    }

    public static void main(String[] args) throws Exception {
        SpringApplication.run(SampleController.class, args);
    }
}
到目前为止  一个web项目就搭建完成了。


4 运行 SampleController 里面的main方法就相当于部署在web服务器下面运行了,  由于springboot里面内战了 web服务器, 所以不需要部署在tomcat下面。

5  输入http://localhost:8080访问    你就会看到Hello World的 输出了。




你可能感兴趣的:(Spring Boot框架初步使用)