摘要: 转:http://blog.csdn.net/zhuyu19911016520/article/details/8568640sql :charindex('字符串',字段)>0 charindex('administrator',MUserID)>0oracle:instr(字段,'字符串'... 阅读全文
posted @ 2015-07-21 15:16 风真天 阅读(2143) 评论(0) 推荐(1) 编辑
摘要: 转:http://lavasoft.blog.51cto.com/62575/1407213Spring MVC遭遇checkbox的问题是:当checkbox全不选时候,则该checkbox域的变量为null,不能动态绑定到spring的controller方法的入参上,并抛出异常。解决方案:1、... 阅读全文
posted @ 2015-07-17 13:22 风真天 阅读(1317) 评论(0) 推荐(0) 编辑
摘要: 转:http://jamesby.iteye.com/blog/57381项目使用iWebOffice2006,本来可以正常使用,但是系统有文件上传需求,故定义了一个multipartResolver,后发现iWebOffice2006控件不能正常使用!解决办法有两个,一是不使用Spring的mul... 阅读全文
posted @ 2015-07-14 17:53 风真天 阅读(192) 评论(0) 推荐(0) 编辑
摘要: ...Controller...{ // 创建一个通用的多部分解析器 CommonsMultipartResolver commonsMultipartResolver = new CommonsMultipartResolver(request.getSession().getServletCon 阅读全文
posted @ 2015-07-14 17:14 风真天 阅读(6178) 评论(0) 推荐(0) 编辑
摘要: 转:http://714501466.iteye.com/blog/1398987 阅读全文
posted @ 2015-07-09 10:26 风真天 阅读(647) 评论(0) 推荐(0) 编辑
摘要: 目前的下载网址:基于JQUERY的WEB在线流程图设计器GOOFLOW 0.7版 阅读全文
posted @ 2015-07-08 18:18 风真天 阅读(325) 评论(0) 推荐(0) 编辑
摘要: if (value== undefined){ console.log("undefined");}如果value已经声明,是可以判断的。但是,如果value未被声明,就无法判断,需要使用typeof方法:if (typeof(value) == "undefined") { console.l... 阅读全文
posted @ 2015-07-08 18:06 风真天 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 转:http://liyixing1.iteye.com/blog/1751433 阅读全文
posted @ 2015-07-02 17:22 风真天 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 我们eclipse里面执行的程序,应用把他记录下来,生成配置文件。当我们导出行的jar包的时候,需要制定运行的主函数。会看到很多的历史主程序,带来方便的同时,也产生了影响。需要清除写记录的地址:${WORKSPACE}/.metadata/.plugins/org.eclipse.debug.cor... 阅读全文
posted @ 2015-06-26 16:27 风真天 阅读(532) 评论(0) 推荐(0) 编辑
摘要: 转:http://usherlight.iteye.com/blog/1306111在Controller中使用AOP的问题主要在于如何让Controller能够被检测到。Controller和其他Spring bean的区别在于:Controller是由mvc定义并在web.xml中的dispat... 阅读全文
posted @ 2015-06-26 11:39 风真天 阅读(573) 评论(0) 推荐(0) 编辑