前言
struts2配置action类访问路径的时候,可以采用@Action(value="")这样的注解,当然也可以不配置这个注解。假如不配置的时候,默认的路径是怎么样的呢?
struts2-convention-plugin-2.2.3.jar
用idea打开struts2-convention-plugin-2.2.3.jar的源码,如果是其他ide的,请反编译或者下载这个jar的源码查看。
打开org.apache.struts2.convention.SEOActionNameBuilder类,类注释如下:
<span style="font-size:18px;">/**
* <p>
* This class converts the class name into a SEO friendly name by recognizing
* camel casing and inserting dashes. This also converts everything to
* lower case if desired. And this will also strip off the word <b>Action</b>
* from the class name.
* </p>
*/</span>
根据类注释,可以大概知道一些情况。意思就是奖类名转化为对于SEO来说友好的名称,通过识别驼峰法命名和插入连接号(“-”),如果需要的话,还会将所有单词转化为小写,并去掉类名当中的“Action“。
源码分析
<span style="font-size:18px;">private static final Logger LOG = LoggerFactory.getLogger(SEOActionNameBuilder.class);
private String actionSuffix = "Action";
private boolean lowerCase;
private String separator;
@Inject
public SEOActionNameBuilder(@Inject(value="struts.convention.action.name.lowercase") String lowerCase,
@Inject(value="struts.convention.action.name.separator") String separator) {
this.lowerCase = Boolean.parseBoolean(lowerCase);
this.separator = separator;
}
/**
* @param actionSuffix (Optional) Classes that end with these value will be mapped as actions
* (defaults to "Action")
*/
@Inject(value = "struts.convention.action.suffix", required = false)
public void setActionSuffix(String actionSuffix) {
if (StringUtils.isNotBlank(actionSuffix)) {
this.actionSuffix = actionSuffix;
}
}</span>
1、后缀可以用struts.convention.action.suffix配置;
2、是否小写和分隔符可以用struts.convention.action.name.lowercase和struts.convention.action.name.separator配置。
3、默认值可以查看struts-plugin.xml配置文件。
<span style="font-size:18px;">public String build(String className) {
String actionName = className;
if (actionName.equals(actionSuffix))
throw new IllegalStateException("The action name cannot be the same as the action suffix [" + actionSuffix + "]");
// Truncate Action suffix if found
if (actionName.endsWith(actionSuffix)) {
actionName = actionName.substring(0, actionName.length() - actionSuffix.length());
}
// Convert to underscores
char[] ca = actionName.toCharArray();
StringBuilder build = new StringBuilder("" + ca[0]);
boolean lower = true;
for (int i = 1; i < ca.length; i++) {
char c = ca[i];
if (Character.isUpperCase(c) && lower) {
build.append(separator);
lower = false;
} else if (!Character.isUpperCase(c)) {
lower = true;
}
build.append(c);
}
actionName = build.toString();
if (lowerCase) {
actionName = actionName.toLowerCase();
}
if (LOG.isTraceEnabled()) {
LOG.trace("Changed action name from [#0] to [#1]", className, actionName);
}
return actionName;
}</span>
1、类名称不能等于后缀;
2、加入类名称是以后缀结尾的,则会去掉后缀字符串;
3、遇到大写字母,会在大写字母前面加入分隔符;
4、根据是否小写配置,决定是否讲所有字符串小写。
例子
AbcdEfg------------------------>abcd-efg
ABcdEfg------------------------>a-bcd-efg
分享到:
相关推荐
Struts2注解登录是Java Web开发中一种简化配置的方式,它允许开发者在代码中直接定义控制器、动作和结果页面的映射,从而避免了传统方式下需要在`struts.xml`配置文件中的繁琐设置。这种做法提高了代码的可读性和可...
### Struts2 注解详解 #### 一、Struts2 Convention 插件介绍与使用 在 Struts2 框架的发展过程中,随着版本的更新和技术的演进,其配置方式也发生了变化。从 Struts2.1 版本开始,官方不再推荐使用 Codebehind ...
描述中提到的`struts2-convention-plugin-2.3.15.jar`是这个插件的一个特定版本,它包含了处理Struts2中注解所需的所有类和资源。 在Struts2中,注解开发的关键在于`@Action`、`@Result`、`@Results`、`@Namespace`...
Struts2 Convention Plugin允许开发者通过注解来配置Action名称、拦截器、命名空间等,极大地简化了配置过程。 ##### 2.7 默认Action及结果 当用户访问特定路径时,如果没有显式定义Action,则Convention Plugin会...
"struts2注解必须包"指的是Struts2提供的一系列注解,它们对于简化Struts2应用的配置和增强其功能至关重要。 标题中的"struts2-convention-plugin-2.1.8.1.jar"是Struts2的约定插件(Convention Plugin)的一个特定...
6. **Config Browser插件**:为了查看和调试Action和其他资源的映射,Struts2提供了Config Browser插件。只需将`struts2-config-browser-plugin`的JAR文件添加到应用的`WEB-INF/lib`目录,然后在浏览器中访问特定URL...
本文旨在为读者提供一套详尽的Struts2注解配置指南,帮助大家快速理解和掌握如何通过注解来配置Struts2的Action。 #### 二、Struts2注解配置基础 ##### 1. Struts2注解支持概述 - **插件依赖**:要启用Struts2的...
Struts2 和 Spring 的整合是企业级 Java Web 开发中常见的技术栈,通过注解配置可以使项目更加简洁、易于维护。Struts2 提供了一种使用注解替代 XML 配置的方式,使得开发者无需编写繁琐的 struts.xml 文件,即可...
Struts2注解配置是Java Web开发中一种高效、简洁的框架配置方式,它允许开发者在类或方法级别上直接定义Action、结果类型、参数映射等信息,从而避免了传统XML配置文件的繁琐。本资料集合了关于Struts2注解配置的...
在IT领域,特别是Java开发框架中,Spring和Struts2都是极为重要的技术栈,它们各自通过注解(Annotation)机制提供了强大的功能扩展性和代码简洁性。以下是对Spring和Struts2注解的深入解析和使用指南。 ### Spring...
1. **配置Action映射** 在`struts.xml`文件中,我们可以使用`<action>`元素来定义Action的映射。如果希望一个Action处理多个请求,可以在同一个`<action>`元素内添加多个`<result>`子元素,每个`<result>`对应一个...
本文档是对Struts2注解配置教程的知识点概述,详细介绍了Struts2中注解配置的使用方法和优势,帮助开发者掌握如何通过Java注解简化和优化Struts2框架的配置过程。通过零配置概念,减少XML配置的复杂度,使得代码更加...
通过使用注解,我们可以直接在Action类上声明其对应的URL和结果: ```java @Namespace("/") @ResultPath("/") public class HelloWorldAction { @Action(value = "hello", results = { @Result(name = "success", ...
Convention模式是Struts2提供的一种自动映射机制,可以通过注解自动匹配Action和结果。`@Action`和`@Actions`用于定义Action的URL映射,`params`属性可以设置Action的额外参数。`@Actions`则用于将一个方法映射到多...
- 为了查看和调试Struts2应用中的Action和其他资源映射,可以使用Config Browser插件。它提供了一个图形化的界面,显示所有配置信息。 通过这些机制,Struts2的Convetion插件极大地简化了开发流程,提高了开发效率...
在Struts2中,Annotation注解的引入为开发者提供了更加灵活和便捷的配置方式,使得无需在XML配置文件中进行繁琐的设置,可以直接在类或方法上通过注解来进行配置。本文将深入探讨Struts2中的Annotation配置,以及...
在Struts2中,注解可以用于Action类、方法、参数、结果配置等,减少了XML配置文件的依赖,使代码更易于理解和维护。 1. **Action类注解**: `@Action` 注解用于标记一个类为Struts2的Action,它可以替代struts.xml...
- **Struts2**:主要负责处理HTTP请求,通过Action映射到业务逻辑,返回结果视图。Struts2支持基于XML的配置和注解方式定义Action。 - **Spring3**:提供了强大的DI和AOP功能,用于管理bean和控制事务。Spring3也...