Sun浅雨
Sun浅雨
全部文章
spring
2019蓝桥训练(1)
c/c++(13)
Docker学习(2)
java基础学习(13)
Linux 学习(4)
springboot(3)
并发编程学习(2)
数据结构与算法(3)
归档
标签
去牛客网
登录
/
注册
Sun浅雨的博客
非学,无以致疑;非问,无以广识
全部文章
/ spring
(共4篇)
ssm中前台访问后台接口时传入的数据乱码问题
错误描述: 使用postman访问后台接口时,明明传入的数据格式是正确的,但后台接收到的数据乱码了 解决方法: 在pom依赖文件中的buid配置中加入配置 < uriEncoding>UTF-8< /uriEncoding> 案例: 重新运行...
2019-08-13
0
438
ssm运行时报错:No converter found for return value of type解决方法
最近在学习SpringMVC过程中,Controller能访问到接口,就是一直报错:错误日志很长,在这里只列出部分吧 No converter found for return value of type: 出错原因:返回JSON时没有引入解析JSON的相关包,解决方案: 解决方案: pom...
ssm
json
2019-08-13
0
650
运行时报错Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException:
今天在测试SSM接口时,出现了如下错误: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'itemSearchController': Unsatisf...
ssm
web开发
2019-08-12
0
1174
Spring Data Redis入门小Demo
1.准备工作 (1)构建Maven工程 SpringDataRedisDemo (2)引入Spring相关依赖、引入JUnit依赖 (3)引入Jedis和SpringDataRedis依赖 <!-- Spring --> <dependency> <...
2019-05-20
0
549