摘要:
程序中session都有一个默认的过期时间,其中tomcat中的默认时间为30分钟,根据需要我们可以去手动设置session的过期时间,以下是设置session的过期时间的三个方法:1.在tomcat-->conf-->conf/web.xm中的中设置: 1 2 30 3 2.在项目的web.xml中定义: 1 2 20 3 ... 阅读全文
摘要:
1 int num1 = 7; 2 3 int num2 = 9; 4 5 // 创建一个数值格式化对象 6 7 NumberFormat numberFormat = NumberFormat.getInstance(); 8 ... 阅读全文
摘要:
http://www.cnblogs.com/xiaoxinwt/p/5329840.html 阅读全文
摘要:
第一种方法: select (@i:=@i+1) as i,table_name.* from table_name,(select @i:=0) as it 第二种方法: set @rownum=0; select @rownum:=@rownum+1 as rownum, t.username 阅读全文
摘要:
文章出处:http://www.cnblogs.com/dyllove98/p/4235909.html 1. jQuery插件支持的转换方式 $.parseJSON( jsonstr ); //jQuery.parseJSON(jsonstr),可以将json字符串转换成json对象 2. 浏览器 阅读全文
摘要:
1.1 什么是RESTful http://www.ruanyifeng.com/blog/2011/09/restful.html RESTful架构,就是目前最流行的一种互联网软件架构。它结构清晰、符合标准、易于理解、扩展方便,所以正得到越来越多网站的采用。 RESTful(即Represent 阅读全文
摘要:
1、jar包冲突,查看项目中的jar和pom.xml中配置的jar包 版本,把没用的jar包删掉 阅读全文
摘要:
1.添加M2_HOME的环境变量 2.Preference->Java->Installed JREs->Edit 选择一个jdk, 添加 -Dmaven.multiModuleProjectDirectory=$M2_HOME -Dmaven.multiModuleProjectDirectory 阅读全文
摘要:
1.1 为什么要进行json数据交互 json数据格式在接口调用中、html页面中较常用,json格式比较简单,解析还比较方便。 比如:webservice接口,传输json数据. 1.2 springmvc进行json交互 1、请求json、输出json,要求请求的是json串,所以在前端页面中需 阅读全文
摘要:
1.1 异常处理思路 系统中异常包括两类:预期异常和运行时异常RuntimeException,前者通过捕获异常从而获取异常信息,后者主要通过规范代码开发、测试通过手段减少运行时异常的发生。 系统的dao、service、controller出现都通过throws Exception向上抛出,最后由 阅读全文