首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

Struts2中的Rest的Action种名与URL

2012-09-16 
Struts2中的Rest的Action类名与URL在Rest开发中, URL 的地址是和 Action 的命名有关联的 。?比如 :?struts.

Struts2中的Rest的Action类名与URL

在Rest开发中, URL 的地址是和 Action 的命名有关联的 。

?

比如 :

?

struts.property配置的是

?

struts.convention.action.suffix=Action

?

Action 类名称是 :

?

public class DemoAction

?

那么访问的URL就是:

?

http://localhost/demo/

?

但是,如果在 action 的后缀前面出现了大写的命名:

?

public class MovieStockAction

?

使用URL:

?

http://localhost/movieStock/

?

却访问不到。 

?

原来,大写的字母,是需要在前面加上前缀的 : movie-stock

?

那么: URL 就是 http://localhost/movie-stock/

?

访问成功 

?

?

?

?

?

热点排行