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/
?
访问成功
?
?
?
?
?