
代码
文章平均质量分 61
Vincent丶T
这个作者很懒,什么都没留下…
展开
-
JacksonUtils
spring boot还是继续用jackson搭配吧,不然要改的东西太多了。原创 2022-09-01 10:05:04 · 194 阅读 · 1 评论 -
springboot实现转发和重定向
1、转发方式一:使用 “forword” 关键字(不是指java关键字),注意:类的注解不能使用@RestController 要用@Controller@RequestMapping(value="/test/test01/{name}" , method = RequestMethod.GET)public String test(@PathVariable String name) { return "forword:/ceng/hello.html";}方式二:使用servlet原创 2021-01-17 22:16:22 · 4849 阅读 · 3 评论