上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页

2018年11月25日

为什么数据库表的int类型字段映射到实体类中要使用Integer类型,而不是int类型?

摘要: 如果返回字段值为null,int类型会报错,Integer不会报错。因为int类型声明的是变量,而null是对象所以会报错。Integer是包装类,包装类符合对象的特征并提供了一些必要的属性和方法。 int类型的默认值为0,Integer类型的默认值为null。 如果返回字段值为null,int类型 阅读全文

posted @ 2018-11-25 11:30 CreatorKou 阅读(982) 评论(0) 推荐(1) 编辑

2018年11月23日

彻底解决mysql中文乱码 eclipse中文乱码 jdbc乱码 各种乱码。。。

摘要: eclipse默认字符集 将eclipse默认字符集更改为utf-8 window->preference->general->workspace:编码:utf8 mysql默认字符集 查看mysql当前字符集: cmd连接mysql之后, show variables like '%char%'; 阅读全文

posted @ 2018-11-23 11:16 CreatorKou 阅读(583) 评论(0) 推荐(0) 编辑

2018年11月21日

spring-framework-3.0.2-dependencies下载地址

摘要: 由于license原因,dependencies很难找到。。。。。。 stackoverflow:1down vote Some of the older releases still have -with-dependencies.zip files that you can download. 阅读全文

posted @ 2018-11-21 19:07 CreatorKou 阅读(3029) 评论(0) 推荐(0) 编辑

dos命令:tree /f

摘要: DOS中打印目录树到文件 1 DOS中打印目录树到文件 2 3 4 5 分步阅读 2 3 4 5 2 3 4 5 DOS中打印目录树到文件 使用命令tree实现,然后重定向(>和>>)输出到文件 tree /?显示tree命令帮助 /F 显示每个文件夹中文件的名称。 /A 使用 ASCII 字符,而 阅读全文

posted @ 2018-11-21 11:38 CreatorKou 阅读(2271) 评论(0) 推荐(0) 编辑

2018年11月20日

java JUnit,TestCase,TeseSuit,合成模式(安全/透明),对象间的关系(依赖,关联,聚合,组合)

摘要: JUnit,TestCase,TeseSuit: https://www.tutorialspoint.com/junit/junit_suite_test.htm https://www.jianshu.com/p/c9a267d691e2 https://blog.csdn.net/lan123 阅读全文

posted @ 2018-11-20 21:03 CreatorKou 阅读(114) 评论(0) 推荐(0) 编辑

maven学习

摘要: http://maven.apache.org/guides/getting-started/index.html#How_do_I_make_my_first_Maven_project 阅读全文

posted @ 2018-11-20 10:13 CreatorKou 阅读(87) 评论(0) 推荐(0) 编辑

2018年11月19日

java抽象类实现接口可以不用实现方法

摘要: 学习struts2时,拦截器接口Interceptor继承了Serializable接口,拦截器抽象类AbstractInterceptor实现了Interceptor接口,在AbstractInterceptor类中却没有声明或定义Serializable中的writeobject等其他方法 ht 阅读全文

posted @ 2018-11-19 19:31 CreatorKou 阅读(3264) 评论(0) 推荐(0) 编辑

尝鲜centos7_1804(和6版本的命令有一些区别)

摘要: 问题太多了,,, https://blog.csdn.net/anbulang/article/details/8057536 https://blog.csdn.net/vevenlcf/article/details/78297008 在虚拟机中以最小化方式安装centos7,后无法上网,因为c 阅读全文

posted @ 2018-11-19 12:00 CreatorKou 阅读(937) 评论(0) 推荐(0) 编辑

eclipse自动填写提示代码设置(syso:system.out.println())

摘要: windows->preferences->java->editor->content assist 2. 在目录树上选择"Java——Editor——Content Assist",在右侧的"Auto-Activation"找到"Auto Activation triggers for java" 阅读全文

posted @ 2018-11-19 10:41 CreatorKou 阅读(1170) 评论(0) 推荐(0) 编辑

2018年11月18日

redis3.2.100在windows不支持daemonize命令后台启动

摘要: 阅读全文

posted @ 2018-11-18 17:44 CreatorKou 阅读(1204) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页

导航