2015年12月31日

idea 集合

摘要: 当建立 maven 项目时, maven会在 maven archetype plugin release generate (maven 原件生成时卡死)解决方案:在如下图位置 加上 -DarchetypeCatalog=internal 阅读全文

posted @ 2015-12-31 16:15 丿易小易 阅读(168) 评论(0) 推荐(0) 编辑

2015年9月24日

csrf 跨域请求伪造攻击

摘要: 请求提交携带 csrfToken 过去window.addCart = function(productId,productType){ $.ajax({ url:"/dealer/dealerShoper/productAddCar?csrfToken="+$("input... 阅读全文

posted @ 2015-09-24 09:28 丿易小易 阅读(393) 评论(0) 推荐(0) 编辑

2015年9月23日

ajax json提交到控制层

摘要: js:var useData = [];$.ajax({ url: "/dealer/dealerShoper/synShopers", method: "post", data: JSON.stringify(useData), conten... 阅读全文

posted @ 2015-09-23 16:20 丿易小易 阅读(1436) 评论(0) 推荐(0) 编辑

2015年8月10日

mysql 查重复数据

摘要: SELECT b.productSkuId, FROM_UNIXTIME( b.createTime/1000) FROM BrandActivityProduct a LEFT JOIN BrandActivityProductPrice b ON a.refrenceId = ... 阅读全文

posted @ 2015-08-10 15:46 丿易小易 阅读(108) 评论(0) 推荐(0) 编辑

2015年8月3日

springmvc国际化

摘要: 一.基于浏览器请求的国际化实现:首先配置我们项目的springservlet-config.xml文件添加的内容如下: 在com.demo.web.controllers... 阅读全文

posted @ 2015-08-03 17:43 丿易小易 阅读(241) 评论(0) 推荐(0) 编辑

2015年7月28日

异常集合

摘要: java.lang.IllegalStateException: No thread-bound request found这个异常出现的原因是,web容器还未启动就调用到了request, 通常会出现在调度的任务中 阅读全文

posted @ 2015-07-28 17:01 丿易小易 阅读(146) 评论(0) 推荐(0) 编辑

2015年7月21日

sping jar的详细描述

摘要: spring.jar 是包含有完整发布模块的单个jar 包。但是不包括mock.jar, aspects.jar, spring-portlet.jar, and spring-hibernate2.jar。spring-src.zip就是所有的源代码压缩包。除了spring.jar 文件,Spri... 阅读全文

posted @ 2015-07-21 14:26 丿易小易 阅读(159) 评论(0) 推荐(0) 编辑

2015年7月18日

jenkins 研究

摘要: JenKins一个全能的工具, 可以自动化测试,和发布到服务器 阅读全文

posted @ 2015-07-18 14:02 丿易小易 阅读(123) 评论(0) 推荐(0) 编辑

2015年7月14日

mysql 导数据 为excel

摘要: SELECT b.dealerName as 经销商名称, c.comName as 品牌商名称, FROM_UNIXTIME(a.clearingTime/1000 ,'%y-%m-%d')as 付款时间, a.clearingAmount as 结算金额, CAST(a.clearingStat... 阅读全文

posted @ 2015-07-14 17:10 丿易小易 阅读(98) 评论(0) 推荐(0) 编辑

2015年6月30日

mysql 调优

摘要: EXPLAIN SELCT....查出表的条数,然关联查询要与条数 多的表 进行少次的关联 阅读全文

posted @ 2015-06-30 13:25 丿易小易 阅读(105) 评论(0) 推荐(0) 编辑

导航