05 2018 档案
摘要:转载自:https://blog.csdn.net/u012161134/article/details/51439217 在使用Eclipse编写JavaWeb项目时,突然遇到了这样一个error: An internal error has occurred.Widget is disposed
阅读全文
摘要:转载自:https://blog.csdn.net/james_wade63/article/details/50772041 跨域是指html文件所在的服务器与ajax请求的服务器是不同的ip+port,例如: - ‘192.168.1.1:8080’ 与 ‘192.168.1.2:8080’是不
阅读全文
摘要:转载自:http://www.infoq.com/cn/news/2011/01/nosql-why 【编者按】NoSQL在2010年风生水起,大大小小的Web站点在追求高性能高可靠性方面,不由自主都选择了NoSQL技术作为优先考虑的方面。今年伊始,InfoQ中文站有幸邀请到凤凰网的孙立先生,为大家
阅读全文
摘要:Mybatis 中$与#的区别 1 #是将传入的值当做字符串的形式,eg:select id,name,age from student where id =#{id},当前端把id值1,传入到后台的时候,就相当于 select id,name,age from student where id =
阅读全文
摘要:转载自:https://www.cnblogs.com/gudi/p/6403953.html 1、强引用(StrongReference) 强引用是使用最普遍的引用。如果一个对象具有强引用,那垃圾回收器绝不会回收它。如下: 当内存空间不足,Java虚拟机宁愿抛出OutOfMemoryError错误
阅读全文