上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 40 下一页
摘要: 一: 这个是每个配置文件必须的部分,也就是spring的根本。 声明xml文件默认的命名空间,表示未使用其他命名空间的所有标签的默认命名空间。 声明XML Schema 实例,声明后就可以使用 schemaLocation 属性了。 二: 这个就是spring配置文件里面需要使用到aop的标签,声明 阅读全文
posted @ 2017-03-31 23:39 思思博士 阅读(2707) 评论(0) 推荐(0) 编辑
摘要: Spring配置文件 applicationContext.xml Spring mvc配置文件.dispatcher.xml web.xml java的service代码: 失效原因: Spring容器优先加载由ServletContextListener(对应ApplicationContext 阅读全文
posted @ 2017-02-24 18:10 思思博士 阅读(2940) 评论(0) 推荐(0) 编辑
摘要: private static int numDays(String start,String end){ Calendar startCal=Calendar.getInstance(); String arr[]=start.split("-"); startCal.set(Integer.parseInt(arr[0]), Integer.pa... 阅读全文
posted @ 2017-02-23 17:43 思思博士 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 指定日期的加减天数 setDay(1,"2017-02-20"); 阅读全文
posted @ 2017-02-23 17:19 思思博士 阅读(214) 评论(0) 推荐(0) 编辑
摘要: private String getWeek(String date) { String[] arr=date.split("-"); Calendar calendar = Calendar.getInstance();//获得一个日历 calendar.set( Integer.parseInt(arr[0]),Integer.parseInt(... 阅读全文
posted @ 2017-02-23 16:34 思思博士 阅读(903) 评论(0) 推荐(0) 编辑
摘要: Calendar start = Calendar.getInstance(); start.set(2017, 2, 20); Long startTIme = start.getTimeInMillis(); Calendar end = Calendar.getInstance(); end.s... 阅读全文
posted @ 2017-02-23 16:33 思思博士 阅读(1530) 评论(0) 推荐(0) 编辑
摘要: /** * 内容改变时并不会触发事件,但是在失去焦点的时候会触发。 */ $("#inputid").change(function(){ console.log($(this).val()); }); /** * 只要文本类容发生改变,就会触发该事件 */ $("#inputid").bind("input propertychange",function(){ cons... 阅读全文
posted @ 2016-12-31 15:31 思思博士 阅读(2779) 评论(0) 推荐(1) 编辑
摘要: requestType = request.getHeader("X-Requested-With"); if(requestType==null){//form表单请求 }else{//ajax请求 } 阅读全文
posted @ 2016-12-31 09:57 思思博士 阅读(640) 评论(0) 推荐(0) 编辑
摘要: 以往我们写css时,让一行文字垂直居中. 会设置line-height等于height比如: 当我把这个原理 放在button上时 会是这个样子的. 以下都是火狐浏览器环境 有没有发现一个现象,他们好像并没有垂直居中. 如果你不确定有没有垂直居中再看以一幅图片: 这里把line-height给注释掉 阅读全文
posted @ 2016-11-03 14:40 思思博士 阅读(599) 评论(0) 推荐(0) 编辑
摘要: 国内的主流浏览器都是双核浏览器:基于Webkit内核用于常用网站的高速浏览。基于IE的内核用于兼容网银、旧版网站。以360的几款浏览器为例,我们优先通过Webkit内核渲染主流的网站,只有小量的网站通过IE内核渲染,以保证页面兼容。 content的取值为webkit,ie-comp,ie-stan 阅读全文
posted @ 2016-10-28 14:18 思思博士 阅读(188) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 40 下一页