action 类
package com.example.actions.products;
import com.example.actions.AbstractAction;
public class Display extends AbstractAction {
public String index() throws Exception{
log.info(this.getClass().getCanonicalName());
return SUCCESS;
}
@Override
public String execute() throws Exception {
// TODO Auto-generated method stub
return null;
}
}
对应的url
http://localhost:8080/iweb/products/display
官方例子上执行的是execute 方法,然而实际中我却发现,默认执行的是index方法
不知道那里配置得不正确
<?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">
<struts>
<constant name="struts.objectFactory" value="spring" />
<constant name="struts.devMode" value="true" />
<constant name="struts.convention.result.path" value="/jspcontent"></constant>
<constant name="struts.convention.action.suffix" value="Controller"/>
<constant name="struts.convention.action.mapAllMatches" value="true"/>
<constant name="struts.convention.default.parent.package" value="rest-default"/>
<constant name="struts.convention.action.packages" value="example"></constant>
</struts>
分享到:
相关推荐
总的来说,`struts2-convention-plugin-2.1.6.jar`是Struts2框架的一个增强,它通过约定自动化了许多配置工作,提高了开发效率,但也需要注意其潜在的局限性和对代码可读性的影响。合理运用,可以显著提升开发体验和...
Struts开始使用convention-plugin代替codebehind-plugin来实现struts的零配置,使用Convention插件,你需要此JAR文件
在给定的文件"struts2-convention-plugin-2.3.32.jar"中,我们关注的是Struts2的Convention插件,版本号为2.3.32。这个插件是Struts2框架的一个重要组成部分,旨在提供更加灵活和自动化的配置方式。 Convention...
这个“struts2-convention-plugin-2.3.4-sources”是Struts2框架的一个插件——约定优于配置(Convention Over Configuration)插件的源代码版本,版本号为2.3.4。这个插件是Struts2核心功能的扩展,旨在简化项目...
Struts2是一个流行的Java Web应用程序...Convention Plugin是Struts2的一个插件,它基于“约定优于配置”的原则,自动地为Action类和结果页面建立映射,从而极大地减少了手动配置的需求。通过自动探测和推理,Conventio
2. **struts2-convention-plugin.jar** - 提供了约定优于配置的特性,允许根据类名和方法名自动映射Action。 3. **struts2-config-browser-plugin.jar** - 用于在Web应用中浏览器查看Struts配置的插件。 4. **xwork-...
2. **struts2-convention-plugin**: 自动配置插件,根据命名约定自动发现Action类和结果页面,减少了XML配置的需要。 3. **struts2-json-plugin**: 提供了对JSON格式数据的支持,使得Action可以直接返回JSON响应,...
从struts2.1开始,struts2不再推荐使用Codebehind作为零配置插件,而是改为使用Convention插件来支持零配置,和Codebehind相比,Convention插件更彻底,该插件完全抛弃配置信息,不仅不需要是使用struts.xml文件进行...
Struts2 Convention Plugin 是从 Struts2.1 版本开始引入的一个插件,它的主要目标是实现 Struts2 框架的零配置。通过约定优于配置的原则,开发者可以更加专注于业务逻辑,减少大量的 XML 配置工作。以下是 ...
2. `struts2-convention-plugin.jar`:约定优于配置的插件,使得类和方法的命名可以自动映射到URL。 3. `struts2-config-browser-plugin.jar`:配置浏览器插件,方便在Web界面查看和编辑Struts2的配置。 4. `struts2...
Struts2是一个非常著名的开源Java框架,主要用于构建企业级Web应用程序。它的核心是Model-View-Controller(MVC)设计模式,旨在简化开发过程并提供更好的可维护性。Struts2.3.32是该框架的一个特定版本,它包含了对...
struts2-convention-plugin-2.3.32.jar struts2-core-2.3.32.jar struts2-spring-plugin-2.3.32.jar xwork-core-2.3.32.jar --来源 ...
5. `struts2-convention-plugin.jar`: 这个插件提供了约定优于配置的特性,让开发者可以按照一定的命名规则来组织Action类和结果页面,从而减少XML配置的工作量。 6. `struts2-json-plugin.jar` 或 `struts2-dojo-...
6. **struts2-convention-plugin.jar**:此插件提供了约定优于配置的功能,使得开发者可以快速构建应用,而无需编写大量的XML配置。 7. **struts2-json-plugin.jar**:这个插件支持JSON数据格式的输入和输出,方便...
在这个版本中,Struts引入了两个重要的插件:Convention Plugin和JSON Plugin,使得JSON支持和配置简化成为可能。接下来,我们将深入探讨这两个插件的功能和如何在实际项目中应用它们。 **Convention Plugin**: ...
Struts 2的配置文件通常为struts.xml,但通过convention插件,可以基于类名和方法名自动配置Action。 安全方面,Struts 2框架提供了一些内置的安全机制,例如参数过滤和OGNL表达式安全控制,但需要注意的是,Struts...