热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

使用springboot开发的第一个web入门程序的实现

这篇文章主要介绍了使用springboot开发的第一个web入门程序的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

1.新建一个springboot初始化项目

在这里插入图片描述

2.输入自己的包名,项目名及jdk版本,再点击Next

在这里插入图片描述

3.勾选Spring Web,再点击Next

在这里插入图片描述

4.再点击Next,再Finish 默认的项目结构如下图

在这里插入图片描述

(1)修改pom.xml文件

在这里插入图片描述

完整的pom.xml为:

<&#63;xml version="1.0" encoding="UTF-8"&#63;>

    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.4.5
         
    
    com.zou
    springboot_demo
    0.0.1-SNAPSHOT
    springboot_demo
    Demo project for Spring Boot
    
        1.8
    
    
        
            org.springframework.boot
            spring-boot-starter-web
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        

        
            junit
            junit
            4.13.2
        

        
        
            org.springframework.boot
            spring-boot-devtools
        

        
        
            org.projectlombok
            lombok
            1.18.16
        

        
            org.springframework.boot
            spring-boot-configuration-processor
            true
        


    


(2)新建一个ControllerDemo类

在这里插入图片描述

ControllerDemo的代码如下

package com.zou.controller;

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

/**
 * @author: 邹祥发
 * @date: 2021/4/19 17:12
 * springBoot启动程序的目录一定要在controller等目录的至少上一级,或者在SpringBootApplication 注解中添加属性:
 * @SpringBootApplication(scanBasePackages = {"com.zou.controller"})
 */
@RestController
public class ControllerDemo {

    @RequestMapping("/demo")
    public String demo(){
        return "小邹太帅了";
    }

}

注:springBoot启动程序的目录一定要在controller等目录的至少上一级,或者在SpringBootApplication 注解中添加属性:

在这里插入图片描述

@SpringBootApplication(scanBasePackages = {"com.zou.controller"})

(3)在application.properties中修改端口号

在这里插入图片描述

server.port=8081

(4)测试

在这里插入图片描述

(5)打开浏览器,访问http://localhost:8081/demo,因为在之前的ControllerDemo里面配置的访问路径为/demo

在这里插入图片描述

(6)到这里第一个springboot开发web的入门程序就完成了。

到此这篇关于使用springboot开发的第一个web入门程序的实现的文章就介绍到这了,更多相关springboot web入门 内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!


推荐阅读
author-avatar
直拍之横打
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有