10 2021 档案
摘要:1.考虑一下网上说的post get @RequestBody只支持POST请求,GET请求不能使用@RequestBody,修改GET请求为POST即可,如果需要使用GET请求,可以使用@RequestParam和@PathVariable 2.我的是因为:接收的实体类定义的是:String,结果
阅读全文
摘要:SpringBoot自带schedule 1.依赖 <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-quartz</artifactId></dependency> 2.代码
阅读全文