码迷,mamicode.com
首页 >  
搜索关键字:result    ( 10204个结果
Mybatis学习
错误:Result Maps collection already contains value for......解决方法:原因有很多,还有一种是因为自动生成代码所带来的,运行了多次自动生成代码的程序,导致了XXXMapper.xml的内容多出来很多,原来自动生成代码的时候生成的XML代码不是覆盖...
分类:其他好文   时间:2014-05-10 05:16:08    阅读次数:300
git http方式提交时的一个小问题
error: RPC failed; result=22, HTTP code = 411fatal: The remote end hung up unexpectedly解决方法:git config http.postBuffer 524288000
分类:其他好文   时间:2014-05-10 01:06:09    阅读次数:367
java.sql.SQLException: Before start of result set
错误原因: 如API中所述 API: A table of data representing a database result set, which is usually generated by executing a statement that queries the database. A ResultSet object maintains a cursor pointi...
分类:数据库   时间:2014-05-09 21:00:43    阅读次数:423
后台添加前台标签
仅一个例子,添加div1 this.result.InnerHtml = "ok";2 HtmlGenericControl div = new HtmlGenericControl();3 div.TagName = "div";4 ...
分类:其他好文   时间:2014-05-09 19:35:19    阅读次数:308
SXH232摄像头使用示范
It occurred to me suddenly that I wanted to program the our camera sensor for PC desktop, just like the one purchased from shop, which can make the video recording. Finally although the result seemed ...
分类:其他好文   时间:2014-05-09 14:58:02    阅读次数:373
Leetcode: Roman to Integer, Integer to Roman
Roman to IntegerInteger to Roman这两题纯粹是模拟题,关键就是理解罗马计数,直接上代码吧class Solution {public: int romanToInt(string s) { int result = 0; for (...
分类:其他好文   时间:2014-05-09 09:46:36    阅读次数:298
两个奇怪的取地址符号
function Fun(x: Integer): Integer;asm mov ecx, &x dec ecx {汇编中的 dec 是减 1 指令, 和 Delphi 是一样的} mov @Result, ecx {在本例中去掉 @ 也可以, 暂时不知怎么回事}end;去掉两个符号,对...
分类:其他好文   时间:2014-05-09 09:20:32    阅读次数:323
查看端口占用情况(解除占用)
1>查看端口占用情况命令:netstat-aon|findstr:802>查看指定端口的占用情况netstat-aon|findstr"3000"result--------------------------------TCP0.0.0.0:30000.0.0.0:0LISTENING246243>用24624查看对应的进程tasklist|findstr"24624"4>结束该进程taskkill/f/t/imr..
分类:其他好文   时间:2014-05-09 07:08:46    阅读次数:297
配置Result——学习Struts2
使用Struts2的MVC思想中,学习Struts2的配置文件必不可少。此处重点介绍Result的学习心得并记录,Result在Struts2中…………………… 本文为作者学习笔记,源于对《轻量级Java_EE企业实战(第三版)》一书的学习,内容借鉴于它。 1.Struts2提供了2种返回结果 —局...
分类:其他好文   时间:2014-05-09 06:37:16    阅读次数:283
php重构HTTP包 获取result
目的是做一个分发的php脚本,根据客户端的不同需求,分发到不同的功能脚本。所以需要首先检验客户端发来的HTTP包中的请求类型,然后再进行分发。分发脚本:<?php /* *Thisfileistodistributetherequeststodifferentservers,isdividedbyfunctions *Para:Http-Request *Data:2..
分类:Web程序   时间:2014-05-08 16:43:06    阅读次数:347
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!