第一个SpringBoot程序

2022/2/21 1:30:30

本文主要是介绍第一个SpringBoot程序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.新建一个Spring Initializr项目

基本配置

image

依赖支持

image
之后就是Maven自动导包,第一次创建会比较慢,以后创建就快了

2.了解项目目录

image

3.运行项目

直接点击运行,项目就可以运行了。不需要过多的配置

image

我们什么都没有配置,默认的界面如下

image

4.新建一个Controller接口

Controller(包括其他的)包要建在与程序主入口的同一个文件夹下
image
编写一个Controller接口

package com.google.hellospringboot.Controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloControlle {

    @RequestMapping("/hello")
    public String hello(){
        return "hello,world";
    }
}

在网页输入http://localhost:8080/hello

image



这篇关于第一个SpringBoot程序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程