文章列表
JsValidation的使用
- 博客分类:
- Web前台设计
1. JSValidation是什么?
如首页所说,JSValidation是客户端表单验证框架,用在BS系统中,或者简单的网页系统中。表单验证在这些开发中很常见:新用户注册,需要校验某些字段;
户登陆,需要校验;等等。在这之前,页面开发者(JavaScript开发者)需要编写大量的JavaScript来与表单对象交互,并进行校验。
常见的校验如不能为空,必须满足长度要求,必须为数字,必须为Email等等。根据一般的经验,如果表单中需要校验的域个数超过10个,
开发过程就显得枯燥无味——多段重复的代码不断重复,如果要求跨浏览器,更多的考虑因素使人头疼不已。往往这个页面的验证还不能用于那个 ...
严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [spring/applicationContext-db.xml] ...
java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind 报错是什么原因
错误很明显,端口被占用了。
很有可能是之前启动的tomcat没被正常结束。
解决办法:
打开任务管理器,把里面的java.exe,javaw.exe,tomcat.exe(如果有)都结束了。
当然有可能把myeclipse也关了,所以操作前先保存好。
或者看下端口8005被什么程序占用了
端口被占用
cmd->netstat -ano->记下端口为你tomcat端口(如8080)的PID
-->任务管理器--& ...
org.hibernate.hql.ast.QuerySyntaxException: unexpected token: class near line 1, column 6 [from class cn.itcast.oa.domain.Department]
错误是因为:hql语句有问题
@Override
public Collection<T> getAllEntry() {
return this.hibernateTemplate.find("from " + this.clazz);
}
应该为:
...
1、windows->Preferences……打开"首选项"对话框,左侧导航树,导航到general->Workspace,
右侧Text file encoding,选择Other,改变为UTF-8,以后新建立工程其属性对话框中的Text file encoding即为UTF-8.
2、 windows->Preferences……打开"首选项"对话框,左侧导航树,导航到general->Content Types,右侧Context Types树,点开Text中每一颗子项,并在中输入"UTF-8",点u ...
1、windows->Preferences……打开"首选项"对话框,左侧导航树,导航到general->Editors,
选File Assosiations,对相应的文件设置打开方式即可。
严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'departmentDao': Injection of resource fields failed; nested exception is org.spri ...