当前位置: 代码迷 >> J2EE >> Convention plugin使用规范
  详细解决方案

Convention plugin使用规范

热度:764   发布时间:2013-12-09 21:45:51.0

Convention plugin都有哪些使用规范?

从action到jsp以及包的名称,几乎都有规范。下面列出一些规范:

1、jsp默认的映射文件夹

如果你没有在struts.xml中指定struts.convention.result.path的值,所有的action将默认被映射到WEB-INF/content这个文件夹下面。例如你定义了一个login.action,哪么struts2将在WEB-INF/content下面寻找login.jsp文件。

2、action默认的url和命名空间

如果你没有配置struts的struts.convention.package.locators属性,哪么strusts2将搜索包名中包含struts, struts2, action or actions等关键字类,并且类实现com.opensymphony.xwork2.Action或者名称以 Action 结尾的类。

引用struts的文档。这些类。

com.example.actions.MainAction

com.example.actions.products.Display (implements com.opensymphony.xwork2.Action)

com.example.struts.company.details.ShowCompanyDetailsAction

将被映射成struts的命名空间(蓝色字体为命名空间)

com.example.actions.MainAction -> /

com.example.actions.products.Display -> /products

com.example.struts.company.details.ShowCompanyDetailsAction -> /company/details

相应的Action对应的URL(蓝色字体为URL)

com.example.actions.MainAction -> /main

com.example.actions.products.Display -> /products/display

com.example.struts.company.details.ShowCompanyDetailsAction-> /company/details/show-company-details

3、Action返回结果的映射

Convention Plugin会在系统启动的时候把Action的映射都关联起来。

引用struts的一个样例。

package com.example.actions;

import com.opensymphony.xwork2.ActionSupport;

public class HelloWorld extends ActionSupport {

private String message;

public String getMessage() {

   return message;

}

public String execute() {

   if (System.currentTimeMillis() % 2 == 0) {

     message = "It's 0";

    return "zero";

   }

   message = "It's 1";

   return SUCCESS;

}

}

如果当前的action对应的页面为hello.jsp那么当返回为“zero”时,系统将去寻找hello-zero.jsp。

详情请参考http://struts.apache.org/2.1.6/docs/convention-plugin.html

  相关解决方案