Spring
Scnu_wang
Keep learning and you will be closer to success!
展开
-
Spring task基本使用
不需要添加其他的jar,只要Spring相关的包即可:主要是spring-context包<dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <vers原创 2017-05-19 17:29:35 · 1011 阅读 · 0 评论 -
对象转换成Json字符串是时中文乱码
错误产生: 使用(Gson、FastJson)两个工具包直接将对象(包含中文)转换成Json字符串乱码: 解决办法:在Spring-MVC.xml配置文件添加以下配置,然后直接返回要生成Json串的对象 结果如下:原创 2017-06-16 15:18:18 · 20037 阅读 · 3 评论 -
Spring与Redis整合
第一步:redis设置密码: 打开redis.conf文件,搜索:requirepass找到:# requirepass foobared 去掉前面的#,然后将foobared替换成你的密码即可,然后重启Redis,在登录时通过 -a 参数指定密码, 当然也可以不指定密码,在操作的时候再指定密码(执行命令:auth “yourpassword”) 若master配置了密码则slave也要配置原创 2017-08-08 15:41:42 · 301 阅读 · 0 评论