
Web
ageovb
这个作者很懒,什么都没留下…
展开
-
【解决方法】 SpringBoot 整合 Redis 报错:Cannot resolve symbol ‘RedisTemplate‘
现象原因导入的 Redisjar 包不对,所以找不到 StringRedisTemplate 和 RedisTemplate 类。解决方法将 pom.xml 修改为:<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-redis --><dependency&g...原创 2020-04-26 06:57:15 · 9625 阅读 · 1 评论 -
【解决方法】docker创建容器报错No chain/target/match by that name.
重启docker即可。root@192.168.0.113:~# docker run -d -p 8888:8080 tomcat0e2726f62e01b45a812e04dd4d28f41088c17c343d7f9c575c0b479cfac5125a/usr/bin/docker-current: Error response from daemon: driver failed ...原创 2020-04-22 17:59:41 · 759 阅读 · 0 评论 -
【教程】SpringBoot 2.x 使用外置Servlet容器(Tomcat)
1、项目结构2、代码HelloController.java:@Controllerpublic class HelloController { @GetMapping("/abc") public String hello(Model model){ model.addAttribute("msg","你好"); return "s...原创 2020-04-22 14:59:08 · 473 阅读 · 0 评论 -
【解决方法】SpringBoot删除表单报错:Request method 'POST' not supported
目录现象原因解决方法现象按照这篇文章写表单删除报错如下:2020-04-21 08:32:59.502 WARN 8972 --- [nio-8080-exec-6] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpRequestMethodNotSupportedExcep...原创 2020-04-21 10:39:57 · 1045 阅读 · 5 评论