引言:前段时间项目中用到了RESTful模式来开发程序,但是当用POST、PUT模式提交数据时,发现服务器端接受不到提交的数据(服务器端参数绑定没有加任何注解),查看了提交方式为application/json,
而且服务器端通过request.getReader() 打出的数据里确实存在浏览器提交...
分类:
移动开发 时间:
2014-06-03 09:00:28
阅读次数:
255
public class Fibonacci { private static Map map =
new HashMap(); static{ map.put(0L, 1L); map.put(1L, 1L); } public static void
main(String[] arg...
分类:
其他好文 时间:
2014-06-03 07:24:25
阅读次数:
221
最近在用 Spring Data Rest 写WebApi 遇到Put请求后报415
Mieda Type 的错误,GG了下 找到个解决办法,下面是针对Put请求的过滤。 1 public class
HttpPutRestfulContentFilter extends OncePerRequ.....
分类:
编程语言 时间:
2014-05-29 10:52:20
阅读次数:
278
原文地址:http://reverse.put.as/2012/02/02/anti-disassembly-obfuscation-1-apple-doesnt-follow-their-own-mach-o-specifications/当想到这个特性时,我非常高兴!因为我喜欢突破束缚,并且写了...
分类:
移动开发 时间:
2014-05-28 10:01:12
阅读次数:
353
概括1.
创建、删除及启用禁用表、添加列等都需用到HBaseAdmin,另外需要注意删除,添加列等操作都需要禁用表2.
表中添加数据,查询等都是和HTable相关,如果是多线程的情况下注意用HTablePool3. 插入数据使用Put,可以单行添加也可批量添加4.
查询数据需使用Get,Result...
分类:
编程语言 时间:
2014-05-28 02:19:21
阅读次数:
327
If you are supporting pre-3.0 with your application
be sure you put this version of the custom theme invalues-v11or similar.
分类:
其他好文 时间:
2014-05-26 17:54:46
阅读次数:
206
一、buffer overflow,limit of 10000 bytes
declare
begin
for c in 1..1000 loop
dbms_output.put_line('测试测试测试');
end loop;
end;
缓冲区默认大小为10000 bytes。循环1000次一共有6000个汉字,也就是12000 bytes。在SQL窗口的输出标签页可设置缓冲...
分类:
数据库 时间:
2014-05-26 06:14:00
阅读次数:
333
publicclassMyTabControl:TabControl{protected
override void OnMouseUp(MouseEventArgs
e){if(e.Button==System.Windows.Forms.MouseButtons.Right){for(int i...
分类:
其他好文 时间:
2014-05-26 00:33:42
阅读次数:
304
例2:创建DML语句行级触发器。当对emp表执行INSERT,UPDATE,DELETE操作时,它自动更新dept_summary表中的数据。由于在PL/SQL块中不能直接调用DDL语句,所以,利用ORACLE内置包DBMS_UTILITY中的EXEC_DDL_STATEMENT过程,由它执行DDL语句创建触发器。BEGINDBMS_OUTPUT.PUT_LINE(‘..
分类:
数据库 时间:
2014-05-24 15:23:16
阅读次数:
388
一、bufferoverflow,limitof10000
bytesdeclarebeginforcin1..1000loop
dbms_output.put_line(‘测试测试测试‘);endloop;end;缓冲区默认大小为10000
bytes。循环1000次就一共有6000个汉字,也就是12000bytes。在SQL窗口的输出标签页中设置缓冲区大校二、数字或值错误:字符串缓冲..
分类:
数据库 时间:
2014-05-24 15:18:07
阅读次数:
310