08 2022 档案
摘要:在后台对前端提交的参数验证是必须的。Spring Boot 内置了相关参数校验。 1、添加依赖 使用的是Spring Boot 2.7版本,经过测试需要安装 spring-boot-starter-validation 依赖。如果 pom 没有从 parent 继承,需要添加版本号。 <depend
阅读全文
摘要:springboot 版本为 2.7,利用websocket向前端推送数据,配置如下; 1、添加依赖: <dependency> <groupId>org.springframework</groupId> <artifactId>spring-websocket</artifactId> </de
阅读全文
摘要:在SpringBoot项目中,使用 @RequestParam和 @RequestBody解析http请求中的参数: @RequestParam 用于 url查询字符串、form-data、和 x-www-form-urlencoded参数格式解析。 @RequestBody 用于applicati
阅读全文