会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
大圣
孤独是上帝在提醒你,该充实自己了!!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
19
下一页
2019年5月27日
Java8 根据对象某个属性值去重
摘要: list中的对象某个属性存在重复时将重复的对象去重
阅读全文
posted @ 2019-05-27 15:32 大大大圣
阅读(9278)
评论(0)
推荐(1)
2019年5月21日
Caused by: com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'name': was expecting ('true', 'false' or 'null')
摘要: Caused by: com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'name': was expecting ('true', 'false' or 'null') 参数有问题,不能解析成json对象 ajax提
阅读全文
posted @ 2019-05-21 16:42 大大大圣
阅读(1963)
评论(0)
推荐(0)
2019年4月17日
Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException
摘要: 问题的根源是出现bean名称重复 原因: 1.两个bean名称重复,spring扫描无法创建bean对象(有时候会与引入的第三方的jar包中的bean名称重复); 2.target中有缓存导致,Maven项目clean下再编译
阅读全文
posted @ 2019-04-17 10:38 大大大圣
阅读(1610)
评论(0)
推荐(0)
2019年4月11日
idea 设置svn忽略 .idea内的文件
摘要: 从ToolView中打开 Version Control -> Local Changes 中的Default ChangesList里面的文件全选中右键选择 Move to Another Changes List...选项后重新新建一个, 为区分 起名为 ignore
阅读全文
posted @ 2019-04-11 11:12 大大大圣
阅读(2443)
评论(0)
推荐(0)
2019年4月10日
使用JDBC连接MySql时出现:The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration
摘要: 在连接字符串后面加上?serverTimezone=UTC 其中UTC是统一标准世界时间。 完整的连接字符串示例:jdbc:mysql://localhost:3306/test?serverTimezone=UTC 或者还有另一种选择:jdbc:mysql://127.0.0.1:3306/tes
阅读全文
posted @ 2019-04-10 09:56 大大大圣
阅读(196)
评论(0)
推荐(0)
2019年3月7日
问题:SpringBoot访问不到Controller
摘要: SpringBoot正常启动,其它配置都正常,以下是控制台打印: 解决方法: 将controller与application配置文件同层,是访问时无法扫描到相应的controller,故无法映射到相应地址
阅读全文
posted @ 2019-03-07 22:49 大大大圣
阅读(4594)
评论(0)
推荐(0)
2019年3月4日
JAVA 并发编程-多个线程之间共享数据
摘要: 原文地址:http://blog.csdn.net/hejingyuan6/article/details/47053409# 多线程共享数据的方式: 1,如果每个线程执行的代码相同,可以使用同一个Runnable对象,这个Runnable对象中有那个共享数据,例如,卖票系统就可以这么做。 2,如果
阅读全文
posted @ 2019-03-04 23:09 大大大圣
阅读(10565)
评论(0)
推荐(2)
2018年10月11日
Data时间格式化
摘要: //时间戳转时间 function timeStamp2String(time) { var datetime = new Date(); datetime.setTime(time); var year = datetime.getFullYear(); var month = datetime.getMonth() + 1 < 10 ? "0" + (datetime.get...
阅读全文
posted @ 2018-10-11 17:39 大大大圣
阅读(1461)
评论(0)
推荐(0)
2018年7月6日
wow.js中各种特效对应的类名(滚动效果)
摘要: 1、wow.js依赖于animate.css,首先在头部引用animate.css或者animate.min.css。 <link rel="stylesheet" type="text/css" href="css/animate.min.css"> 2、在最底部引用wow.js或者wow.min
阅读全文
posted @ 2018-07-06 17:16 大大大圣
阅读(2391)
评论(0)
推荐(0)
2018年7月3日
iconfont 在项目中的简单使用
摘要: font-class引用 font-class是unicode使用方式的一种变种,主要是解决unicode书写不直观,语意不明确的问题。 与unicode使用方式相比,具有如下特点: 兼容性良好,支持ie8+,及所有现代浏览器。 相比于unicode语意明确,书写更直观。可以很容易分辨这个icon是
阅读全文
posted @ 2018-07-03 15:00 大大大圣
阅读(1516)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
19
下一页
公告