摘要: http://www.oracle.com/technetwork/java/javase/archive 139210.html 阅读全文
posted @ 2015-11-01 18:03 KOYOU 阅读(375) 评论(0) 推荐(0) 编辑
摘要: Maven库: http://repo2.maven.org/maven2/ Maven依赖查询: http://mvnrepository.com/ maven 安装不测试 mvn install DskipTests 阅读全文
posted @ 2015-11-01 18:01 KOYOU 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1. Description<meta name="Description" content="1号店网上超市,最经济实惠的网上购物商城,用鼠标逛超市,不用排队,方便实惠送上门,网上购物新生活。" 阅读全文
posted @ 2015-10-22 16:39 KOYOU 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 查看选中数据库的字符集 use databasename; show variables like 'character_set_database'; 查看数据库能够支持的字符集 show char set; 阅读全文
posted @ 2015-10-22 14:56 KOYOU 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 下载链接 http://tomcat.apache.org/download 80.cgi cd /root tar zxvf apache tomcat 8.0.27.tar.gz cp r /root/apache tomcat 8.0.27 /usr/local/tomcat 启动tomc... 阅读全文
posted @ 2015-10-21 13:29 KOYOU 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 下载链接 http://www.oracle.com/technetwork/java/javase/downloads/index.html cd /root tar zxvf jdk 8u60 linux x64.tar.gz cp r /root/jdk1.8.0_60 /usr/local... 阅读全文
posted @ 2015-10-21 13:19 KOYOU 阅读(141) 评论(0) 推荐(0) 编辑
摘要: application/x www form urlencoded 这应该是最常见的 POST 提交数据的方式了。浏览器的原生 form 表单,如果不设置 enctype 属性,那么最终就会以 application/x www form urlencoded 方式提交数据。 请求类似于下面这样(... 阅读全文
posted @ 2015-10-18 22:09 KOYOU 阅读(191) 评论(0) 推荐(0) 编辑
摘要: mysql 里面可以用uuid()语句来生成一个UUID: select uuid(); 或 select replace(uuid(), ' ', ''); 直接在insert语句中插入UUID作主键的用法(简便): UUID UUID含义是通用唯一识别码 (Universally Un... 阅读全文
posted @ 2015-10-18 15:15 KOYOU 阅读(4749) 评论(0) 推荐(0) 编辑
摘要: http://bubkoo.com/2015/05/08/introduction to fetch/ 阅读全文
posted @ 2015-10-18 15:09 KOYOU 阅读(134) 评论(0) 推荐(0) 编辑
摘要: ```java public void getRemoteId(HttpServletRequest request,Model model){ String name = request.getParameter("userName"); String gender = request.getParameter("userGender"); Str... 阅读全文
posted @ 2015-10-18 15:05 KOYOU 阅读(87) 评论(0) 推荐(0) 编辑