上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 68 下一页
摘要: public List<WeixinMenu> getList() { List<WeixinMenu> weixinMenuList= (List<WeixinMenu>) redisTemplate.opsForValue().get("weixinMenuList"); //先在缓存中查询一遍 阅读全文
posted @ 2020-03-13 13:58 yvioo 阅读(523) 评论(0) 推荐(0) 编辑
摘要: package test; import org.apache.shiro.codec.Base64; import javax.crypto.KeyGenerator; import javax.crypto.SecretKey; import java.security.NoSuchAlgori 阅读全文
posted @ 2020-03-13 12:58 yvioo 阅读(7136) 评论(0) 推荐(0) 编辑
摘要: java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to [Ljava.lang.String; java将Object[]转换为String[] list.toArray(new String[0]); 阅读全文
posted @ 2020-03-12 21:48 yvioo 阅读(10517) 评论(0) 推荐(1) 编辑
摘要: 1、数组转List String[] arr = new String[]{"A", "B", "C"}; List list = Arrays.asList(arr); //返回固定大小,不能做add和remove等操作 2、数组转Set String[] arr= new String[]{"A 阅读全文
posted @ 2020-03-12 17:18 yvioo 阅读(9379) 评论(0) 推荐(0) 编辑
摘要: 输入npm install 报以下错误 npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! node-sass@4.13.1 postinstall: `node scripts/build.js` npm ERR! Exit status 1 np 阅读全文
posted @ 2020-03-08 18:34 yvioo 阅读(28842) 评论(1) 推荐(6) 编辑
摘要: 1、修改vimrc文件 vim /etc/vimrc 2、在最后添加 set nu 如下图片所示 然后wq! 保存退出 阅读全文
posted @ 2020-03-04 20:09 yvioo 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986 at org.ap 阅读全文
posted @ 2020-03-03 13:31 yvioo 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 报错原因意思是说:mysql5.7版本中有了一个STRICT mode(严格模式),而在此模式下默认是不允许设置日期时间的值为全0值的,所以想要 解决这个问题,就需要修改sql_mode的值。 修改全局设置 mysql> set @@global.sql_mode=(select replace(@ 阅读全文
posted @ 2020-03-02 19:25 yvioo 阅读(1107) 评论(0) 推荐(0) 编辑
摘要: 这里使用you-get工具进行下载 github地址:https://github.com/soimort/you-get/ github项目文档:https://github.com/soimort/you-get/wiki/%E4%B8%AD%E6%96%87%E8%AF%B4%E6%98%8E 阅读全文
posted @ 2020-02-28 22:21 yvioo 阅读(2356) 评论(0) 推荐(0) 编辑
摘要: 1、修改配置文件 vim /etc/my.cnf 在[mysqld]节点下,加入一行: lower_case_table_names=1 2、重启数据库服务 service mysqld restart 没有启动服务时 service mysqld start 阅读全文
posted @ 2020-02-26 18:00 yvioo 阅读(1670) 评论(0) 推荐(0) 编辑
上一页 1 ··· 53 54 55 56 57 58 59 60 61 ··· 68 下一页