1.将struts2-dojo-plugin放到WEB-INF/lib目录
2.在需要使用ajax标签的页面要加入标签库声明
<%@ taglib prefix="sx" uri="/struts-dojo-tags" %>
3.在页面加入<sx:head/>标签
<head>
<title>BankTrunk管理</title>
<%@ include file="/common/meta.jsp" %>
<link href="${ctx}/css/yui.css" mce_href="${ctx}/css/yui.css" type="text/css" rel="stylesheet"/>
<link href="${ctx}/css/style.css" mce_href="${ctx}/css/style.css" type="text/css" rel="stylesheet"/>
<link href="${ctx}/js/validate/jquery.validate.css" mce_href="${ctx}/js/validate/jquery.validate.css" type="text/css" rel="stylesheet"/>
<mce:script src="${ctx}/js/jquery.js" mce_src="${ctx}/js/jquery.js" type="text/javascript"></mce:script>
<sx:head/>
</head>
4.如果你的项目没有将所有请求都映射到struts2的过滤器的话,需要加入下面的配置,否则会出现"dojo为定义"的错误
<filter-mapping>
<filter-name>struts2Filter</filter-name>
<url-pattern>/struts/*</url-pattern>
</filter-mapping>