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

网友投稿 204 2022-10-27


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

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

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

3.勾选Spring Web,再点击Next

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

(1)修改pom.xml文件

完整的pom.xml为:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

org.springframework.boot

spring-boot-starter-parent

2.4.5

comhttp://.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

<groupId>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的入门程序就完成了。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Zabbix+shell监控报警任意web
下一篇:如何在Kubernetes中暴露服务访问
相关文章

 发表评论

暂时没有评论,来抢沙发吧~