先看一个没有使用@ModelAttribute的Controller方法. [java] view plain copy @RequestMapping("/save") public String save(User user) { user.setUsername("U love me"); u ...
分类:
编程语言 时间:
2016-07-21 14:47:05
阅读次数:
302
排序导致性能较慢优化策略:1.尽量不使用排序 2.只查有索引的结果然后 内连接查询select bizchance0_.* from biz_chance bizchance0_, biz_bizcustomer bizbizcust1_ where bizchance0_.uuid=bizbizc ...
分类:
数据库 时间:
2016-07-21 14:47:47
阅读次数:
217
1.网络请求报错。升级Xcode 7.0发现网络访问失败。输出错误信息 The resource could not be loaded because the App Transport Security policy requires the use of a secure connection ...
分类:
移动开发 时间:
2016-07-21 14:47:26
阅读次数:
432
Python 字符串 字符串是Pyhton中常用的数据类型,我们可以使用引号来创建字符串 . 创建字符串很简单 , 就不说了 . Python 访问字符串中的值 鬼叔本着简洁 使用的设计目的 , 在设计的时候 . 字符串之中不存在 单个字符 . 所有的字符都是以字符串存在的 . Python访问自字 ...
分类:
编程语言 时间:
2016-07-21 14:46:58
阅读次数:
261
(1)Windows坐标系统 Windows坐标系分为逻辑坐标系和设备坐标系两种,GDI支持这两种坐标系。一般而言,GDI的文本和图形输出函数使用逻辑坐标,而在客户区移动或按下鼠标的鼠标位置是采用设备坐标。 <1>逻辑坐标系(Logical Coordinate)是面向DC的坐标系,这种坐标不考虑具 ...
分类:
其他好文 时间:
2016-07-21 14:46:39
阅读次数:
135
// 身份证验证 //身份证正则表达式(15位) isIDCard1=/^[1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}$/; //身份证正则表达式(18位) isIDCard2=/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[ ...
分类:
其他好文 时间:
2016-07-21 14:45:58
阅读次数:
261
题目描述 Description 给你N个数,有两种操作 1:给区间[a,b]的所有数都增加X 2:询问第i个数是什么? 给你N个数,有两种操作 1:给区间[a,b]的所有数都增加X 2:询问第i个数是什么? 输入描述 Input Description 第一行一个正整数n,接下来n行n个整数,再接 ...
分类:
其他好文 时间:
2016-07-21 14:45:16
阅读次数:
189
//图片压缩 - (NSData *)imageWithImage:(UIImage*)newImage{ NSData *data=UIImageJPEGRepresentation(newImage, 1.0); if (data.length>100*1024) { if (data.leng ...
分类:
其他好文 时间:
2016-07-21 14:46:21
阅读次数:
139
Null Character:\0 # define TAXRATE 0.015 //when your program is compiled,the value 0.015 will be substituted everywhere you have used TAXRATE.this is ...
分类:
其他好文 时间:
2016-07-21 14:47:00
阅读次数:
207
Given a (decimal - e.g. 3.72) number that is passed in as a string, return the binary representation that is passed in as a string. If the fractional ...
分类:
其他好文 时间:
2016-07-21 14:46:47
阅读次数:
144
HTML: CSS: 以上是主要的代码,有几点需要注意: 利用rgba实现有兼容性的问题,所以采用两层覆盖的方法 float元素与position:absolute元素平级时,当绝对定位没有指定top/left时,float会在绝对定位元素前面出现 绝对定位元素当不指定top/left时,则相对于o ...
分类:
Web程序 时间:
2016-07-21 14:47:14
阅读次数:
148
JSP页面顶端出现“红色”的报错信息:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path。是由于在原来Javaweb工程类中没有添加Tomcat运行时相关类。具体的解决方法如下:1、 ...
分类:
编程语言 时间:
2016-07-21 14:45:18
阅读次数:
184
文件对比工具Beyond Compare的功能非常的优秀。可以根据用户不同的需求来进行相应的设定。对于初学者来说,准确而熟练的找到程序中特定的设置并改变默认设置,以匹配个人对比需求,可能是一件比较困难的事情,下面就来给大家分享一下怎么对Beyond Compare进行设置? ...
分类:
其他好文 时间:
2016-07-21 14:45:18
阅读次数:
179
css部分: html部分: js部分:js部分:(此处需要引入jquery.js) ...
分类:
其他好文 时间:
2016-07-21 14:46:26
阅读次数:
194
本文介绍的这种使用 github 作为 maven 仓库的思路主要为: 以我的项目为例:https://github.com/buzheng/mybatis-pageable 首先通过配置pom.xml告诉maven将artifacts部署到一个target下的一个临时目录中,具体配置如下: <pl ...
分类:
其他好文 时间:
2016-07-21 14:46:15
阅读次数:
231