
网站开发
文章平均质量分 55
习惯等待
java开发工程师
展开
-
maven+springMVC+mybatis框架搭建
在接下来的文章,我将介绍我自己是怎样搭建这样的一个框架的。。。 我希望你能耐心地看下去,这东西应该不算难的。。 首先说明下我的开发环境:eclipse+maven插件,数据库用的是mysql,我的eclipse用的是最新版本的。 第一点 maven 1、这里我没有详细的介绍怎样去安装,下面的附件中有相关的文档介绍。 2、我在这里想说明的是maven 的多模块划分,原创 2015-04-14 08:57:51 · 372 阅读 · 0 评论 -
JS判定空值null以及未定义值undefined
判定空值 var exp = null; if (!exp) { alert("is null"); } 判定未定义 var exp = undefined; if (typeof(exp) == "undefined") { alert("undefined"); } ...原创 2015-03-10 15:19:48 · 353 阅读 · 0 评论 -
get方法带有汉字传递时需要对汉字进行编码,如搜索操作
前端js需要对汉字进行编码 var topicName=$("#search-topic").val(); if(!topicName){ alert("培训主题不能为空!"); }else{ window.location.href="searchTopic.do?type="+trainType+ "&topicName="+encodeURI(encode...原创 2015-03-10 16:44:04 · 370 阅读 · 0 评论 -
将博客搬至优快云
dd原创 2015-03-27 11:09:09 · 89 阅读 · 0 评论