web开发-springboot-web

在这里插入图片描述
报错:
Failure to find org.springframework.boot:spring-boot-starter-parent:pom:3.2.1.RELEASE in https://maven.aliyun.com/nexus/content/groups/public was cached in the local repository, resolution will not be reattempted until the update interval of alimaven has elapsed or updates are forced
将RELEASE删除 再刷新maven
在这里插入图片描述

Error:(3, 47) java: 无法访问org.springframework.web.bind.annotation.RequestMapping
错误的类文件: /D:/devlop/Maven/apache-maven-3.9.0/mvn-resp/org/springframework/spring-web/6.1.2/spring-web-6.1.2.jar!/org/springframework/web/bind/annotation/RequestMapping.class
类文件具有错误的版本 61.0, 应为 52.0
请删除该文件或确保该文件位于正确的类路径子目录中。
原因是jdk1.8与springboot3.x.x版本不匹配,把对应的springboot版本降版本即可。

HTTP(超文本传输协议) 浏览器和服务器之间数据传输的规则。
基于TCP 面向连接 安全
基于请求-响应模型的
HTTP是无状态协议
缺点:多次请求间不能共享数据
请求行 (请求方式 get post)
请求头
请求体 (post请求,存放请求参数,没有大小限制 )
get请求参数在请求行
web开发-springboot-web_第1张图片
web开发-springboot-web_第2张图片
web开发-springboot-web_第3张图片
开源免费的轻量级web服务器 Tomcat 提供网上信息浏览
支持Servlet/jsp
web开发-springboot-web_第4张图片
起步依赖
在这里插入图片描述

你可能感兴趣的:(前端,spring,boot,后端)