- 浏览: 245838 次
- 性别:
- 来自: 北京
最新评论
-
zjj350:
你这版多线程好像有问题啊,context线程不安全啊。
手把手教你自定义IP访问次数限制器 (第二版) -
843977358:
xiaomayi1 写道楼主QQ多少 想请教你几个问题我昵称
手把手教你自定义IP访问次数限制器 -
xiaomayi1:
楼主QQ多少 想请教你几个问题
手把手教你自定义IP访问次数限制器 -
843977358:
hellotieye 写道hellotieye 写道你运行个代 ...
手把手教你自定义IP访问次数限制器 -
843977358:
somefuture 写道843977358 写道cs6641 ...
手把手教你自定义IP访问次数限制器
文章列表
如下链接
http://note.youdao.com/share/?id=0c48e6d3cddae3f688400fe9281f81ea&type=note
在我笔记里面:
http://note.youdao.com/share/?id=51c067e93cd2d124b0d80bcb710832bd&type=note
org.hibernate.QueryException: query specified join fetching
Hibernate异常:
org.hibernate.QueryException: query specified join fetching, but the owner of the fetched association was not present in the select list [FromElement{explicit,not a collection join,fetch join,fetch non-lazy properties,class ...
pager-taglib.jar 分页
需要的jar包 pager-src.jar
pager-taglib.jar
在分页传值时,<pg:param name="xx" value="">,
传递中文会乱码,原因:pager-taglib 分页插件在传值时,使用的get方式, get方式默认以iso89-xx方式传递,传中文会乱码。
解决过程:
1.在后台action中接受到值后通过java.net.URLEncoder.encode转换编码,结果:失败
...
最近使用SSH时遇到could not initialize proxy - no Session这个异常,整理出来解决方法
如图:
<script type="text/javascript">
$(function() {
//获取task的id长度
var len = $(".isTaskId").length;
//获取task的id集合
var $isTaskId = $(".isTaskId");
//循环遍历所有的taskId
for (var i = 0; i < len; i++) {
//发送ajax请求的url
var url = "teaA ...
net.sf.json.JSONException: java.lang.reflect.InvocationTargetException
json-lib对象转化为json数据抛net.sf.json.JSONException: va.lang.reflect.InvocationTargetException异常
出现了两种情况:
日期格式
hibernate延时加载
解决:日期格式
private java.util.Date createTime;
只在字段前声明Date的数据类型可能也会抛异常,在Set,get方法中,有出现Date类型的都把包名 ...
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'usersname' in 'class com.zyd.beans.Admin'
at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator ...
java.lang.ClassNotFoundException: net.sf.ezmorph.Morpher Could not initialize class net.sf.json.util.JSONUtils 出现以上等异常,可能是使用Json缺少以下几个包中的一个: ezmorph-1.0.6.jar commons-lang 2.4 commons-beanutils 1.7.0 commons-collections 3.2 commons-logging 1.1.1
1.通过$.post(url,param,callback,dataType);发送Ajax请求时,如果不指定dataType,
前台页面中要使用eval将返回数据转换成json格式
eval("(" + data + ")");//以json格式获取数据\
但是在火狐浏览器中会返回的data为[object XMLDocument],
处理办法:在服务器端的getWriter.print();前面加上一行代码ServletActionContext.getResponse().setConte ...
1.判断checkbox是否被选中
if($("#checkboxID").attr("checked")==true){//执行操作}
2.checkbox的几种操作
a).$("input[name='checkboxName']").attr("checked", 'true');//全选
b).$("input[name='checkboxName']").removeAttr("checked");//取 ...