- 浏览: 41525 次
最新评论
文章列表
动态方法调用
在Struts2中动态方法调用有三种方式,动态方法调用就是为了解决一个Action对应多个请求的处理,以免Action太多
第一种方式:指定method属性
这种方式我们前面已经用到过,类似下面的配置就可以实现
<action name="chainAction" class="chapter2.action.Chapter2Action"
method="chainAction">
<result name="chainAction" type="chain ...
- 2013-11-21 14:35
- 浏览 403
- 评论(0)
jdom 可以在www.jdom.org 下载最新版本,笔者我下载的是最新版本2.0.5
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.JDOMException;
import org.jdom2.input.SAXBuilder;
import org.jdom2.output.XMLOutputter;
public class ...
- 2013-11-03 20:58
- 浏览 342
- 评论(0)
<!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; charset ...
- 2013-10-16 22:41
- 浏览 328
- 评论(0)
<!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; charset ...
- 2013-10-16 22:34
- 浏览 789
- 评论(0)
MySQL5.1非安装版在Windows中的安装及配置 我们现http://www.mysql.com网站上下载MySQL5.1的ZIP文件。
我要安装到D盘,就将文件解压到D盘,将文件夹名称改为mysql(随你喜欢),数据库文件夹默认(D:\mysql\data)。
现将D:\mysql里边的my-huge.ini,my-innodb-heavy-4G.int,my-large,ini,my-medium.ini.my-small.ini这五个文件之中一个复制到C:\windows下,取名为my.ini。至于复制哪一个文件,要看你希望MySQL点用系统资源及内存而定,我这里选择中等my-m ...
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in ServletContextresource [/WEB-INF/applicationContext.xml]: Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError:org/apache/commons/pool/impl/GenericObjectPoolCause ...
- 2013-07-31 16:06
- 浏览 955
- 评论(0)
C3P0版本:c3p0-0.9.1.2.jar
spring applicationContext.xml配置:
如果将数据源参数配置在*.properties文件中,则必须用spring的PropertyPlaceholderConfigurer加载配置文件。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="htt ...
- 2013-07-31 14:59
- 浏览 366
- 评论(0)
jquery easyui dataGrid 和struts2结合使用小例子
很高兴又步入到jquery easyui的学习中,说实话我喜欢web开发......
java代码:
Student类:
public class Student {
private String id;
private String name;
private String className;
public String getId() {
return id;
}
public String getName() {
return name;
}
public String ge ...
- 2013-07-19 16:29
- 浏览 415
- 评论(0)
前几天突然想学习以下jquery easyui 但是里面涉及到了json的知识,于是恶补起来ajax知识,经过以上的查资料,终于弄清楚javascript-ajax-json-java-servlet互相传值取值,的过程,特此分享出来,希望能帮助到初学的朋友么,也为了日后自己查询是使用,好了闲话少说,看下面代码go!!
使用tomcat6.0
index.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
...
- 2013-07-19 13:55
- 浏览 1054
- 评论(0)
到http//jakarta.apache.org/commons/fileupload站点下载commons-fileupload-1.2.1-bin
到http//jakarta.apache.org/commons/io站点下载commons-io-1.4-bin
同时将两个文件解压开后,将commons-io-1.4.jar,commons-fileupload-1.2.1.jar文件拷贝到tomcat服务器Lib文件夹下面
index.jsp
<%@ page language="java" import="java.util.*" pag ...
- 2013-06-07 22:10
- 浏览 498
- 评论(0)
如:
<frameset rows= "74,*,0,0 " cols= "* " frameborder= "NO " border= "0 " framespacing= "0 ">
<frame src= "top.aspx " name= "topFrame " scrolling= "NO " noresize >
<frameset cols= "200,* " ...
- 2013-05-17 09:51
- 浏览 408
- 评论(0)
用pq硬盘格式工具-依次将硬盘设置为主要的-作用的-然后格式化分区,重启正常安装ISO文件即可
- 2013-05-02 16:15
- 浏览 1528
- 评论(0)
<script>
function a(){
var origLength;
origLength = document.all.length;
for(i=0;i<origLength;i++){
document.all[i].disabled=false;
document.getElementById("updateBut").disabled=true;
}
}
</script>
- 2013-04-07 20:54
- 浏览 455
- 评论(0)