- 浏览: 61779 次
- 性别:
- 来自: 南京
最新评论
-
Earlyshine:
前台传递方式改成 var param={}; param.d ...
解决jQuery $.getJSON() 传递参数中文乱码问题 -
hgh0136:
试过了,还是不行。
解决jQuery $.getJSON() 传递参数中文乱码问题 -
Armourstill:
hibernateTemplate的查找是面向对象而不是数据表 ...
org.springframework.orm.hibernate3.HibernateQueryException: Manager is not mappe -
jayyunfei:
我这里不用写啊,是不是你配置文件没有写路径啊?
org.springframework.orm.hibernate3.HibernateQueryException: Manager is not mappe
文章列表
UEditor 源码自带一个上传的jsp代码,详见ueditor的“/ueditor1_2_4_0-utf8-jsp/jsp/”目录下的imageUp.jsp 及fileUp.jsp文件。但是如果项目中使用了Apache Struts2框架,将/* 过滤 ,由于该框架默认使用Apache的Commons FileUpload组件和内建的FileUploadInterceptor拦截器实现文件上传,将request中的文件域封装到action中的一个File类型的属性中,并删除request中的原有文件域,因此上传文件会失败。
自己找很久未找到原因,上网查才明白了 ...
下面是webryan整理的百度web前端笔试和面试的一些题目和过程,提供给大家借鉴。
百度web前端笔试试卷上的题目:
1.判断字符串是否是这样组成的,第一个必须是字母,后面可以是字母、数字、下划线,总长度为5-20
2.截取字符串a ...
转自http://blog.csdn.net/smallearth/article/details/7605778
最新的Java ME platform SDK 3.0,但是跟eclipseme 1.7.9 配合有问题,在RUN的时候,会报下面错误:
Syntax:
emulator [arguments]
In order to get commands supported by given device run:
emulator.exe -Xdevice:<device name> -Xquery
Generic list of argume ...
前台 js
var submitDir=$("#submitDir");
submitDir.click(function(){
var dirName=$("#dirName").attr("value");
dirName=encodeURI(encodeURI(dirName));//两次使用encodeURI()
if(dirName!=""){
$.getJSON("createDir.action?dirName="+dirName,fun ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; char ...
继续应用回溯法解决迷宫问题:
问题赘述一下,从一点出发找到出口即可
package 数据结构及算法.回溯法应用之迷宫问题;
import java.util.Iterator;
import 数据结构及算法.回溯法.Application;
import 数据结构及算法.回溯法.Position;
public class Maze implements Application{
private static final byte WALL=0;
private static final byte CORRIDOR=1;//非墙,走廊
priva ...
回溯法应用之n皇后问题
- 博客分类:
- 算法
在n行n列的棋盘上,如果两个皇后位于棋盘上的同一行或者同一列或者同一对角线上,则称他们为互相攻击。现要求找出使n元棋盘上的n个皇后互不攻击的所有布局,即是n皇后问题
package 数据结构及算法.回溯法应用之n皇后问题;
import java.util.Iterator;
import 数据结构及算法.回溯法.Application;
import 数据结构及算法.回溯法.Position;
public class Queen implements Application{
private int[][]grid;
private int[][]p ...
大三上学习算法时都没怎么真正去体会算法的精髓,更没想过如何将它用到应用程序中?
想到找工作时算法数据结构作为基础,会经常被考到,于是最近有开始复习算法了。
回溯递归,可以解决很多问题,比如迷宫问题,n皇后问题等
于是我通过看书学习,先实现了一个通用的回溯算法,与具体应用程序无关,回溯法核心是进行递归地找到目标位置,每次处于的位置,先判断是它是否符合要求,若符合,继续递归到下个位置,否则,回到上一个可选择的位置,BackTrack.java如下:
package 数据结构及算法.回溯法;
import java.util.Iterator;
public cl ...
用hibernateTemplate().find()方法时出现以下错误
org.springframework.orm.hibernate3.HibernateQueryException: Manager is not mapped [from Manager]; nested exception is org.hibernate.hql.ast.QuerySyntaxException: Manager is not mapped [from Manager]
纠结了好长时间,上网一查才知道好多人出现过相同问题,原因一般有:
1,hbm.xml 没在beans.xm ...
寒假时在家看视频学习ssh,第一次将它们整合在一起,就出了问题:
严重: The web application [/] registered the JDBC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
2012-2-15 15:25:22 org.apache.catalina.lo ...