springboot快速入门程序

环境准备

IDEA

maven

一.创建工程

1.创建一个普通的java maven 工程

springboot快速入门程序_第1张图片

2.选择maven  选择下一步

springboot快速入门程序_第2张图片

3.设置你的工程名,下一步

springboot快速入门程序_第3张图片

4.选择好大的工程包,点击完成

springboot快速入门程序_第4张图片

5.选择在新的窗口打开建好的工程

springboot快速入门程序_第5张图片

6.选择自动,米面手动配置的麻烦

springboot快速入门程序_第6张图片

 

二.添加Springboot的起步依赖(pom.xml)



    4.0.0

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

    com.alibaba
    springboot_demo01
    1.0-SNAPSHOT


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

    

三.编写Springboot的引导类

1.在工程的java目录新建springboot的引导类   com.alibaba.MySpringBootApplication

springboot快速入门程序_第7张图片

代码如下

package com.alibaba;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * @author Jiapeng Pang
 * @Position 大数据工程师
 * @date 2019/8/10 16:45.
 */
@SpringBootApplication
public class MySpringBootApplication {

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



}

启动main方法

springboot快速入门程序_第8张图片

访问浏览器

springboot快速入门程序_第9张图片

四.编写Controller

1.在com.alibaba下面新建controller包,创建 MyController.class

springboot快速入门程序_第10张图片

2.编写代码

package com.alibaba.controller;

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

/**
 * @author Jiapeng Pang
 * @Position 大数据工程师
 * @date 2019/8/10 16:57.
 */
@Controller
@ResponseBody
public class MyController {

    @RequestMapping(value = "/testBrow")
    public String testBrow(){
        return "springboot访问成功!";
    }


}

浏览器输入地址http://localhost:8080/testBrow再次测试

springboot快速入门程序_第11张图片

-------------------------------------------------------------------------------------------------------

在顺利时埋头前行

在挫败时不忘初心

你可能感兴趣的:(springboot)