(一).DivTag1.jsp界面
<?xml version="1.0" encoding="utf-8"?>
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<%@ taglib prefix="sjg" uri="/struts-jquery-grid-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>AnchorTag 的使用</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="styles/layout.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/js/showcase.js"></script>
<sj:head
locale="zh_CN"
loadAtOnce="true"
compressed="false"
jquerytheme="showcase"
customBasepath="themes"
loadFromGoogle="false"
debug="true"
/>
<script type="text/javascript">
$.subscribe('beforeDiv', function(event,data) {
alert('Before request ');
});
$.subscribe('completeDiv', function(event,data) {
if(event.originalEvent.status == "success")
{
$('#resultnormal').append('<br/><br/><strong>Completed request '+event.originalEvent.request.statusText+' completed with '+event.originalEvent.status+ '.</strong><br/>Status: '+event.originalEvent.request.status);
}
});
$.subscribe('errorDiv', function(event,data) {
$('#resulterror').html('<br/><br/><strong>Error request '+event.originalEvent.request.statusText+' completed with '+event.originalEvent.status+ '.</strong><br/>Status: '+event.originalEvent.request.status);
});
</script>
</head>
<body>
<s:url
id="ajax"
value="echo">
<s:param
name="echo"
value="%{'We love jQuery'}" />
</s:url>
<sj:div
id="resultnormal"
href="%{ajax}"
indicator="indicator"
onBeforeTopics="beforeDiv"
onCompleteTopics="completeDiv"
onErrorTopics="errorDiv"
cssClass="result ui-widget-content ui-corner-all">
<img
id="indicator"
src="images/indicator.gif"
alt="Loading..."
style="display: none" />
</sj:div>
<br/><br/>
<strong>Div with invalid URL:</strong>
<sj:div
id="resulterror"
href="not_exist.html"
indicator="indicator"
onCompleteTopics="completeDiv"
onErrorTopics="errorDiv"
cssClass="result ui-widget-content ui-corner-all">
<img
id="indicator"
src="images/indicator.gif"
alt="Loading..."
style="display: none" />
</sj:div>
</body>
</html>
(二).Action的写法:
package com.anchorajax;
import com.opensymphony.xwork2.ActionSupport;
public class Echo extends ActionSupport
{
private String echo;
private boolean escape = true;
public boolean isEscape() {
return escape;
}
public void setEscape(boolean escape) {
this.escape = escape;
}
public String getEcho() {
return echo;
}
public void setEcho(String echo) {
this.echo = echo;
}
public String execute() throws Exception {
return SUCCESS;
}
}
(三)struts.xml配置:
<action name="echo" class="com.anchorajax.Echo">
<result name="success">/echo.jsp</result>
</action>
(四)echo.jsp页面:
<%@ taglib prefix="s" uri="/struts-tags"%>
<p>Echo : <s:property value="echo" e
scape="%{escape}"/></p>
(五)not_exist.html页面:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>not_exist.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
</head>
<body>
不存在!!!!!!!!!!!! <br>
</body>
</html>
(六)结果页面:
- 描述: cvbcvb
- 大小: 5.4 KB
分享到:
相关推荐
- 插件提供了一系列的标签库,可以直接在JSP页面中使用,例如`<s:jquery>`、`<sj:datepicker>`、`<sj:dialog>`等,它们分别对应于jQuery的各种UI组件。 - 通过这些标签,可以轻松地将jQuery功能集成到Struts2的...
使用 Pentaho Kettle 9.1 源码编译的kettle,可直接运行,kettle9.1编译后2020年6月份最新版本分3卷,实际上自己下载打包也很简单就是费时间,太大了,【图省事的就下载我这个编译后的】,很多人用maven下载出错,...
Maven 使用 tomcat8-maven-plugin 插件 Maven 是一个流行的构建自动化工具,它可以帮助开发者自动完成项目的编译、测试、打包、部署等任务。 Tomcat 是一个流行的 Web 服务器,Maven 提供了一个插件 tomcat8-maven-...
struts2-jquery-plugin-3.1.0.jar
maven打包,指定入口类的jar包,具体的pom配置为:<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.1.0</version> <executions> <execution> ...
在网上搜索一堆文章没找到解决方法,只找到了... <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> </plugin> 并没有找到tomcat8-maven-plugin的plugin,在Maven的中央仓库中根本就没有这个插件: ...
`maven-db-plugin` 插件有两个版本,即 `1.3` 和 `1.4`,这两个版本的 JAR 文件在压缩包中分别以 `maven-db-plugin-1.4.jar` 和 `maven-db-plugin-1.3.jar` 的形式存在。这些 JAR 文件包含了插件所需的全部类和资源...
要使用 Spring Boot Maven Plugin,需要在 Maven 项目的 pom.xml 文件中添加以下依赖项: ```xml <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-...
使用 Pentaho Kettle 9.1 源码编译的kettle,可直接运行,kettle9.1编译后2020年6月份最新版本分3卷,实际上自己下载打包也很简单就是费时间,太大了,【图省事的就下载我这个编译后的】,很多人用maven下载出错,...
</modules> packaging节点只能指定为pom,modules节点说明由几个模块组合,上面是把我们经常使用的架构分层模式分成一个个组件进行开发dao->service->web层。此pom文档经常还被用来进行一些依赖管理和插件管理,...
<groupId>org.zeroturnaround</groupId> <artifactId>javarebel-maven-plugin</artifactId> <executions> <execution> <id>generate-rebel-xml</id> <phase>process-resources</phase> <goals> ...
<artifactId>maven-assembly-plugin</artifactId> <version>3.3.0</version> <configuration> <descriptors> <descriptor>src/main/assembly/dev.xml</descriptor> <!-- 添加其他环境的描述符 --> </...
使用 Pentaho Kettle 9.1 源码编译的kettle,可直接运行,kettle9.1编译后2020年6月份最新版本分3卷,实际上自己下载打包也很简单就是费时间,太大了,【图省事的就下载我这个编译后的】,很多人用maven下载出错,...
struts2-jquery-plugin-2.0.0 struts2-jquery-plugin-2.0.0 struts2-jquery-plugin-2.0.0
<artifactId>maven-surefire-plugin</artifactId> <version>2.5</version> <configuration> <!-- skipTests 为 true 发布时候自动跳过单元测试 --> <skipTests>false</skipTests> <includes> <include>/*...
<artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.2</version> <configuration> <verbose>true</verbose> <overwrite>true</overwrite> </configuration> </plugin> </plugins> 注意:...
<artifactId>struts2-jquery-file-upload-plugin</artifactId> <version>4.2.0</version> </dependency> </dependencies> ``` 2. 配置Struts2: 在`struts.xml`配置文件中,添加Struts2的Action配置,用于处理...
<artifactId>tomcat7-maven-plugin</artifactId> <configuration> <port>8080</port> <path>/</path> </configuration> </plugin> </plugins> </build> ``` #### 三、项目开发流程 1. **需求分析**:明确...
<dependency><groupId>com.github.neothemachine</groupId><artifactId>gwt-webdriver-junit-runstyle</artifactId><version>0.0.1-SNAPSHOT</version><scope>test</scope></dependency>调整gwt-maven-plugin使用的...
由于近期有不少同学在问我关于这个帖子中介绍到的openstack-java-sdk 编译的问题,从全年开始的sdk 的pom文件中添加了 gpg 这个插件,因此很多同学在编译的时候都是卡在这里 -<plugin> <groupId>org.apache.maven....