springboot01

目录

新建Maven工程,什么都不选

​pom.xml加上

新建包top.cjz.controller  新建类HelloController

​新建类HelloApplication

​运行浏览器访问


新建Maven工程,什么都不选

springboot01_第1张图片

springboot01_第2张图片 pom.xml加上

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

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

   

springboot01_第3张图片 

新建包top.cjz.controller  新建类HelloController

package top.cjz.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {
    @RequestMapping("/hello")
    public String hello(){
        return "Hello SpringBoot";
    }
}

springboot01_第4张图片 新建类HelloApplication

package top.cjz;

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

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

springboot01_第5张图片 运行浏览器访问

springboot01_第6张图片

springboot01_第7张图片 

你可能感兴趣的:(SSM+SpringBoot,java,前端,spring)