`
gstarwd
  • 浏览: 1527615 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论
文章列表
    Struts 的 Validator 验证框架定义了常用的十几个验证规则,如: required( 验证非空 ) 、 minlength( 验证最小长度 ) 、 maxlength( 验证最大长度 ) 、 intRange( 验证整形范围 ) 、 email( 验证电子邮件地址 ) 、 date( 验证日期 ) 等,并且实现了客户端的 Javascript 验证和服务器端验证,以下是在 myeclipse 环境下使用
    没有struts之前,使用servlet,最常用的是doGet,doPost,service方法,如果有些经验的程序员会合理的使用这三个方法:如在用户发出get的请求时,将用户请求在doGet方法中处理,用户发出post请求时,将用户的请求用doPost请求处理,必要时加上service方法去处理那些在一个servlet中必须执行的请求,用户的请求大体也就这三类,但是如果细分,一个“编辑”,“删除”,“查看”等操作都是doGet的范围,当然也可以都写到serice方法中或doPost中处理,这样为了区分这些请求,我们通常都要在程序中加入一个判断的参数,如:operate,然后在程序中判断 ...
HTML 的主要作用就是生成 UI 界面   <html:form>   <html:text>   <html:password>   <html:submit>   <html:reset>   <html:select>
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xm ...
tomcat的startup failed due to previous errors 错误 在tomcat上部署应用的时候经常会发上startup failed due to previous errors 错误。这个错误产生以后经常会让人摸不到头脑。以下是几点查找经验: 1.web.xml文件,这个文件中定义了很多web服务启动需要的类、xml文件,如果这些找不到就会发生startup failed due to previous errors 错误。 2.如果使用spring的话,在appl ...
最近看《WebWork.Spring.Hibernate 整合开发网络书城》视频教程,自己按照教程上说的做练习,在启动tomcat 时总是出一个错误:<o:p></o:p>       2007-5-31 14:27:13 org.apache.catalina.core.StandardContext start       严重: Error listenerStart       2007-5-31 14:27:13 org.apache.catalina.core.StandardContext start       严重 ...
今天在eclipse+myeclipse+tomcat5 下,写个中文乱码转码filter,就报 2007-3-13 17:43:46 org.apache.catalina.core.StandardContext start 严重: Error filterStart 2007-3-13 17:43:46 org.apache.catalina.core.StandardContext start 严重: Context startup failed due to previous errors  错误,所属项目也就启动不了,web。xml配置为 : <filter& ...
web.xml文件 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-a ...
Spring 压缩包目录说明 关键字: sring jar 1. Spring 压缩包目录说明 aspectj目录下是在Spring 框架下使用aspectj的源代码和测试程序文件。 Aspectj是java最早的提供AOP的应用框架。 dist 目录下是Spring 的发布包,关于发布包下面 ...
关键字: 异常,tomcat启动出错 ,xfire ,spring 应用环境: jdk-1.6.03,tomcat-5.5.26,spring 2.5 ,Hibernate 3.2 eclipse 3.3.2 myEclipse 6.5   tomcat在启动的时候发生如下错误:  2008-9-28 11:13:01 org.apache.catalina.core.StandardContext start 严重: Error listenerStart 2008-9-28 11:13:01 org.apache.catalina.cor ...
在使用SSH添加   <listener>      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>    </listener>   tomcat在启动的时候发生如下错误:  2008-9-28 11:13:01 org.apache.catalina.core.StandardContext start 严重: Error listenerStart 2008-9-28 11:13:01 org.ap ...
2009-12-4 13:10:49 org.apache.catalina.core.AprLifecycleListener lifecycleEvent 信息: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: D:\CodingSoftware\MyEclipse 6.6\bin;D:\CodingSoftware\Tomcat 5.5\bin 2009-12-4 13: ...
native2ascii.exe 是 Java 的一个文件转码工具,是将特殊各异的内容 转为 用指定的编码标准文体形式统一的表现出来,它通常位于 JDK_home\bin 目录下,安装好 Java SE 后,可在命令行直接使用 native2ascii 命令进行转码,示例:native2ascii -encoding 8859_1 c:\test.txt c:\temp.txt将 test.txt 文件内容用 8859_1 转码,另存为 temp.txt 文件格式:native2ascii -[options] [inputfile [outputfile]] 参数选项 options ...
学了很久的java,接触SSH也有一段时间了,写成博文总是有点懒,最近在整理一些思绪,把SSH一点一滴放进博客里,以备以后改进,再学习。 以我自己的了解,在进行struts开发的过程中,总也是出现很多的乱码问题 ,但归根到底,也只是以下三种情况: ㈠页面显示中文乱码 ㈡传递参数中文乱码 ㈢国际化资源文件乱码 下面就这三中情况介绍怎么在具体项目中处理这些乱码问题。而对于整体的处理思想,是要统一编码为: UTF-8.(以myeclipse6支持的struts1.3为准) ㈠页面显示中文乱码       对于在页面中显示出现乱码,这个问题比较简单,便是检查你的JSP文件里是不是出现了中文要处理,因为J ...
使applicationresources.properties支持中文 建立一个applicationresources_zh.properties文件,把应用程序用的message都写进去,然后在dos 下执行这个命令, native2ascii -encoding gb2312 applicationresources_zh.properties  applicationresources.properties 这样就会将iso编码的applicationresources转换成gb2312编码的格式了,同时保存到 applicationresources.properties. nati ...
Global site tag (gtag.js) - Google Analytics