maven+eclipse创建第一个spring-boot项目

1.创建Maven项目

maven+eclipse创建第一个spring-boot项目_第1张图片
image.png

2.选择项目类型

maven+eclipse创建第一个spring-boot项目_第2张图片
image.png

3.选择项目

maven+eclipse创建第一个spring-boot项目_第3张图片
image.png

4.编写项目组和名称-finish即可

maven+eclipse创建第一个spring-boot项目_第4张图片
image.png

5.修改pom.xml文件



    org.springframework.boot
    spring-boot-starter-parent
    1.5.6.RELEASE

maven+eclipse创建第一个spring-boot项目_第5张图片
image.png

6.pom.xml中添加依赖



    org.springframework.boot
    spring-boot-starter-web

maven+eclipse创建第一个spring-boot项目_第6张图片
image.png

7.pom.xml中添加编译插件


    
        
        
            org.springframework.boot
            spring-boot-maven-plugin
        
    

maven+eclipse创建第一个spring-boot项目_第7张图片
image.png

8.基础包和类

maven+eclipse创建第一个spring-boot项目_第8张图片
image.png

9.App.java

package com.shuai.spring_boot_1;

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);
    }
}
maven+eclipse创建第一个spring-boot项目_第9张图片
image.png

10.OneController.java

package com.shuai.spring_boot_1.web;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class OneController {

    @RequestMapping("/")
    @ResponseBody
    public String index(){
        return "hello spring boot";
    }
}
maven+eclipse创建第一个spring-boot项目_第10张图片
image.png

11.启动项目

运行 App.java 中的 main方法

12.访问项目

http://localhost:8080/
会访问到 OneController.java 中的index方法

你可能感兴趣的:(maven+eclipse创建第一个spring-boot项目)