摘要: 一、安装篇 jspSmartUpload是由www.jspsmart.com网站开发的一个可免费使用的全功能的文件上传下载组件,适于嵌入执行上传下载操作的JSP文件中。该组件有以下几个特点:1、使用简单。在JSP文件中仅仅书写三五行java代码就可以搞定文件的上传或下载,方便。2、能全程控制上传。利用jspSmartUpload组件提供的对象及其操作方法,可以获得全部上传文件的信息(包括文件名,大小,类型,扩展名,文件数据等),方便存取。3、能对上传的文件在大小、类型等方面做出限制。如此可以滤掉不符合要求的文件。4、下载灵活。仅写两行代码,就能把Web服务器变成文件服务器。不管文件在Web服. 阅读全文
posted @ 2012-08-29 13:18 西瓜霜 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 第一步:把ext-all.js、 resource资源文件夹copy到项目工程中。第二步:在页面写上以下代码。<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <script src="Scripts/ext-all.js" type="text/javascript"></script> <link href="resources/css/ext-all. 阅读全文
posted @ 2012-08-28 23:15 西瓜霜 阅读(250) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0"?><!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"><hibernate-mapping package="com.zll.entity"><class name="User" tabl 阅读全文
posted @ 2012-08-28 13:36 西瓜霜 阅读(137) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springfram 阅读全文
posted @ 2012-08-28 13:31 西瓜霜 阅读(131) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="ISO-8859-1"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http:/ 阅读全文
posted @ 2012-08-28 13:28 西瓜霜 阅读(216) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"><!-- START SNIPPET: xworkSample --><struts> <constant name 阅读全文
posted @ 2012-08-28 13:19 西瓜霜 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Result 类型常见的 type 类型配置如下:dispatcher转发到 JSP 页面,和<jsp:forward page=””/>的效果一样,是默认类型。<result>/Success.jsp</result><result name=”a”>/Success.jsp</result><result name=”b” type=”dispatcher”>/Success.jsp</result>redirect重定向到 JSP 页面,和 response.sendRedirect(“”)的效果一样。& 阅读全文
posted @ 2012-08-28 13:06 西瓜霜 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 在applicationContext.xml中,把声明式事务用到的空间导入xmlns:tx="http://www.springframework.org/schema/tx"xmlns:aop="http://www.springframework.org/schema/aop"http://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-2.5.xsdhttp://www.springframework.org/schema/ao 阅读全文
posted @ 2012-08-28 00:23 西瓜霜 阅读(256) 评论(0) 推荐(1) 编辑
摘要: 位置都在hibernate的jar包中的org/hibernate中,打开window-preferences,然后搜索xml,找到xml-catalog,点add按钮,选择第一个(catalog entry),location是dtd文件的路径,key type是uri,key是配置文件中的超链接 阅读全文
posted @ 2012-08-25 19:55 西瓜霜 阅读(358) 评论(0) 推荐(0) 编辑
摘要: <?xmlversion='1.0'encoding='utf-8'?><!DOCTYPEhibernate-configurationPUBLIC"-//Hibernate/HibernateConfigurationDTD3.0//EN""http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"><hibernate-configuration><session-factory><proper 阅读全文
posted @ 2012-08-24 23:03 西瓜霜 阅读(163) 评论(0) 推荐(0) 编辑