自学内容网 自学内容网

springboot程序快速入门

1.新建springboot项目

一上来输入项目名字
语言选java
Type选Maven
jdk 1.8
java选8
packaging选jar 

选择对应的springboot版本2.6.13
Web里面勾上Spring Web

 

 点击创建即可。

2.手工编辑一个控制器 

 

手动创建一个Controller类:

 

package com.example.springbootgate.controller;

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

@RestController
@RequestMapping("books")
public class BookCotroller {
    @GetMapping("/{id}")
    public String getById(@PathVariable Integer id)
    {
        System.out.println("id:"+id);
        return "hello , spring boot!";
    }

}

 

3.启动服务器 

        运行 SpringBoot 工程不需要使用本地的 Tomcat 和 插件,只运行项目包下的 Application 类,我们就可 以在控制台看出如下信息。

 

正常运行Application这个java类即可 。

 

4.测试一下 

记住我们的端口号 

 

打开postman 

输入访问路径:

http://localhost:8080/books/1 

 

后台返回的数据也是正确的。

完成! 

 


原文地址:https://blog.csdn.net/weixin_65866298/article/details/145167127

免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!